Changeset 90
- Timestamp:
- 01/22/07 15:43:49 (2 years ago)
- Files:
-
- branches/dsss-build-system/Makefile (modified) (1 diff)
- branches/dsss-build-system/Makefile.posix (added)
- branches/dsss-build-system/Makefile.win (added)
- branches/dsss-build-system/dsss.conf (modified) (1 diff)
- branches/dsss-build-system/javaxmlconverter (deleted)
- branches/dsss-build-system/test/Makefile (deleted)
- branches/dsss-build-system/test/Makefile.posix (added)
- branches/dsss-build-system/test/Makefile.win (added)
- branches/dsss-build-system/test/builder.d (added)
- branches/dsss-build-system/test/hello.d (deleted)
- branches/dsss-build-system/test/staticctors-good.d (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
branches/dsss-build-system/Makefile
r89 r90 1 # Simply a frontend to DSSS, for those who don't know better 1 2 .PHONY : build install 2 3 branches/dsss-build-system/dsss.conf
r89 r90 1 1 name = tioport 2 2 3 [src/bintod/bintod.d] 4 buildflags = -Isrc/dejavu -Isrc/tioport -op -cleanup 5 target = bintod 3 #[src/bintod/bintod.d] 4 #buildflags = -Isrc/dejavu -Isrc/tioport -op -cleanup 5 #target = bintod 6 7 # Workaround for bugs in DSSS- remove when the bugs are fixed 8 [+bintod] 9 version(Windows) { 10 prebuild = make -f Makefile.win bin/bintod 11 preinstall = copy bin\bintod.exe $BIN_PREFIX 12 } else { 13 prebuild = make -f Makefile.posix bin/bintod 14 preinstall = cp bin/bintod $BIN_PREFIX 15 } 16 target = bin/bintod 6 17 7 18 [+javaxmlconverter] 8 prebuild = make -C src/javaxmlconverter 19 version(Windows) { 20 prebuild = make -f Makefile.win bin/javaxmlconverter.jar 21 } else { 22 prebuild = make -f Makefile.posix bin/javaxmlconverter.jar 23 } 24 25 [+tioport] 26 version(Windows) { 27 prebuild = make -f Makefile.win bin/tioport 28 preinstall = copy bin\tioport.exe $BIN_PREFIX 29 } else { 30 prebuild = make -f Makefile.posix bin/bintod 31 preinstall = cp bin/bintod $BIN_PREFIX 32 } 33 target = bin/tioport 34 35 [+test] 36 version(Windows) { 37 prebuild = make -f Makefile.win test 38 } else { 39 prebuild = make -f Makefile.posix test 40 } branches/dsss-build-system/test/staticctors-good.d
r87 r90 1 module staticctors ;1 module staticctors-good; 2 2 3 3 import dejavu.Intern;
