makefile fixes for solaris

This commit is contained in:
tg(x) 2011-05-08 04:11:36 +02:00
parent a8f35be057
commit 07d7a1626e
3 changed files with 15 additions and 9 deletions

View File

@ -25,8 +25,8 @@ doc:
doxygen
clean:
make -C src clean
make -C test clean
${MAKE} -C src clean
${MAKE} -C test clean
rm -rf doc/html doc/latex doc/man
help:

View File

@ -5,7 +5,6 @@
#include "../psyc.h"
#include "./debug.h"
#include <sys/cdefs.h>
#include <assert.h>
/* perlisms for readability */
@ -14,11 +13,11 @@
#define PSYC_NUM_ELEM(a) (sizeof(a) / sizeof(*(a)))
#if !defined(_GNU_SOURCE) && !defined(__FBSDID)
#if !defined(__USE_GNU) && !(defined(__FBSDID) && defined(__BSD_VISIBLE))
void * memmem(const void *l, size_t l_len, const void *s, size_t s_len);
#endif
#if !defined(_GNU_SOURCE) && !defined(__FBSDID)
#if !defined(__USE_GNU) && !(defined(__FBSDID) && defined(__BSD_VISIBLE))
int itoa(int number, char* out, int base);
#endif

View File

@ -2,13 +2,22 @@ OPT = -O2
DEBUG = 2
CFLAGS = -I../include -Wall -std=c99 ${OPT}
LDFLAGS = -L../lib
LOADLIBES = -lpsyc -lm
TARGETS = testServer testParser testMatch testRender testText isRoutingVar getVarType
WRAPPER =
DIET = diet
PORT = 4440
LOADLIBES = -lpsyc -lm
ifeq ($(shell uname),SunOS)
LOADLIBES_NET = ${LOADLIBES} -lsocket -lnsl
else
LOADLIBES_NET = ${LOADLIBES}
endif
all: ${TARGETS}
it: all
testServer: LOADLIBES := ${LOADLIBES_NET}
diet: WRAPPER = ${DIET}
diet: all
@ -20,8 +29,6 @@ debug: all
clean:
rm -f ${TARGETS}
it: all
test: ${TARGETS}
./testRender
./testMatch
@ -53,4 +60,4 @@ srvstartr:
./testServer ${PORT} -r &
srvkill:
killall testServer
pkill -x testServer