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

 1 sage  1.1 ################################################################################
 2           ##
 3           ## An ugly trick is used here to overcome a bug in g++ 2.9.5. G++ failes to
 4           ## cleanup object files that are placed in directories other than the
 5           ## current one (using the -o option). To overcome this bug, we use -o.tmp.o 
 6           ## and then move the file to the object directory.
 7           ##
 8           ################################################################################
 9           
10           _TMP_O = $(PEGASUS_PLATFORM).o
11           
12           # prelinker support
13           
14           ifdef PEGASUS_ZOS_PROGRAM_OBJECT
15 sage  1.2 FLAGS = $(PR_FLAGS)
16 sage  1.1 endif
17           
18           $(OBJ_DIR)/%.o: %.cpp $(ERROR)
19           	$(CXX) -c -o $(_TMP_O) $(FLAGS) $(LOCAL_DEFINES) $(DEFINES) $(SYS_INCLUDES) $(INCLUDES) $*.cpp
20           	@ $(COPY) $(_TMP_O) $@
21           	@ $(RM) $(_TMP_O)
22           	@ $(TOUCH) $@
23           	@ $(ECHO)

No CVS admin address has been configured
Powered by
ViewCVS 0.9.2