summaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorGavin Romig-Koch <gavin@localhost.localdomain>2009-08-10 12:05:06 -0400
committerGavin Romig-Koch <gavin@localhost.localdomain>2009-08-10 12:05:06 -0400
commit25d10eec1658be638ed2fec5ef958fe7acb2dbd1 (patch)
tree058118cf063a66f8d9bdfa9d2953526d913c80c4 /Makefile
downloadfastback-25d10eec1658be638ed2fec5ef958fe7acb2dbd1.tar.gz
fastback-25d10eec1658be638ed2fec5ef958fe7acb2dbd1.tar.xz
fastback-25d10eec1658be638ed2fec5ef958fe7acb2dbd1.zip
Task: collect options
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile9
1 files changed, 9 insertions, 0 deletions
diff --git a/Makefile b/Makefile
new file mode 100644
index 0000000..79d4062
--- /dev/null
+++ b/Makefile
@@ -0,0 +1,9 @@
+
+default: fastback
+
+fastback: fastback.o
+ g++ -o $@ $<
+
+fastback.o: fastback.cpp
+ g++ -c -o $@ $<
+