shortcode/Makefile

14 lines
288 B
Makefile
Raw Normal View History

2023-07-13 01:26:21 +00:00
CC=gcc
2023-07-13 23:59:35 +00:00
all: test
2023-07-10 21:19:34 +00:00
shortcodes.c: shortcodes.rl
2023-07-14 00:57:47 +00:00
ragel -G2 shortcodes.rl -o shortcodes.c
2023-07-14 00:24:37 +00:00
tests.so: shortcodes.c tests.c
$(CC) -fPIC -shared -g -o $@ $^ -lbg -lcgreen
2023-07-12 19:09:17 +00:00
clean:
2023-07-13 01:26:21 +00:00
rm -f shortcodes.c *.o *.so tests
2023-07-13 01:22:22 +00:00
test: tests.so
cgreen-runner $^
debug:
cgreen-debug tests.so
.PHONY: test debug