1
0
Fork 0
mirror of git://git.psyc.eu/libpsyc synced 2024-08-06 20:55:49 +00:00
libpsyc/test/Makefile

18 lines
307 B
Makefile

CFLAGS=-I../include -DDEBUG -g -O0 -Wall
LDFLAGS=-L../src
LOADLIBES=-lpsyc -lm
TARGETS=testParser testMatch testRender isRoutingVar
all: $(TARGETS)
./testRender
./testMatch
./isRoutingVar
test: $(TARGETS)
for f in packets/*; do echo ">> $$f"; ./testParser $$f; done
clean:
rm -f $(TARGETS)
it: all