1
0
Fork 0
mirror of git://git.psyc.eu/libpsyc synced 2024-08-15 03:19:02 +00:00
libpsyc/tests/Makefile
2011-04-19 22:37:42 +02:00

13 lines
217 B
Makefile

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