Created
January 20, 2017 10:49
-
-
Save angusjf/26fa45ee7fea4ffb897b6fcdff8d0641 to your computer and use it in GitHub Desktop.
Java Makefile
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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