Skip to content

Instantly share code, notes, and snippets.

@angusjf
Created January 20, 2017 10:49
Show Gist options
  • Save angusjf/26fa45ee7fea4ffb897b6fcdff8d0641 to your computer and use it in GitHub Desktop.
Save angusjf/26fa45ee7fea4ffb897b6fcdff8d0641 to your computer and use it in GitHub Desktop.
Java Makefile
all: comp run
comp:
javac *.java
run:
java -cp .:+libs/* Main
clean:
rm *.class
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment