summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorJohn Hawthorn <john.hawthorn@gmail.com>2014-07-11 01:36:31 -0700
committerJohn Hawthorn <john.hawthorn@gmail.com>2014-07-11 21:25:33 -0700
commitbafe605a0bf96ab74f5c28460ceac48834a74652 (patch)
tree701d36d66945bd65a1c16fd6bb852b70ba99405e /Makefile
initial commit
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile10
1 files changed, 10 insertions, 0 deletions
diff --git a/Makefile b/Makefile
new file mode 100644
index 0000000..c1d7f5d
--- /dev/null
+++ b/Makefile
@@ -0,0 +1,10 @@
+LIBS=
+CFLAGS+=-Wall -g
+TARGET=hawthfuzz
+OBJECTS=hawthfuzz.o
+
+$(TARGET): $(OBJECTS)
+ $(CXX) $(CXXFLAGS) -o $@ $^ $(LIBS)
+
+clean:
+ $(RM) $(TARGET) *.o