From f1ff04df2b794f69b6761ad6278b3f6c6ac3a4d2 Mon Sep 17 00:00:00 2001 From: Dana Jansens Date: Sun, 2 Mar 2008 22:02:06 -0500 Subject: [PATCH] initial commit --- Makefile | 11 +++++++++++ dcompmgr.c | 3 +++ 2 files changed, 14 insertions(+) create mode 100644 Makefile create mode 100644 dcompmgr.c 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) +{ +} -- 1.9.1