mirror of
https://github.com/Valeh2012/PersonalVotingMachine
synced 2025-12-15 20:55:13 +02:00
first commit
This commit is contained in:
21
basic-setup/components/u8g2/tools/mdtoc/Makefile
Normal file
21
basic-setup/components/u8g2/tools/mdtoc/Makefile
Normal 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
|
||||
Reference in New Issue
Block a user