Changeset 13a8a67 for app/src/dgp
- Timestamp:
- 05/01/08 22:27:23 (17 years ago)
- Branches:
- master, help
- Children:
- df77b87
- Parents:
- 28e9ae0
- git-author:
- pawelk <pawelk@…> (05/01/08 22:27:23)
- git-committer:
- pawelk <pawelk@…> (05/01/08 22:27:23)
- Location:
- app/src/dgp
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
app/src/dgp/Makefile
r28e9ae0 r13a8a67 20 20 21 21 ${bin}: ${objs} 22 ${CXX} ${CXXFLAGS} - o $@ ${objs}22 ${CXX} ${CXXFLAGS} -D _CMDLINE_FILE=$(CMDLINE_FILE) -o $@ ${objs} 23 23 24 24 include $(sources:.cc=.d) … … 28 28 29 29 %.d: %.cc 30 $(CC) -MM $(CPPFLAGS) $< > $@.$$$$; \30 $(CC) -MM $(CPPFLAGS) -D _CMDLINE_FILE=$(CMDLINE_FILE) $< > $@.$$$$; \ 31 31 sed 's,\($*\)\.o[ :]*,\1.o $@ : ,g' < $@.$$$$ > $@; \ 32 32 rm -f $@.$$$$ -
app/src/dgp/main.cc
r28e9ae0 r13a8a67 7 7 */ 8 8 9 #include "cmdline.h"10 9 #include "global.hh" 11 10 #include "mgraph.hh" … … 14 13 #include "dgp0.hh" 15 14 #include "../common/common.h" 15 #include "cmdline.h" 16 16 17 17 #define MAXSEGMENTS 500
Note: See TracChangeset
for help on using the changeset viewer.