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   
Makefile  |  2000-09-27  |  513b  |  25 lines

  1. SHELL=bash
  2.  
  3. # The next two rules define the default rules for compiling Java files.
  4. .SUFFIXES: .class .java
  5.  
  6. CLASSPATH= 
  7.  
  8. # Java compilation options. Change -g to -O, or vice versa, to switch between
  9. # debug and optimized versions.
  10. JAVA_OPTS=-g $(CLASSPATH)
  11.  
  12. .java.class:
  13.     javac $(JAVA_OPTS) $<
  14.  
  15. # Default target.
  16. pdb_package:
  17.     cd pdb; make -f Makefile.NT
  18.  
  19. # Scrub the directory tree. Use this if you want to do a complete rebuild.
  20. clean:    
  21.     rm -f *~
  22.     rm -f *.jar
  23.     rm -f *.class
  24.     cd pdb; make -f Makefile.NT clean
  25.