Skip to content

Instantly share code, notes, and snippets.

@LeoSaucedo
Created January 28, 2020 22:57
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save LeoSaucedo/57aaf26522843f1685d303af87841c4b to your computer and use it in GitHub Desktop.
Save LeoSaucedo/57aaf26522843f1685d303af87841c4b to your computer and use it in GitHub Desktop.
Java Quick Makefile
build:
# Compile java files.
javac *.java
# Create jar file.
jar cfm out.jar MANIFEST.MF *.class *.java
# Build javadoc.
mkdir www && javadoc *.java -d www/
clean:
# Remove class files, java package, and javadoc.
rm -rf *.class *.jar www
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment