This commit is contained in:
2024-04-22 15:38:29 +02:00
parent ca3592cc83
commit c9efc37ef3
2 changed files with 39 additions and 17 deletions

37
Sudoku/Makefile Normal file
View File

@@ -0,0 +1,37 @@
### VARIABLES ###
JC = javac
JCFLAGS = -encoding UTF-8 -implicit:none
JVM = java
JVMFLAGS =
### REGLES ESSENTIELLES ###
main.class : main.java menu.class
${JC} ${JCFLAGS} main.java
grille.class : grille.java resolveurGrille.class
${JC} ${JCFLAGS} grille.java
menu.class : menu.java resolveurGrille.class grille.class
${JC} ${JCFLAGS} menu.java
resolveurGrille.class : resolveurGrille.java
${JC} ${JCFLAGS} resolveurGrille.java
### REGLES OPTIONNELLES ###
run : main.class
${JVM} ${JVMFLAGS} main
clean :
-rm -f *.class
mrproper : clean main.class
### BUTS FACTICES ###
.PHONY : run clean mrproper
### FIN ###