annotate Makefile.linux @ 2:c5869889f122

Makefile rearrangements. Delete the man page; instead generate it from help2man Provide in the Makefile for renaming the program -- using the EXECUTABLE variable: e.g. make EXECUTABLE=audiodb all will generate an audiodb executable (instead of audioDB).
author mas01cr
date Mon, 23 Jul 2007 16:21:04 +0000
parents 9eab3e0f3068
children
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 cmdline.c Makefile
mas01cr@0 7 soapcpp2 audioDBws.h
mas01cr@0 8 g++ -o audioDB ${CFLAGS} audioDB.cpp soapServer.cpp soapClient.cpp soapC.cpp cmdline.c ${CFLAGS} ${LIBDIR} ${LIBS}
mas01cr@0 9