2014-01-03 05:52:15 +00:00
|
|
|
LOCATION=authoring
|
|
|
|
#
|
2014-01-05 22:58:00 +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
|
2014-01-05 22:58:00 +00:00
|
|
|
LOG4LIB=-L/usr/lib
|
|
|
|
|
2014-01-06 19:19:17 +00:00
|
|
|
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
|
|
|
|
#ARTKLIB=-L/home/jdaugherty/clients/reg.de/git/ACTK1_3_2/lib
|
|
|
|
#ARTKINCL=-I/home/jdaugherty/clients/reg.de/git/ACTK1_3_2/common
|
2014-01-06 19:19:17 +00:00
|
|
|
endif
|
2014-01-03 05:52:15 +00:00
|
|
|
|
2014-01-06 19:19:17 +00:00
|
|
|
ifeq ($(LOCATION),testing)
|
2014-01-08 05:00:04 +00:00
|
|
|
ARTKLIB=-L/home/drde/git/AusRegEPPTK/lib
|
|
|
|
ARTKINCL=I/home/drde/git/AusRegEPPTK/common
|
2014-01-06 19:19:17 +00:00
|
|
|
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
|
|
|
|
|
|
|
ifeq ($(LOCATION),authoring)
|
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-05 22:58:00 +00:00
|
|
|
endif
|
|
|
|
|
|
|
|
ifeq ($(LOCATION),production)
|
|
|
|
SINCL= -I include -I /usr/include/log4cpp $(BOSINCL)
|
|
|
|
CFLAGS= -DPRODUCTION=1
|
2014-01-03 05:52:15 +00:00
|
|
|
endif
|
|
|
|
|
2014-01-05 22:58:00 +00:00
|
|
|
|
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 \
|
2014-01-05 22:58:00 +00:00
|
|
|
-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
|
|
|
|
2014-01-05 22:58:00 +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)
|
2014-01-05 22:58:00 +00:00
|
|
|
|
|
|
|
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)
|
2014-01-05 22:58:00 +00:00
|
|
|
|
2014-01-06 19:19:17 +00:00
|
|
|
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)
|
2014-01-06 19:19:17 +00:00
|
|
|
|
2014-01-05 22:58:00 +00:00
|
|
|
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)
|
2014-01-06 19:19:17 +00:00
|
|
|
|
|
|
|
build/mdAusReg.o: server/mdAusReg.cpp include/*.h
|
|
|
|
$(CC) $(CFLAGS) server/mdAusReg.cpp -c -o build/mdAusReg.o $(SINCL) $(ARTKINCL)
|
2014-01-05 22:58:00 +00:00
|
|
|
|
|
|
|
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
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|