summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorThomas White <taw@bitwiz.org.uk>2011-11-12 21:19:25 +0100
committerThomas White <taw@bitwiz.org.uk>2011-11-12 21:19:25 +0100
commit0327cf8217900174041d4f14a19aace4098dd8a6 (patch)
tree6636e7ef5cdb056382a2a810667614da15b73eac /Makefile
Initial import
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile12
1 files changed, 12 insertions, 0 deletions
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