source: trunk/java-client/gnu/getopt/Makefile@ 2092

Last change on this file since 2092 was 2092, checked in by paynter, 23 years ago

Proper compilation of Java

  • Property svn:keywords set to Author Date Id Revision
File size: 386 bytes
Line 
1# Makefile for Java port of GNU getopt
2
3
4CLASSFILES = Getopt.class GetoptDemo.class LongOpt.class
5
6all: $(CLASSFILES)
7
8docs:
9 mkdir docs
10 javadoc -d docs -author -version -public Getopt.java LongOpt.java
11
12clean:
13 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 TracBrowser for help on using the repository browser.