ajout de la difficulté avec pseudo difficile

This commit is contained in:
2025-10-08 16:29:48 +02:00
parent 7d2a0a12f9
commit 92aa82e7c7
21 changed files with 67109 additions and 1752 deletions

View File

@@ -1,6 +1,7 @@
# === Configuration ===
SRC_DIR = src
OUT_DIR = out
Dictionary = fr/iut/Projet/Dictionary
PACKAGE = fr/iut/Projet
MAIN_CLASS = fr.iut.Projet.Display
@@ -14,7 +15,8 @@ compile:
# Compilation de tous les fichiers Java du package
@javac -d $(OUT_DIR) $(SRC_DIR)/$(PACKAGE)/*.java
# Copier Word.txt dans le dossier de sortie
@cp $(SRC_DIR)/$(PACKAGE)/Word.txt $(OUT_DIR)/$(PACKAGE)/
@mkdir -p $(OUT_DIR)/$(Dictionary)
@cp $(SRC_DIR)/$(Dictionary)/*.txt $(OUT_DIR)/$(Dictionary)/
@echo "Compilation terminée."
# === Exécution ===