source: trunk/third/firefox/config/buildpkg.bat @ 21695

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