Don't ignore Makefile until this gets autotooled.
authorIan Osgood <iano@quirkster.com>
Sat, 18 Mar 2006 18:36:50 +0000 (10:36 -0800)
committerIan Osgood <iano@quirkster.com>
Sat, 18 Mar 2006 18:36:50 +0000 (10:36 -0800)
neko/.gitignore
neko/Makefile [new file with mode: 0644]

index cc463c2..4cb25d3 100644 (file)
@@ -1 +1,2 @@
 xcbneko
+!Makefile
diff --git a/neko/Makefile b/neko/Makefile
new file mode 100644 (file)
index 0000000..de7ac0b
--- /dev/null
@@ -0,0 +1,7 @@
+CFLAGS = -g -Wall -Wpointer-arith -Wstrict-prototypes
+LIBS = -lxcb -lXCBAux -lXCBICCCM -lXCBAtom
+
+xcbneko:       xcbneko.c
+       $(CC) $(CFLAGS) xcbneko.c $(LIBS) -o xcbneko
+
+all:   xcbneko