gnumakefile.rmcast_receiver

来自「ACE自适配通信环境(ADAPTIVE Communication Enviro」· RMCAST_RECEIVER 代码 · 共 171 行

RMCAST_RECEIVER
171
字号
# -*- Makefile -*-#----------------------------------------------------------------------------#       GNU Makefile## @file GNUmakefile.RMCast_Receiver## gnu.mpd,v 1.147 2006/02/21 19:25:26 jwillemsen Exp## This file was automatically generated by MPC.  Any changes made directly to# this file will be lost the next time it is generated.##----------------------------------------------------------------------------MAKEFILE         = GNUmakefile.RMCast_ReceiverDEPENDENCY_FILE  = .depend.RMCast_ReceiverBIN_UNCHECKED    = receiverFILES = \  Receiver.cpp#----------------------------------------------------------------------------#       Include macros and targets#----------------------------------------------------------------------------LDLIBS = -lACE_RMCast -lACEPRJ_TYPE = rtpifeq ($(INSBIN),.)  ifeq ($(PWD),)    PWD=$(shell pwd)  endif  INSBIN = $(PWD)endifOUTPUT_DIRECTORY = $(INSBIN)include $(ACE_ROOT)/include/makeinclude/wrapper_macros.GNU## We don't need the ACELIB setting from wrapper_macros.GNUACELIB =# To build multiple targets in the same directory on AIX, it works# best to have a template directory per project.# The compiler/linker isn't too smart about instantiating templates...ifdef TEMPINCDIRTEMPINCDIR := $(TEMPINCDIR)/RMCast_Receiverall: $(TEMPINCDIR)endififneq ($(OUTPUT_DIRECTORY),)all: $(OUTPUT_DIRECTORY)$(OUTPUT_DIRECTORY):	-@$(MKDIR) "$(OUTPUT_DIRECTORY)"endif# turn off libcheck if doing a dry runifeq ($(findstring n, $(MAKEFLAGS)),n)  LIBCHECK = 1else  # turn off libcheck if keep going was passed too  ifeq ($(findstring k, $(MAKEFLAGS)),k)    LIBCHECK = 1  else    LIBCHECK ?= $(filter-out $(foreach lib,ACE_RMCast ACE,$(findstring $(lib),$(foreach libpath,. ../../../lib /usr/lib $(INSLIB),$(wildcard $(libpath)/lib$(lib).* $(libpath)/$(lib).lib)))),ACE_RMCast ACE)    ifeq ($(LIBCHECK),)      LIBCHECK = 1    endif  endifendififeq ($(exceptions),1)ifeq ($(threads),1)ifneq ($(ace_for_tao),1)ifeq ($(LIBCHECK), 1)BIN    = $(BIN_UNCHECKED)$(EXEEXT)else  all: lib_warningendifelse  all: avoid_warningendifelse  all: require_warningendifelse  all: require_warningendif# If it contains ../ at all use notdir.OBJS   = $(foreach var, $(addsuffix .$(OBJEXT), $(basename $(FILES)) $(RESOURCES)), $(if $(findstring ../,$(var)),$(notdir $(var)),$(var)))SRC    = $(FILES)include $(ACE_ROOT)/include/makeinclude/macros.GNUinclude $(ACE_ROOT)/include/makeinclude/rules.common.GNUinclude $(ACE_ROOT)/include/makeinclude/rules.nonested.GNUifneq ($(OUTPUT_DIRECTORY),)ifneq ($(OUTPUT_DIRECTORY),.)  INSTALL = $(VBIN:%=$(INSBIN)/%)  CLEANUP_INSTALL += $(CLEANUP_BIN:%=$(INSBIN)/%$(VAR)$(EXEEXT))endifendifinclude $(ACE_ROOT)/include/makeinclude/rules.local.GNUifeq ($(VXWORKSLINK),true)include $(TGT_DIR)/h/make/rules.$(PRJ_TYPE)endififeq ($(VXWORKSLINK),true)LDLIBPATH     = -L. -L../../../libelseLDFLAGS      += -L. -L../../../libendifCPPFLAGS     += -I../../.. -I../../../protocolsifeq ($(static_libs),1)  CPPFLAGS += -DACE_AS_STATIC_LIBSendif#----------------------------------------------------------------------------#       Local targets#----------------------------------------------------------------------------lib_warning:	@echo This project will not be built due to the following missing library:	@echo $(LIBCHECK)require_warning:	@echo This project will not be built due to one of the following missing features:	@echo exceptions threadsavoid_warning:	@echo This project will not be built due to one of the following enabled features:	@echo ace_for_tao## Some OS's have /bin/test others only have /usr/bin/testifeq ($(wildcard /bin/test), /bin/test)  TEST_EXE = /bin/testelseifeq ($(wildcard /usr/bin/test), /usr/bin/test)  TEST_EXE = /usr/bin/testendifendififneq ($(GENERATED_DIRTY),).PRECIOUS: $(GENERATED_DIRTY)## If the generated files are anything but source files, we need to## ensure that those files are generated before we attempt to build anything## else.ifeq ($(OBJS_DEPEND_ON_GENERATED),1)$(VDIR)$(ACE_PCH_FILE) $(addprefix $(VDIR), $(OBJS)): $(GENERATED_DIRTY)$(VSHDIR)$(ACE_PCH_FILE) $(VSHOBJS): $(GENERATED_DIRTY)endifendififneq ($(VXWORKSLINK),true)ifeq ($(static_libs_only), 1)  ifeq ($(use_dep_libs), 1)    DEPLIBS = $(foreach lib, ACE_RMCast ACE , $(foreach libpath, . ../../../lib, $(wildcard $(libpath)/lib$(lib).a)))  endifendif$(BIN): $(addprefix $(VDIR), $(OBJS)) $(DEPLIBS)ifndef kylix	$(LINK.cc) $(LDFLAGS) $(CC_OUTPUT_FLAG) $@ $^ $(VLDLIBS) $(POSTLINK)else	$(LINK.cc) $(LDFLAGS) $(CC_OUTPUT_FLAG) $(VLDLIBS) $(BORINITEXEOBJ) $(POSTLINK) $^, $@,,endifendifrealclean: cleanifneq ($(GENERATED_DIRTY),)	-$(RM) -r $(GENERATED_DIRTY)endif

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?