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

 1 mike  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 mike  1.2 _TMP_O = $(PEGASUS_PLATFORM).o
11 mike  1.1 
12           $(OBJ_DIR)/%.o: %.cpp $(ERROR)
13 mike  1.3 	$(CXX) -c -o $(_TMP_O) $(FLAGS) $(LOCAL_DEFINES) $(DEFINES) $(SYS_INCLUDES) $(INCLUDES) $*.cpp
14 mike  1.1 	$(COPY) $(_TMP_O) $@
15           	$(RM) $(_TMP_O)
16           	@ $(ECHO)

No CVS admin address has been configured
Powered by
ViewCVS 0.9.2