use cgreen-runner
This commit is contained in:
parent
5350dbd126
commit
f471642f43
20
Makefile
20
Makefile
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user