1
0
Fork 0
mirror of git://git.psyc.eu/libpsyc synced 2024-07-31 00:21:03 +00:00
libpsyc/test/Makefile
2011-04-22 17:09:32 +02:00

15 lines
254 B
Makefile

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