Changeset 2711 for trunk/makefile
- Timestamp:
- Feb 10, 2000, 12:46:57 AM (26 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/makefile
r1620 r2711 1 # $Id: makefile,v 1. 8 1999-11-05 14:27:09 sandervlExp $1 # $Id: makefile,v 1.9 2000-02-09 23:46:57 bird Exp $ 2 2 3 3 # … … 23 23 24 24 all: odin_libraries needed_tools 25 26 25 cd src 26 nmake -nologo all 27 27 28 28 clean: 29 30 31 32 33 34 29 cd lib 30 nmake -nologo clean 31 cd ..\tools 32 nmake -nologo clean 33 cd ..\src 34 nmake -nologo clean 35 35 36 36 debug: odin_libraries needed_tools 37 38 37 cd src 38 nmake -nologo all DEBUG=1 39 39 40 40 debugsmp: odin_libraries needed_tools 41 42 43 41 cd src 42 start nmake -i -f makefile.smp -nologo all DEBUG=1 43 nmake -nologo all DEBUG=1 44 44 45 45 nodebuginfo: odin_libraries needed_tools 46 47 46 cd src 47 nmake -nologo all DEBUG=1 NODEBUGINFO=1 48 48 49 49 nodebuginfosmp: odin_libraries needed_tools 50 51 52 50 cd src 51 start nmake -i -f makefile.smp -nologo all DEBUG=1 NODEBUGINFO=1 52 nmake -nologo all DEBUG=1 NODEBUGINFO=1 53 53 54 54 release: odin_libraries needed_tools 55 56 55 cd src 56 nmake -nologo all 57 57 58 58 releasesmp: odin_libraries needed_tools 59 cd src 60 start nmake -i -f makefile.smp -nologo all 61 nmake -nologo all 59 cd src 60 start nmake -i -f makefile.smp -nologo all 61 nmake -nologo all 62 63 dep: needed_tools 64 cd tools 65 nmake -nologo dep 66 cd ..\src 67 nmake -nologo dep 62 68 63 69
Note:
See TracChangeset
for help on using the changeset viewer.