Mercurial > hg > audiodb
changeset 1:ee7a12d5b41e
Make the makefile work on Ubuntu linux. (Previously I don't think it
worked anywhere)
author | mas01cr |
---|---|
date | Fri, 20 Jul 2007 16:18:24 +0000 |
parents | 9eab3e0f3068 |
children | c5869889f122 |
files | Makefile |
diffstat | 1 files changed, 9 insertions(+), 4 deletions(-) [+] |
line wrap: on
line diff
--- a/Makefile Fri Jul 20 15:51:39 2007 +0000 +++ b/Makefile Fri Jul 20 16:18:24 2007 +0000 @@ -1,8 +1,13 @@ - CFLAGS=-ggdb -LIBDIR=-L/usr/include LIBS=-lgsoap++ -all: audioDB.h audioDB.cpp soapServer.cpp soapClient.cpp soapC.cpp Makefile - g++ -o audioDB ${CFLAGS} audioDB.cpp soapServer.cpp soapClient.cpp soapC.cpp ${CFLAGS} ${LIBDIR} ${LIBS} +all: audioDB +cmdline.c cmdline.h: gengetopt.in + gengetopt <gengetopt.in + +soapServer.cpp soapClient.cpp soapC.cpp: audioDBws.h + soapcpp2 audioDBws.h + +audioDB: audioDB.h audioDB.cpp soapServer.cpp soapClient.cpp soapC.cpp cmdline.c cmdline.h + g++ -o audioDB ${CFLAGS} audioDB.cpp soapServer.cpp soapClient.cpp soapC.cpp cmdline.c ${LIBS}