diff options
| author | Cody Logan <cody@lokken.dev> | 2023-11-27 15:51:28 -0800 |
|---|---|---|
| committer | Cody Logan <cody@lokken.dev> | 2023-11-27 15:51:28 -0800 |
| commit | d0511d45d39c5de64e82a89510edc681b483df9b (patch) | |
| tree | e92a0587aa0e3cf8be15815b5cd554b1e2b4027d /Makefile | |
| download | convert-markdown-d0511d45d39c5de64e82a89510edc681b483df9b.tar.gz convert-markdown-d0511d45d39c5de64e82a89510edc681b483df9b.zip | |
Initial commit
Diffstat (limited to 'Makefile')
| -rw-r--r-- | Makefile | 10 |
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 |
