From d509a156a6752519665909e3c26f8802f18fd770 Mon Sep 17 00:00:00 2001 From: Carl Worth Date: Sat, 27 Jan 2007 06:22:38 -0800 Subject: [PATCH] Add simple Makefile We needed a trivial little Makefile since we extracted kub out of a former project that had been using automake. --- Makefile | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 Makefile diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..c8fbe33 --- /dev/null +++ b/Makefile @@ -0,0 +1,11 @@ +WARN_CFLAGS=-Wall -Wpointer-arith -Wstrict-prototypes \ + -Wmissing-prototypes -Wmissing-declarations \ + -Wnested-externs -fno-strict-aliasing + +KUB_CFLAGS=$(WARN_CFLAGS) + +kub: kub.c + $(CC) $(KUB_CFLAGS) -o $@ $^ + +clean: + rm -f kub *.o -- 2.43.0