1
0
Fork 0
mirror of git://git.psyc.eu/libpsyc synced 2024-08-15 03:19:02 +00:00

bench: testPsycFast results

This commit is contained in:
tg(x) 2011-05-16 20:13:10 +02:00
parent b73b8e3246
commit 1edd326f1f
8 changed files with 133 additions and 24 deletions

View file

@ -1,9 +1,10 @@
OPT = -O2
DEBUG = 2
CFLAGS = -I../include -I../src -Wall -std=c99 ${OPT}
CFLAGS_COMMON = -Wall -std=c99 ${OPT}
CFLAGS = -I../include -I../src ${CFLAGS_COMMON}
LDFLAGS = -L../lib
LOADLIBES = -lpsyc -lm
TARGETS = testPsyc testParser testMatch testRender testText isRoutingVar getVarType
TARGETS = testPsyc testPsycFast testParser testMatch testRender testText isRoutingVar getVarType
O = test.o
WRAPPER =
DIET = diet
@ -20,7 +21,8 @@ all: ${TARGETS}
it: all
testPsyc: LOADLIBES := ${LOADLIBES} ${LOADLIBES_NET}
testPsyc: test.o
testPsycFast: LOADLIBES := ${LOADLIBES} ${LOADLIBES_NET}
#testPsycFast: LOADLIBES := ${LOADLIBES_NET}
diet: WRAPPER = ${DIET}
diet: all