first commit

This commit is contained in:
valeh
2020-12-22 14:30:09 +02:00
commit 26b0ba5954
1832 changed files with 17777948 additions and 0 deletions

View File

@@ -0,0 +1,21 @@
#
# Markdown TOC Generator
# type "make wiki" and commit & push wiki
#
# works within ubuntu and min-gw (win7) environment
CFLAGS = -g
#CFLAGS = -O4 -Wall
SRC = mdtoc.c
OBJ = $(SRC:.c=.o)
mdtoc: $(SRC)
$(CC) -Wall -g $(LDFLAGS) $(SRC) -o mdtoc
clean:
-rm tmp.md ./mdtoc
wiki: mdtoc
./mdtoc ../../../u8g2.wiki/*.md