Created
May 1, 2024 17:35
-
-
Save yuri117/92a63abb79128095f6aca66bb817f4f1 to your computer and use it in GitHub Desktop.
Nunca mais quero fazer um Makefile em java
This file contains hidden or 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
JFLAGS = -g | |
JC = javac | |
.SUFFIXES: .java .class | |
.java.class: | |
$(JC) $(JFLAGS) $*.java | |
CLASSES = \ | |
Main.java \ | |
arvores/ArvBal.java \ | |
arvores/ArvBin.java \ | |
arvores/ArvAVL.java | |
default: classes | |
classes: $(CLASSES:.java=.class) | |
clean: | |
$(RM) *.class | |
run: | |
java Main |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment