Changeset 2092


Ignore:
Timestamp:
2001-03-01T13:15:19+13:00 (23 years ago)
Author:
paynter
Message:

Proper compilation of Java

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/java-client/gnu/getopt/Makefile

    r2090 r2092  
    11# Makefile for Java port of GNU getopt
    22
    3 all:
    4     javac LongOpt.java Getopt.java GetoptDemo.java
     3
     4CLASSFILES = Getopt.class  GetoptDemo.class  LongOpt.class
     5
     6all: $(CLASSFILES)
    57
    68docs:
     
    1012clean:
    1113    rm -f *.class *.html stylesheet.css package-list
     14
     15
     16# Compile java classes
     17JAVAC=javac
     18JAVACOPTIONS= -deprecation -g:lines
     19
     20%.class: %.java
     21    $(JAVAC) $(JAVACOPTIONS)  $<
     22
Note: See TracChangeset for help on using the changeset viewer.