DRDE/AusRegCliever/Makefile

112 lines
3.0 KiB
Makefile
Raw Normal View History

2014-01-03 05:52:15 +00:00
LOCATION=authoring
#
2014-01-08 20:22:43 +00:00
#
# Add other locations and move target differences into the macros as needed
2014-01-03 05:52:15 +00:00
#
CC=g++
Cc=gcc
2014-01-03 07:32:44 +00:00
BOSTLIB=-L/usr/lib/boost
2014-01-07 17:59:27 +00:00
BOSINCL=-I/usr/include/boost
LOG4LIB=-L/usr/lib
ifeq ($(LOCATION),authoring)
2014-01-08 05:00:04 +00:00
ARTKLIB=-L/home/jdaugherty/clients/reg.de/git/AusRegEPPTK/lib
ARTKINCL=-I/home/jdaugherty/clients/reg.de/git/AusRegEPPTK/common
2014-01-08 20:22:43 +00:00
else
ARTKLIB=-L/home/jdaugherty/dnseppus/AusRegEPPTK/lib
ARTKINCL=-I/home/jdaugherty/dnseppus/AusRegEPPTK/common
endif
2014-01-03 05:52:15 +00:00
2014-01-08 05:00:04 +00:00
SLIBS= -L/usr/lib $(BOSTLIB) $(LOG4LIB) $(ARTKLIB) -l boost_system -l boost_thread -l log4cpp -l AusRegEPPTK
2014-01-03 05:52:15 +00:00
2014-01-03 07:32:44 +00:00
SINCL= -I include -I /usr/include/log4cpp $(BOSINCL)
2014-01-08 05:00:04 +00:00
CFLAGS= -DCURRENT_DEBUG=1000 -ggdb3
2014-01-08 13:56:09 +00:00
ifeq ($(LOCATION),authoring)
2014-01-08 13:49:46 +00:00
XALAN_LIB_DIR = /usr/lib/x86_64-linux-gnu/
2014-01-08 20:22:43 +00:00
else
2014-01-08 13:56:09 +00:00
XALAN_LIB_DIR = /usr/lib/
endif
2014-01-08 20:22:43 +00:00
2014-01-08 13:49:46 +00:00
XALAN_LIB = xalan-c
XALAN_INC_DIR = /usr/include/xalanc
XERCES_LIB_DIR = /usr/lib/
XERCES_LIB = xerces-c
XERCES_INC_DIR = /usr/include/xercesc/
2014-01-03 05:52:15 +00:00
CLIBS= -L$(USRLIB)
CLFLAGS= -Wall -Wundef -Wpointer-arith -Wshadow \
-Wcast-align -Winline -Wmissing-declarations -Wredundant-decls \
-Wmissing-prototypes -Wnested-externs \
-Wstrict-prototypes -Waggregate-return -Wno-implicit
ACOBJS= build/cliever.o build/mdLogger.o build/masterDaemonConfig.o build/masterDaemon.o \
2014-01-08 05:00:04 +00:00
build/mdHost.o build/mdState.o build/mdAusReg.o
2014-01-07 17:59:27 +00:00
2014-01-08 05:00:04 +00:00
ARTKDEPS = -L$(ARTK_LIB_DIR) -lAusRegEPPTK \
2014-01-07 17:59:27 +00:00
-L$(XALAN_LIB_DIR) -lxalan-c -lxalanMsg\
-L$(XERCES_LIB_DIR) -lxerces-c \
-lssl \
-lrt
2014-01-03 05:52:15 +00:00
# --- targets
#
ifeq ($(LOCATION),authoring)
all: cliever
endif
cliever: build/drde-cliever
.c.o:
$(Cc) -c $(CLFLAGS) -o $<
2014-01-03 07:51:51 +00:00
build/mdLogger.o: server/mdLogger.cpp include/mdLogger.h
2014-01-08 05:00:04 +00:00
$(CC) $(CFLAGS) server/mdLogger.cpp -c -o build/mdLogger.o $(SINCL) $(ARTKINCL)
2014-01-03 07:51:51 +00:00
2014-01-03 07:32:44 +00:00
build/cliever.o: server/cliever-md.cpp include/*.h
2014-01-08 05:00:04 +00:00
$(CC) $(CFLAGS) server/cliever-md.cpp -c -o build/cliever.o $(SINCL) $(ARTKINCL)
2014-01-03 05:52:15 +00:00
build/masterDaemonConfig.o: server/masterDaemonConfig.cpp include/*.h
2014-01-08 05:00:04 +00:00
$(CC) $(CFLAGS) server/masterDaemonConfig.cpp -c -o build/masterDaemonConfig.o $(SINCL) $(ARTKINCL)
build/mdHost.o: server/mdHost.cpp include/*.h
2014-01-08 05:00:04 +00:00
$(CC) $(CFLAGS) server/mdHost.cpp -c -o build/mdHost.o $(SINCL) $(ARTKINCL)
build/mdState.o: server/mdState.cpp include/*.h
2014-01-08 05:00:04 +00:00
$(CC) $(CFLAGS) server/mdState.cpp -c -o build/mdState.o $(SINCL) $(ARTKINCL)
build/masterDaemon.o: server/masterDaemon.cpp include/*.h
2014-01-08 05:00:04 +00:00
$(CC) $(CFLAGS) server/masterDaemon.cpp -c -o build/masterDaemon.o $(SINCL) $(ARTKINCL)
build/mdAusReg.o: server/mdAusReg.cpp include/*.h
$(CC) $(CFLAGS) server/mdAusReg.cpp -c -o build/mdAusReg.o $(SINCL) $(ARTKINCL)
build/drde-cliever: $(ACOBJS)
2014-01-07 17:59:27 +00:00
$(CC) $(CFLAGS) -o build/drde-cliever $(SINCL) $(LIBS) $(ACOBJS) $(SLIBS) $(ARTKDEPS)
2014-01-03 05:52:15 +00:00
doxygen/index.html: etc/doxygen.config
doxygen etc/doxygen.config
# --- rebuild on copy to a new host
distclean:
clrbak
rm -rf build
rm -rf doxygen
mkdir doxygen
mkdir build
touch etc/doxygen.config
clean:
clrbak
find ./build -name "*.o" -print | perl -ne "print;chop;unlink"
find ./build -name "*.rpo" -print | perl -ne "print;chop;unlink"
rm build/drde-cliever