use cgreen-runner

This commit is contained in:
Roberto Alsina 2023-07-12 22:08:16 -03:00
parent 5350dbd126
commit f471642f43

View File

@ -1,16 +1,14 @@
CC=tcc
CC=gcc
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
%.o: %.c
$(CC) -fPIC -c -o $@ $^
tests.so: shortcodes.o tests.o
$(CC) -shared -o $@ $^ -lbg -lcgreen
test: tests.so
cgreen-runner $^
clean:
rm -f shortcodes shortcodes.c
rm -f shortcodes.c *.o *.so
.PHONY: test run
.PHONY: test