Changeset 7994 for trunk/makefile
- Timestamp:
- Feb 24, 2002, 12:13:08 AM (24 years ago)
- File:
-
- 1 edited
-
trunk/makefile (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/makefile
r7505 r7994 1 # $Id: makefile,v 1.1 8 2001-11-30 18:30:51 phallerExp $1 # $Id: makefile,v 1.19 2002-02-23 23:13:08 bird Exp $ 2 2 3 3 # … … 15 15 # nodebuginfosmp: Change to an SMP debug build without debug info in binaries 16 16 # profile: Change to a debug build with profiling hooks 17 # profilesmp: Change to an SMP debug build with profiling hooks 17 18 # release: Change to a release build. 18 19 # releasesmp: Change to an SMP release build. … … 70 71 # Special build mode rules. 71 72 # 72 debug: odin_libraries needed73 debug: odin_libraries_debug needed 73 74 @$(DODIRS) "$(BLDDIRS)" $(MAKE_CMD) DEBUG=1 all 74 75 75 debugsmp: odin_libraries needed76 debugsmp: odin_libraries_debug needed 76 77 @$(DODIRS) "src" $(MAKE_CMD) DEBUG=1 smp 77 78 @$(DODIRS) "tools\install" $(MAKE_CMD) DEBUG=1 all 78 79 79 nodebuginfo: odin_libraries needed80 nodebuginfo: odin_libraries_debug needed 80 81 @$(DODIRS) "$(BLDDIRS)" $(MAKE_CMD) DEBUG=1 NODEBUGINFO=1 all 81 82 82 nodebuginfosmp: odin_libraries needed83 nodebuginfosmp: odin_libraries_debug needed 83 84 @$(DODIRS) "src" $(MAKE_CMD) DEBUG=1 NODEBUGINFO=1 smp 84 85 @$(DODIRS) "tools\install" $(MAKE_CMD) DEBUG=1 NODEBUGINFO=1 all 85 86 86 profile: odin_libraries needed87 profile: odin_libraries_profile needed 87 88 SET PROFILEHOOKS=1 88 89 @$(DODIRS) "$(BLDDIRS)" $(MAKE_CMD) DEBUG=1 PROFILE=1 all 90 SET PROFILEHOOKS= 89 91 90 profilesmp: odin_libraries needed 92 profilesmp: odin_libraries_profile needed 93 SET PROFILEHOOKS=1 91 94 @$(DODIRS) "src" $(MAKE_CMD) DEBUG=1 PROFILE=1 smp 92 95 @$(DODIRS) "tools\install" $(MAKE_CMD) DEBUG=1 PROFILE=1 all 96 SET PROFILEHOOKS= 93 97 94 release: odin_libraries needed98 release: odin_libraries_release needed 95 99 SET DEBUG= 96 100 @$(DODIRS) "$(BLDDIRS)" $(MAKE_CMD) all 97 101 98 releasesmp: odin_libraries needed102 releasesmp: odin_libraries_release needed 99 103 SET DEBUG= 100 104 @$(DODIRS) "src" $(MAKE_CMD) smp … … 108 112 @$(DODIRS) "lib" $(MAKE_CMD) 109 113 114 odin_libraries_debug: 115 @$(DODIRS) "lib" $(MAKE_CMD) DEBUG=1 116 117 odin_libraries_profile: 118 @$(DODIRS) "lib" $(MAKE_CMD) PROFILE=1 119 120 odin_libraries_release: 121 SET DEBUG= 122 @$(DODIRS) "lib" $(MAKE_CMD) 123 110 124 needed_tools: needed 111 125 needed:
Note:
See TracChangeset
for help on using the changeset viewer.
