Skip to content

Instantly share code, notes, and snippets.

@wesleyegberto
Created June 16, 2022 16:40
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 wesleyegberto/16a3b8e4f9788bd8aa58d599f9385166 to your computer and use it in GitHub Desktop.
Save wesleyegberto/16a3b8e4f9788bd8aa58d599f9385166 to your computer and use it in GitHub Desktop.
Java Makefile
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