DRDE/AusRegCliever/Makefile

73 lines
1.5 KiB
Makefile
Raw Normal View History

2014-01-03 05:52:15 +00:00
LOCATION=authoring
#
2014-01-03 07:32:44 +00:00
# Add other locations as needed.
2014-01-03 05:52:15 +00:00
#
CC=g++
Cc=gcc
#ifeq ($(LOCATION),authoring)
2014-01-03 07:32:44 +00:00
BOSTLIB=-L/usr/lib/boost
BOSINCL=-L/usr/include/boost
ARTKLIB=
ARTKINCL=
2014-01-03 05:52:15 +00:00
#endif
2014-01-03 07:32:44 +00:00
SLIBS= -L/usr/lib $(BOSTLIB) $(LOG4LIB) -l boost_system -l boost_thread
2014-01-03 05:52:15 +00:00
ARTKFLAGS=-shared -fPIC -Wl,-soname,libAusRegEPPTK.so
ifeq ($(LOCATION),authoring)
2014-01-03 07:32:44 +00:00
SINCL= -I include -I /usr/include/log4cpp $(BOSINCL)
2014-01-03 05:52:15 +00:00
CFLAGS= -DCURRENT_DEBUG=1000
endif
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
# --- 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
$(CC) $(CFLAGS) server/mdLogger.cpp -c -o build/mdLogger.o $(SINCL)
2014-01-03 07:32:44 +00:00
build/cliever.o: server/cliever-md.cpp include/*.h
$(CC) $(CFLAGS) server/cliever-md.cpp -c -o build/cliever.o $(SINCL)
2014-01-03 05:52:15 +00:00
2014-01-03 07:32:44 +00:00
build/drde-cliever: build/cliever.o build/mdLogger.o
$(CC) $(CFLAGS) -o build/cliever $(SINCL) $(LIBS) build/mdLogger.o $(SLIBS)
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