libpsyc/test/Makefile

15 lines
254 B
Makefile
Raw Normal View History

2011-04-19 20:37:42 +00:00
CFLAGS=-I../include -DDEBUG -g -O0 -Wall
LDFLAGS=-L../src
2011-04-17 19:46:00 +00:00
LOADLIBES=-lpsyc
2011-04-22 15:09:32 +00:00
TARGETS=testParser testMatch testRender isRoutingVar
2011-02-18 13:03:45 +00:00
2011-04-17 19:46:00 +00:00
all: $(TARGETS)
2011-02-18 13:03:45 +00:00
2011-04-17 12:17:11 +00:00
test:
for f in packets/*; do echo -e "\n>> $$f"; ./testParser $$f; done
2011-04-17 19:46:00 +00:00
clean:
rm -f $(TARGETS)
2011-04-22 09:50:13 +00:00
it: all