Created
June 16, 2022 16:40
-
-
Save wesleyegberto/16a3b8e4f9788bd8aa58d599f9385166 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
run: build | |
java -cp .:dist Main | |
build: src/Main.java | |
javac -d dist src/Main.java | |
clean: | |
rm -rf dist | |
mkdir dist |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment