(file) Return to program-vxworks.mak CVS log (file) (dir) Up to [Pegasus] / pegasus / mak / Attic

Diff for /pegasus/mak/Attic/program-vxworks.mak between version 1.1.2.6 and 1.1.2.7

version 1.1.2.6, 2007/09/15 00:38:29 version 1.1.2.7, 2007/09/26 16:05:12
Line 39 
Line 39 
  
 LINK_FLAGS = -lstdc++ -L$(WIND_BASE)/target/usr/lib/simpentium/SIMPENTIUM/common -Wl,-rpath /romfs/lib -ldl -Wl,-rpath $(LIB_DIR) LINK_FLAGS = -lstdc++ -L$(WIND_BASE)/target/usr/lib/simpentium/SIMPENTIUM/common -Wl,-rpath /romfs/lib -ldl -Wl,-rpath $(LIB_DIR)
  
 DFILES = $(SOURCES:.cpp=.d)  ifeq ($(PEGASUS_USE_STATIC_LIBRARIES),true)
       _P1 = $(addprefix $(LIB_DIR)/$(LIB_PREFIX), $(LIBRARIES))
 $(TARG): $(BIN_DIR)/target $(OBJECTS) $(FULL_LIBRARIES) $(ERROR)      _P2 = $(addsuffix ".a", $(_P1))
         $(CXX) $(FLAGS) -o $(TARG) $(OBJECTS) -non-static $(FULL_LIBRARIES) $(LINK_FLAGS)      _FULL_LIBRARIES=$(shell echo $(_P2))
         rm -rf $(DFILES)  else
       _FULL_LIBRARIES=$(FULL_LIBRARIES)
   endif
   
   _DFILES = $(SOURCES:.cpp=.d)
   
   ifneq ($(PEGASUS_USE_STATIC_LIBRARIES),true)
   
   endif
   _EXTRA += -non-static
   
   $(TARG): $(BIN_DIR)/target $(OBJECTS) $(_FULL_LIBRARIES) $(ERROR)
           $(CXX) $(FLAGS) -o $(TARG) $(OBJECTS) $(_EXTRA) $(_FULL_LIBRARIES) $(LINK_FLAGS)
           rm -rf $(_DFILES)
  
 include $(ROOT)/mak/objects.mak include $(ROOT)/mak/objects.mak
  


Legend:
Removed from v.1.1.2.6  
changed lines
  Added in v.1.1.2.7

No CVS admin address has been configured
Powered by
ViewCVS 0.9.2