source: other-projects/trunk/realistic-books/packages/AntInstaller/examples/buildtypes/buildall.cmd@ 19253

Last change on this file since 19253 was 19253, checked in by davidb, 15 years ago

Establishing a source code repository for Veronica's Realistic Book's software

File size: 712 bytes
Line 
1@echo off
2
3REM # This script build all the installers
4
5
6echo using JAVA_HOME:%JAVA_HOME%
7
8REM multiple Ant versions cause errors so unset the classpath
9set CLASSPATH=
10
11cd manytargets\build
12echo ':::::::' building manytargets
13call ant
14
15cd ..\..\nonextract\build
16echo ':::::::' building nonextract
17call ant
18
19cd ..\..\nonextract-auto\build
20echo ':::::::' building nonextract-auto
21call ant
22
23cd ..\..\nonextract-jdk1.5\build
24echo ':::::::' building nonextract-jdk1.5
25call ant
26
27cd ..\..\nonextract-type\build
28echo ':::::::' building nonextract-type
29call ant
30
31cd ..\..\releasenotes\build
32echo ':::::::' building releasenotes
33call ant
34
35cd ..\..\selfextract\build
36echo ':::::::' building selfextract
37call ant
38
39cd ..\..
40
41
Note: See TracBrowser for help on using the repository browser.