Revision 21695,
1.3 KB
checked in by rbasch, 20 years ago
(diff) |
This commit was generated by cvs2svn to compensate for changes in r21694,
which included commits to RCS files with non-trunk default branches.
|
Line | |
---|
1 | @echo off |
---|
2 | rem The contents of this file are subject to the Netscape Public |
---|
3 | rem License Version 1.1 (the "License"); you may not use this file |
---|
4 | rem except in compliance with the License. You may obtain a copy of |
---|
5 | rem the License at http://www.mozilla.org/NPL/ |
---|
6 | rem |
---|
7 | rem Software distributed under the License is distributed on an "AS |
---|
8 | rem IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or |
---|
9 | rem implied. See the License for the specific language governing |
---|
10 | rem rights and limitations under the License. |
---|
11 | rem |
---|
12 | rem The Original Code is mozilla.org code. |
---|
13 | rem |
---|
14 | rem The Initial Developer of the Original Code is Netscape |
---|
15 | rem Communications Corporation. Portions created by Netscape are |
---|
16 | rem Copyright (C) 1998 Netscape Communications Corporation. All |
---|
17 | rem Rights Reserved. |
---|
18 | rem |
---|
19 | rem Contributor(s): |
---|
20 | @echo on |
---|
21 | |
---|
22 | @echo off |
---|
23 | if not exist %2\NUL echo Warning: %2 does not exist! (you may need to check it out) |
---|
24 | if not exist %2\NUL exit 1 |
---|
25 | |
---|
26 | cd %2 |
---|
27 | |
---|
28 | goto NO_CAFE |
---|
29 | |
---|
30 | if "%MOZ_CAFE%"=="" goto NO_CAFE |
---|
31 | |
---|
32 | mkdir %MOZ_SRC%\mozilla\dist\classes\%2 |
---|
33 | %MOZ_TOOLS%\bin\sj.exe -classpath %MOZ_SRC%\mozilla\dist\classes;%MOZ_SRC%\mozilla\sun-java\classsrc -d %MOZ_SRC%\mozilla\dist\classes *.java |
---|
34 | goto END |
---|
35 | |
---|
36 | :NO_CAFE |
---|
37 | |
---|
38 | perl.exe %MOZ_SRC%\mozilla\config\outofdate.pl -d %MOZ_SRC%\mozilla\dist\classes\%2 -cfg %1 *.java > doit.bat |
---|
39 | call doit.bat |
---|
40 | del doit.bat |
---|
41 | |
---|
42 | :END |
---|
43 | |
---|
Note: See
TracBrowser
for help on using the repository browser.