view 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
line wrap: on
line source

CFLAGS=-ggdb
LIBDIR=-L/usr/include 
LIBS=-lgsoap++

all: audioDB.h audioDB.cpp soapServer.cpp soapClient.cpp soapC.cpp cmdline.c Makefile
	soapcpp2 audioDBws.h
	g++ -o audioDB ${CFLAGS} audioDB.cpp soapServer.cpp soapClient.cpp soapC.cpp cmdline.c ${CFLAGS} ${LIBDIR} ${LIBS}