source: other-projects/gs2-java-client/trunk/gnu/getopt/Makefile@ 21525

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

Clean docs properly.

  • Property svn:keywords set to Author Date Id Revision
File size: 358 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 -rf *.class docs
14
15
16
17# Compile java classes
18JAVAC=javac
19JAVACOPTIONS= -deprecation -g:lines
20
21%.class: %.java
22 $(JAVAC) $(JAVACOPTIONS) $<
23
Note: See TracBrowser for help on using the repository browser.