Changeset 48 for trunk/Platforms/Generic/Makefile
- Timestamp:
- Aug 8, 2007, 9:16:10 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Platforms/Generic/Makefile
r2 r48 135 135 $(error "variable TOOLS is undefined"); 136 136 endif 137 @$(ECHO) "$(ID) : Create directory" 138 @$(MKDIR) $(REP_OBJ) $(REP_BIN) 137 @\ 138 $(ECHO) "$(ID) : Create directory"; \ 139 $(MKDIR) $(REP_OBJ) $(REP_BIN); 139 140 140 141 # Création du fichier exe 141 142 142 143 $(EXE) : $(OBJS) 143 @$(ECHO) "$(ID) : Compilation of execute" 144 $(CXX) $(LXX_OPT) -o $@ $< $(LIBS) 2>&1 | $(CXXFILT) 144 @\ 145 $(ECHO) "$(ID) : Compilation of execute"; \ 146 $(CXX) $(LXX_OPT) -o $@ $< $(LIBS) 2>&1 | $(CXXFILT); 145 147 146 148 # Fichier objet 147 149 $(REP_OBJ)/%_$(ID).o : $(REP_SRC)/%.cpp 148 @$(ECHO) "$(ID) : Compilation of files $@" 149 $(CXX) $(CXX_OPT) -o $@ -c $< 2>&1 | $(CXXFILT) 150 @\ 151 $(ECHO) "$(ID) : Compilation of files $@"; \ 152 $(CXX) $(CXX_OPT) -o $@ -c $< 2>&1 | $(CXXFILT); 150 153 151 154 # Maintenance 152 155 clean : 153 @$(ECHO) "Delete temporary files" 154 @$(RM) $(REP_OBJ) *~ $(REP_SRC)/*~ $(REP_INC)/*~ *.trace tty* 155 @$(RM) $(REP_BIN) 156 @\ 157 $(ECHO) "Delete temporary files"; \ 158 $(RM) $(REP_OBJ) *~ $(REP_SRC)/*~ $(REP_INC)/*~ *.trace tty*; \ 159 $(RM) $(REP_BIN);
Note: See TracChangeset
for help on using the changeset viewer.