initial commit
authorDana Jansens <danakj@orodu.net>
Mon, 3 Mar 2008 03:02:06 +0000 (22:02 -0500)
committerDana Jansens <danakj@orodu.net>
Mon, 3 Mar 2008 03:02:06 +0000 (22:02 -0500)
Makefile [new file with mode: 0644]
dcompmgr.c [new file with mode: 0644]

diff --git a/Makefile b/Makefile
new file mode 100644 (file)
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 (file)
index 0000000..679284e
--- /dev/null
@@ -0,0 +1,3 @@
+int main(int argc, char **argv)
+{
+}