about summary refs log tree commit diff
path: root/Makefile
diff options
context:
space:
mode:
authorChristian Neukirchen <chneukirchen@gmail.com>2016-07-11 14:24:04 +0200
committerChristian Neukirchen <chneukirchen@gmail.com>2016-07-11 14:24:04 +0200
commitcec286dad2496deebd409887a006dc3c5664235a (patch)
tree5e1bdaa5445524acdb5e83c86bc2289457fb3f77 /Makefile
parent9f580cac8584767e1167db9d9b1515826f79d1b9 (diff)
downloadmblaze-cec286dad2496deebd409887a006dc3c5664235a.tar.gz
mblaze-cec286dad2496deebd409887a006dc3c5664235a.tar.xz
mblaze-cec286dad2496deebd409887a006dc3c5664235a.zip
add Makefile
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile14
1 files changed, 14 insertions, 0 deletions
diff --git a/Makefile b/Makefile
new file mode 100644
index 0000000..925bf78
--- /dev/null
+++ b/Makefile
@@ -0,0 +1,14 @@
+CFLAGS=-g -O1 -Wall -Wno-switch -Wextra -Wwrite-strings -fstack-protector-strong -D_FORTIFY_SOURCE=2
+
+ALL = scan thread
+
+all: $(ALL)
+
+scan: blaze822.o scan.o fmt_rfc2047.o
+
+thread: blaze822.o thread.o
+
+clean: FRC
+	-rm -f $(ALL) *.o
+
+FRC: