#---------------------------------------------------------------------------- # $Id$ # # Makefile for the DLL library in the Service_Config_Test test #---------------------------------------------------------------------------- #---------------------------------------------------------------------------- # Local macros #---------------------------------------------------------------------------- LIB = libService_Config_DLL.a SHLIB = libService_Config_DLL.$(SOEXT) FILES = Service_Config_DLL LSRC = $(addsuffix .cpp,$(FILES)) LIBS += $(ACELIB) BUILD = $(VLIB) $(VSHLIB) #---------------------------------------------------------------------------- # Include macros and targets #---------------------------------------------------------------------------- include $(ACE_ROOT)/include/makeinclude/wrapper_macros.GNU include $(ACE_ROOT)/include/makeinclude/macros.GNU include $(ACE_ROOT)/include/makeinclude/rules.common.GNU include $(ACE_ROOT)/include/makeinclude/rules.nonested.GNU include $(ACE_ROOT)/include/makeinclude/rules.lib.GNU include $(ACE_ROOT)/include/makeinclude/rules.local.GNU # To remake the Service_Config_DLL source with xlC on AIX, it works # best to wipe out any previously-created tempinc directory. # The compiler/linker isn't too smart about instantiating templates... ifdef TEMPINCDIR COMPILE.cc := $(RM) -rf tempinc; $(COMPILE.cc) endif #---------------------------------------------------------------------------- # Local targets #---------------------------------------------------------------------------- ifeq ($(shared_libs),1) ifneq ($(SHLIB),) CPPFLAGS += -DSERVICE_CONFIG_DLL_BUILD_DLL endif endif #---------------------------------------------------------------------------- # Dependencies #---------------------------------------------------------------------------- # DO NOT DELETE THIS LINE -- g++dep uses it. # DO NOT PUT ANYTHING AFTER THIS LINE, IT WILL GO AWAY. # IF YOU PUT ANYTHING HERE IT WILL GO AWAY