1
0
Fork 0
mirror of git://git.psyc.eu/libpsyc synced 2024-08-15 03:19:02 +00:00
libpsyc/test/Makefile
2011-04-27 19:18:17 +02:00

28 lines
615 B
Makefile

CFLAGS=-I../include -DDEBUG -g -O0 -Wall
LDFLAGS=-L../src
LOADLIBES=-lpsyc -lm
TARGETS=testServer testParser testMatch testRender isRoutingVar
PORT=4440
all: $(TARGETS)
./testRender
./testMatch
./isRoutingVar
test: $(TARGETS)
for f in packets/full-* packets/error-*; do echo ">> $$f"; ./testParser $$f; done
nettest:
for f in packets/full-* packets/error-*; do echo ">> $$f"; cat $$f | nc localhost $(PORT); done
nettestp1:
(for f in packets/part-1-p*; do cat $$f; done) | nc nb $(PORT)
nettestp2:
(for f in packets/part-1-length-p*; do cat $$f; done) | nc nb $(PORT)
clean:
rm -f $(TARGETS)
it: all