server/dep/ACE_wrappers/include/makeinclude/rules.bin.GNU
cipherCOM 571f510ee4 [11162] Changed ACE lib to same version but with configure script
(based on cipherCOM's repo commit d3d8934)

Signed-off-by: VladimirMangos <vladimir@getmangos.com>
2011-02-14 12:51:16 +03:00

53 lines
1.4 KiB
Gnuplot

# -*- Makefile -*-
#----------------------------------------------------------------------------
# $Id: rules.bin.GNU 83758 2008-11-14 22:29:43Z shuston $
#
# Build binaries
# GNU version
# Requires GNU make
#----------------------------------------------------------------------------
ifdef BIN
VBIN = $(ARCH_BIN:%=%$(VAR))
# VBIN always depends on idl_stubs and libraries, if they exist.
ifdef IDL_SRC
$(VBIN): $(IDL_SRC)
endif
ifdef VLIBS
$(VBIN): $(LIB_INSTALL) $(VLIBS)
endif
else # !BIN
ifndef BIN_UNCHECKED
@echo Warning: rules.bin.GNU included, but no BIN targets detected.
endif # !BIN_UNCHECKED
endif # BIN
VOBJS = $(addsuffix .$(OBJEXT),$(addprefix $(VDIR),$(basename $(SRC))))
ifneq ($(IDL_SRC),)
$(VBIN): $(IDL_SRC)
endif
# Needed for depend.
PSRC += $(addsuffix .cpp, $(CLEANUP_BIN))
CLEANUP_INSTALL += $(CLEANUP_BIN:%=$(INSBIN)/%$(VAR)$(EXEEXT))
CHORUSLINK ?=
VXWORKSLINK ?=
using_aix_vacpp ?=
ifeq ($(VXWORKSLINK),1)
$(ARCH_BIN): $(DEFAULTRULE)
mv $(DEFAULTRULE) $@
else # !VXWORKSLINK
ifeq (1,$(using_aix_vacpp))
$(ARCH_BIN): %: %.icc $(SRC)
vacbld_r $< -severitylevel=warning
else # !using_aix_vacpp
# Since we add in the vdir, don't use arch_bin. use bin instead!
$(ARCH_BIN): %: $(VDIR)$(BIN).$(OBJEXT) $(VOBJS)
$(LINK.cc) $(LDFLAGS) $(CC_OUTPUT_FLAG) $@ $(sort $(VDIR)$(BIN).$(OBJEXT) $(VOBJS)) $(VLDLIBS) $(POSTLINK)
endif # using_aix_vacpp
endif