view Makefile.osx @ 111:43722a0ba717

Attempt to make audioDB files 32/64 neutral. Doing so by turning all the (logically) size_t and off_t elements into unsigneds is a hack, it has to be admitted. There will still be endian dependencies too, but maybe this is enough to make audioDB files portable between x86 and x86-64.
author mas01cr
date Fri, 05 Oct 2007 15:38:34 +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}