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
12 lines
209 B
Makefile
12 lines
209 B
Makefile
|
# Définition des variables
|
||
|
COMPILATEUR = javac
|
||
|
OPTIONS = -d .
|
||
|
EXECUTABLE = Main.class
|
||
|
SOURCE = Main.java
|
||
|
|
||
|
# Règle principale
|
||
|
$(EXECUTABLE): $(SOURCE)
|
||
|
$(COMPILATEUR) $(OPTIONS) $(SOURCE)
|
||
|
|
||
|
all: $(EXECUTABLE)
|