continue les test

This commit is contained in:
2022-04-26 16:43:29 +02:00
parent 0667cec233
commit a2062dc88f
10 changed files with 104 additions and 28 deletions

44
Makefile Normal file
View File

@@ -0,0 +1,44 @@
# PROJET TAQUIN MAKEFILE:
#
# Chapitre 1: But final;
but: main_ex.class
# Chapitre 2 : Variable
OFILES= observateurChoix.class\
nombreCollonnesLigneEtBombe.class\
paintFond.class\
paintChoix.class
CFLAGS= -implicit:none
# Chapitre 3 : Dependances (règle implicite):
observateurChoix.class: observateurChoix.java
javac $(CFLAGS) observateurChoix.java
nombreCollonnesLigneEtBombe.class : nombreCollonnesLigneEtBombe.java
javac $(CFLAGS) nombreCollonnesLigneEtBombe.java
paintFond.class : paintFond.java
javac $(CFLAGS) paintFond.java
paintChoix.class: paintChoix.java
javac $(CFLAGS) paintChoix.java
# Chapitre 4 : Dependances
main_ex.class: $(OFILES) main_ex.java
javac $(CFLAGS) main_ex.java
#Chapitre 5: nettoyage des fichiers generes
clean :
-rm -f $(OFILES) taquin
run :
java main_ex
#chapitre 6 : buts factices
.PHONY : but clean
.PHONY : but run