view Makefile.osx @ 122:18a64ac14d2a

Now with even fewer memory leaks! Free the args_info cmdline parser thingy on cleanup. In normal operation, at least, this should now lead to a server process that doesn't fall over (or, worse, cause the Linux OOM killer to kill a random process) every day or so...
author mas01cr
date Wed, 17 Oct 2007 14:07:15 +0000
parents 6d899df0cfe4
children
line wrap: on
line source

CFLAGS=-O3
LIBDIR=
LIBS=
SOAPDIR=bin_x86_osx/soapcpp-macosx-2.1.6
SOAPOBS=${SOAPDIR}/stdsoap2.o soapServer.cpp soapClient.cpp soapC.cpp
CMDOBS=cmdline.c
INCDIR=-I${SOAPDIR}

all: audioDB.h audioDB.cpp ${SOAPOBS} ${CMDOBS} Makefile.osx
	${SOAPDIR}/soapcpp2 audioDBws.h
	g++ -o audioDB ${CFLAGS} audioDB.cpp ${SOAPOBS} ${CMDOBS} ${CFLAGS} ${INCDIR} ${LIBDIR} ${LIBS}