libpsyc/src/tests/Makefile

13 lines
220 B
Makefile
Raw Normal View History

CFLAGS=-I../../include -DDEBUG -g -O0 -Wall
2011-04-17 19:46:00 +00:00
LDFLAGS=-L..
LOADLIBES=-lpsyc
TARGETS=testParser testMatch
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)