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

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

No CVS admin address has been configured
Powered by
ViewCVS 0.9.2