diff --git a/Makefile b/Makefile index 0dd1c65..c446fe6 100644 --- a/Makefile +++ b/Makefile @@ -2,7 +2,7 @@ .PHONY: test default: - @/bin/echo -e "Usage:\n\tmake diet - compile with diet libc\n\tmake lib - compile with normal gnu libc\n\tmake test\n\tmake doc" + @/bin/echo -e "Usage:\n\tmake diet - compile with diet libc\n\tmake glibc - compile with normal gnu libc\n\tmake test\n\tmake doc" glibc: make -C src glibc diff --git a/test/Makefile b/test/Makefile index 158a3c5..d3f2324 100644 --- a/test/Makefile +++ b/test/Makefile @@ -1,5 +1,5 @@ CFLAGS=-I../include -DDEBUG -g -O0 -Wall -LDFLAGS=-L../src +LDFLAGS=-L../lib LOADLIBES=-lpsyc -lm TARGETS=testServer testParser testMatch testRender isRoutingVar getVarType PORT=4440