shortcode/Makefile
2023-07-12 18:01:46 -03:00

17 lines
351 B
Makefile

CC=tcc
all: tests
run: shortcodes
./shortcodes
shortcodes.c: shortcodes.rl
ragel -G2 shortcodes.rl -o shortcodes.c
shortcodes: shortcodes.c
$(CC) shortcodes.c -g -o shortcodes
tests: shortcodes.c shortcodes.h tests.c
$(CC) tests.c shortcodes.c -lbg -lcgreen -g -o tests
test: tests
./tests
clean:
rm -f shortcodes shortcodes.c
.PHONY: test run