gnu.getopt.Makefile Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of java-getopt Show documentation
Show all versions of java-getopt Show documentation
GNU Getopt - Java port, with type annotations
# Makefile for Java port of GNU getopt
JAVAC=${CHECKERFRAMEWORK}/checker/bin/javac -target 7 -source 7
FLAGS=-processor nullness
SOURCES=LongOpt.java Getopt.java GetoptDemo.java
all:
${JAVAC} -cp .:checker-qual7.jar ${FLAGS} ${SOURCES}
docs:
javadoc -d ../../api -author -version -public Getopt.java LongOpt.java
jar:
${MAKE} -C ../.. jar
© 2015 - 2024 Weber Informatics LLC | Privacy Policy