Files
src
tests
C
Java
test-01-from-nothing
test-02-already-exist
test-03-circular
test-04-edited
test-05-variables
bake
make
Main.java
Makefile
bakefile.jar
README.md
bakefile.jar
.gitignore
Makefile
Manifest.MF
README.md
bakefile.jar
SAE32_2024/tests/Java/test-05-variables/make/Makefile

12 lines
209 B
Makefile
Raw Normal View History

2025-02-08 20:42:37 +01:00
# Définition des variables
COMPILATEUR = javac
OPTIONS = -d .
EXECUTABLE = Main.class
SOURCE = Main.java
# Règle principale
$(EXECUTABLE): $(SOURCE)
$(COMPILATEUR) $(OPTIONS) $(SOURCE)
all: $(EXECUTABLE)