aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
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..27dd859
--- /dev/null
+++ b/Makefile
@@ -0,0 +1,10 @@
+CC = cc
+CFLAGS = -O2 -g -I/usr/local/include
+LDFLAGS = -L/usr/local/lib
+LIBS = -llowdown -lm -static -pie
+
+convert-markdown: convert-markdown.c
+ $(CC) $^ -o $@ $(CFLAGS) $(LDFLAGS) $(LIBS)
+
+clean:
+ rm -f convert-markdown