From: Dana Jansens Date: Mon, 3 Mar 2008 03:02:06 +0000 (-0500) Subject: initial commit X-Git-Url: http://git.openbox.org/?a=commitdiff_plain;h=f1ff04df2b794f69b6761ad6278b3f6c6ac3a4d2;p=dana%2Fdcompmgr.git initial commit --- f1ff04df2b794f69b6761ad6278b3f6c6ac3a4d2 diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..12968a4 --- /dev/null +++ b/Makefile @@ -0,0 +1,11 @@ +sources = $(wildcard *.c) +objs = $(sources:.c=.o) + +CFLAGS=$(shell pkg-config --cflags xcb-composite) +LIBS=$(shell pkg-config --libs xcb-composite) + +dcompmgr: $(objs) + $(CC) -o $@ $^ $(LIBS) $(LDFLAGS) + +.c.o: + $(CC) -c -o $@ $^ $(CFLAGS) diff --git a/dcompmgr.c b/dcompmgr.c new file mode 100644 index 0000000..679284e --- /dev/null +++ b/dcompmgr.c @@ -0,0 +1,3 @@ +int main(int argc, char **argv) +{ +}