mirror of
https://github.com/mangosfour/server.git
synced 2025-12-13 13:37:05 +00:00
(based on cipherCOM's repo commit d3d8934) Signed-off-by: VladimirMangos <vladimir@getmangos.com>
72 lines
2 KiB
Gnuplot
72 lines
2 KiB
Gnuplot
# -*- Makefile -*-
|
|
|
|
#----------------------------------------------------------------------------
|
|
# $Id: all_in_one.GNU 80826 2008-03-04 14:51:23Z wotte $
|
|
#----------------------------------------------------------------------------
|
|
|
|
# Only include once.
|
|
ifndef ALL_IN_ONE_GNU
|
|
ALL_IN_ONE_GNU = 1
|
|
|
|
# Include wrapper macros to all user defines, etc.
|
|
include $(ACE_ROOT)/include/makeinclude/wrapper_macros.GNU
|
|
|
|
TAO_ROOT ?= $(ACE_ROOT)/TAO
|
|
|
|
ifneq ($(ADDITIONAL_INCLUDE),)
|
|
include $(ADDITIONAL_INCLUDE)
|
|
endif
|
|
|
|
# Now test for installed components, and set the BIN. LIB, and SHLIB
|
|
# targets from the *_UNCHECKED ones if the component checks
|
|
# succeed. Client Makefile must set the variable REQUIRED_COMPONENTS
|
|
# with a list of required components. If no additional components
|
|
# are required, REQUIRED_COMPONENTS need not be set.
|
|
include $(ACE_ROOT)/include/makeinclude/component_check.GNU
|
|
|
|
# If no required components are missing, set the real targets
|
|
ifeq ($(MISSING_COMPONENTS),)
|
|
ifdef BIN_UNCHECKED
|
|
BIN += $(BIN_UNCHECKED)
|
|
endif # !BIN_UNCHECKED
|
|
ifdef static_libs
|
|
ifdef LIB_UNCHECKED
|
|
LIB += $(LIB_UNCHECKED)
|
|
endif # !LIB_UNCHECKED
|
|
endif # static_libs
|
|
ifdef shared_libs
|
|
ifdef SHLIB_UNCHECKED
|
|
SHLIB += $(SHLIB_UNCHECKED)
|
|
endif # !SHLIB_UNCHECKED
|
|
endif # !shared_libs
|
|
endif # COMPILE_COMPONENT
|
|
|
|
include $(ACE_ROOT)/include/makeinclude/macros.GNU
|
|
include $(ACE_ROOT)/include/makeinclude/rules.common.GNU
|
|
|
|
ifdef DIRS
|
|
include $(ACE_ROOT)/include/makeinclude/rules.nested.GNU
|
|
else # !DIRS
|
|
include $(ACE_ROOT)/include/makeinclude/rules.nonested.GNU
|
|
endif # DIRS
|
|
ifdef CLEANUP_LIB
|
|
include_lib = 1
|
|
endif # LIB
|
|
|
|
ifdef CLEANUP_SHLIB
|
|
include_lib = 1
|
|
endif # SHLIB
|
|
|
|
ifeq ($(include_lib),1)
|
|
include $(ACE_ROOT)/include/makeinclude/rules.lib.GNU
|
|
endif
|
|
|
|
include $(ACE_ROOT)/include/makeinclude/rules.local.GNU
|
|
|
|
# Remove the -g option if requested.
|
|
SUPPRESS_DASH_G ?=
|
|
ifeq ($(SUPPRESS_DASH_G),1)
|
|
DCFLAGS := $(filter-out -g, $DCFLAGS)
|
|
endif
|
|
|
|
endif # ALL_IN_ONE_GNU
|