From 0327cf8217900174041d4f14a19aace4098dd8a6 Mon Sep 17 00:00:00 2001 From: Thomas White Date: Sat, 12 Nov 2011 21:19:25 +0100 Subject: Initial import --- Makefile | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 Makefile (limited to 'Makefile') diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..facb0e4 --- /dev/null +++ b/Makefile @@ -0,0 +1,12 @@ +OBJS=maestropond.o + +maestropond: ${OBJS} + gcc -g ${OBJS} -o maestropond + +maestropond.o: maestropond.c + gcc -g -W -Wall -c maestropond.c -o maestropond.o + +clean: + rm -f ${OBJS} maestropond + +.PHONY: clean -- cgit v1.2.3