From: Ian Osgood Date: Sat, 18 Mar 2006 18:36:50 +0000 (-0800) Subject: Don't ignore Makefile until this gets autotooled. X-Git-Tag: 0.1~23 X-Git-Url: http://git.demorecorder.com/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=0cbfd85491d9e181d6acb7c9faebff478c4c44ac;p=free-sw%2Fxcb%2Fdemo Don't ignore Makefile until this gets autotooled. --- diff --git a/neko/.gitignore b/neko/.gitignore index cc463c2..4cb25d3 100644 --- a/neko/.gitignore +++ b/neko/.gitignore @@ -1 +1,2 @@ xcbneko +!Makefile diff --git a/neko/Makefile b/neko/Makefile new file mode 100644 index 0000000..de7ac0b --- /dev/null +++ b/neko/Makefile @@ -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