home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
linuxmafia.com 2016
/
linuxmafia.com.tar
/
linuxmafia.com
/
pub
/
palmos
/
astro-src-2.1.0beta.tar.gz
/
astro-src-2.1.0beta.tar
/
astro-src-2.1.0beta
/
java
/
palmutils
/
Makefile.NT
< prev
Wrap
Makefile
|
2000-09-27
|
513b
|
25 lines
SHELL=bash
# The next two rules define the default rules for compiling Java files.
.SUFFIXES: .class .java
CLASSPATH=
# Java compilation options. Change -g to -O, or vice versa, to switch between
# debug and optimized versions.
JAVA_OPTS=-g $(CLASSPATH)
.java.class:
javac $(JAVA_OPTS) $<
# Default target.
pdb_package:
cd pdb; make -f Makefile.NT
# Scrub the directory tree. Use this if you want to do a complete rebuild.
clean:
rm -f *~
rm -f *.jar
rm -f *.class
cd pdb; make -f Makefile.NT clean