diff options
author | pommicket <pommicket@gmail.com> | 2021-09-01 18:27:51 -0400 |
---|---|---|
committer | pommicket <pommicket@gmail.com> | 2021-09-01 18:27:51 -0400 |
commit | 336a7931494b149298ec0d215bf643c4ca07a712 (patch) | |
tree | f1f79a7b5470cb5af12c0d914a24ec6aeb8d50f8 /Makefile | |
parent | f71545c939d530d42903deadd365205a4e02bd56 (diff) |
markdown to HTML converter
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..1ed93a0 --- /dev/null +++ b/Makefile @@ -0,0 +1,7 @@ +all: markdown README.html + $(MAKE) -C 00 + $(MAKE) -C 01 +markdown: markdown.c + $(CC) -O2 -o markdown -Wall -Wconversion -Wshadow -std=c89 markdown.c +README.html: markdown README.md + ./markdown README.md |