(file) Return to objects-unix.mak CVS log (file) (dir) Up to [Pegasus] / pegasus / mak

File: [Pegasus] / pegasus / mak / objects-unix.mak (download)
Revision: 1.9, Wed Aug 6 13:50:27 2003 UTC (20 years, 9 months ago) by keith.petley
Branch: MAIN
CVS Tags: test, local, TEST, RELEASE_2_3_2-root, RELEASE_2_3_1-root, RELEASE_2_3_1-branch, RELEASE_2_3_0-root, RELEASE_2_3_0-msg-freeze, RELEASE_2_3_0-branch, PRE_LICENSE_UPDATE_2003, POST_LICENSE_UPDATE_2003
Branch point for: RELEASE_2_3_2-branch
Changes since 1.8: +4 -0 lines
  - Added stanza to say SOLARIS_SPARC_CC doesn't use tmp.o files

################################################################################
##
## An ugly trick is used here to overcome a bug in g++ 2.9.5. G++ failes to
## cleanup object files that are placed in directories other than the
## current one (using the -o option). To overcome this bug, we use -o.tmp.o 
## and then move the file to the object directory.
##
################################################################################

ifeq ($(OS),HPUX)
  _NO_TMP_O = yes
endif

ifeq ($(PEGASUS_PLATFORM),AIX_RS_IBMCXX)
  _NO_TMP_O = yes
endif

ifeq ($(PEGASUS_PLATFORM),SOLARIS_SPARC_CC)
  _NO_TMP_O = yes
endif

_TMP_O = $(PEGASUS_PLATFORM).o

ifeq ($(_NO_TMP_O), yes)
$(OBJ_DIR)/%.o: %.cpp $(ERROR)
	$(CXX) -c -o $@ $(FLAGS) $(LOCAL_DEFINES) $(DEFINES) $(SYS_INCLUDES) $(INCLUDES) $*.cpp
	@ $(TOUCH) $@
	@ $(ECHO)
else
$(OBJ_DIR)/%.o: %.cpp $(ERROR)
	$(CXX) -c -o $(_TMP_O) $(FLAGS) $(LOCAL_DEFINES) $(DEFINES) $(SYS_INCLUDES) $(INCLUDES) $*.cpp
	@ $(COPY) $(_TMP_O) $@
	@ $(RM) $(_TMP_O)
	@ $(TOUCH) $@
	@ $(ECHO)
endif

No CVS admin address has been configured
Powered by
ViewCVS 0.9.2