Mercurial > hg > audiodb
annotate Makefile @ 0:9eab3e0f3068
Initial import
author | mas01cr |
---|---|
date | Fri, 20 Jul 2007 15:51:39 +0000 |
parents | |
children | ee7a12d5b41e |
rev | line source |
---|---|
mas01cr@0 | 1 |
mas01cr@0 | 2 CFLAGS=-ggdb |
mas01cr@0 | 3 LIBDIR=-L/usr/include |
mas01cr@0 | 4 LIBS=-lgsoap++ |
mas01cr@0 | 5 |
mas01cr@0 | 6 all: audioDB.h audioDB.cpp soapServer.cpp soapClient.cpp soapC.cpp Makefile |
mas01cr@0 | 7 g++ -o audioDB ${CFLAGS} audioDB.cpp soapServer.cpp soapClient.cpp soapC.cpp ${CFLAGS} ${LIBDIR} ${LIBS} |
mas01cr@0 | 8 |