fixed makefile for test, fixed help output

This commit is contained in:
Marenz 2011-04-30 13:09:24 +02:00
parent 3265b2fea9
commit 917474e6f3
2 changed files with 2 additions and 2 deletions

View File

@ -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

View File

@ -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