view Makefile.osx @ 87:e64a2e7f543c

Initial web services startup / shutdown test. The test framework could definitely do with work here; the server process must run in the background, so there are race conditions both on startup and shutdown. The current workaround is "sleep 1", which is both inelegant and slow.
author mas01cr
date Tue, 02 Oct 2007 15:28:11 +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}