shortcode/Makefile
2023-07-12 22:26:21 -03:00

16 lines
323 B
Makefile

CC=gcc
all: tests
shortcodes.c: shortcodes.rl
ragel -G2 -L shortcodes.rl -o shortcodes.c
%.o: %.c
$(CC) -fPIC -c -o $@ $^ -g
tests.so: shortcodes.o tests.o
$(CC) -shared -g -o $@ $^ -lbg -lcgreen
clean:
rm -f shortcodes.c *.o *.so tests
test: tests.so
cgreen-runner $^
debug:
cgreen-debug tests.so
.PHONY: test debug