* Add simple Makefile.
authorMatthijs Kooijman <m.kooijman@student.utwente.nl>
Sun, 10 Jun 2007 18:39:24 +0000 (20:39 +0200)
committerMatthijs Kooijman <m.kooijman@student.utwente.nl>
Sun, 10 Jun 2007 18:39:24 +0000 (20:39 +0200)
ABM2/Makefile [new file with mode: 0644]

diff --git a/ABM2/Makefile b/ABM2/Makefile
new file mode 100644 (file)
index 0000000..bf2539c
--- /dev/null
@@ -0,0 +1,7 @@
+all: main.o
+
+%.o: %.cpp
+       g++ -c $< -o $@
+
+clean:
+       rm -f *.o