1
0
Fork 0
mirror of git://git.psyc.eu/libpsyc synced 2024-08-15 03:19:02 +00:00
This commit is contained in:
psyc://psyced.org/~lynX 2011-04-17 21:46:00 +02:00
parent 12ff235aa7
commit 3a4b5d8abb

View file

@ -1,10 +1,16 @@
CFLAGS=-I.. -DDEBUG CFLAGS=-I../../include -DDEBUG -g -O0
LDFLAGS=-L.. -lpsyc LDFLAGS=-L..
LOADLIBES=-lpsyc
TARGETS=testParser testMatch
works: all: $(TARGETS)
cc -I../../include -g -O0 -DDEBUG -L.. parser/testParser.c -o testParser -lpsyc
it: testParser # special case because not in the same directory
testParser:
${CC} ${CFLAGS} ${LDFLAGS} parser/testParser.c ${LOADLIBES} -o testParser
test: test:
for f in parser/*txt; do echo -e "\n>> $$f"; ./testParser $$f; done for f in parser/*txt; do echo -e "\n>> $$f"; ./testParser $$f; done
clean:
rm $(TARGETS)