File: make.bat

package info (click to toggle)
waba 1.5-3
  • links: PTS
  • area: contrib
  • in suites: woody
  • size: 1,996 kB
  • ctags: 3,231
  • sloc: ansic: 17,303; java: 4,436; sh: 2,345; makefile: 417
file content (29 lines) | stat: -rw-r--r-- 1,016 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
@echo off

set OLDCLASSPATH=%CLASSPATH%
set CLASSPATH=%CLASSPATH%;..\..\classes;.

rem compile program, build warp files and launchers
javac *.java
..\..\bin\warp c /q Web *.class
..\..\bin\exegen /q /w 160 /h 160 /m 7000 /i icon.bmp Web Web Web

echo :
echo : To run this program under Java, make sure you're CLASSPATH environment
echo : variable contains the waba classes directory and the current directory
echo : and execute either one of the following commands:
echo :
echo :    java waba.applet.Applet Web
echo :    appletviewer Web.html
echo :
echo : To install the program on a PalmPilot, install the Web.pdb and
echo : Web.prc files. To install the program under Windows CE, install
echo : the Web.wrp file in the \Program Files\Web directory
echo : and then install the the Web.lnk shortcut file where it can be
echo : executed.
echo :
echo : You will need an internet connection to run this program so it
echo : can get the web page it requests.

set CLASSPATH=%OLDCLASSPATH%