From 0cbfd85491d9e181d6acb7c9faebff478c4c44ac Mon Sep 17 00:00:00 2001 From: Ian Osgood Date: Sat, 18 Mar 2006 10:36:50 -0800 Subject: [PATCH] Don't ignore Makefile until this gets autotooled. --- neko/.gitignore | 1 + neko/Makefile | 7 +++++++ 2 files changed, 8 insertions(+) create mode 100644 neko/Makefile 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 -- 2.34.1