From 2eb5f323225c60e39ca0d75f213179d7bbbc2c4d Mon Sep 17 00:00:00 2001 From: sehl Date: Sun, 26 Oct 2025 20:23:38 +0100 Subject: [PATCH] MAJ FINALE NORMALEMENT README --- Makefile | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/Makefile b/Makefile index 474c881..044f5e5 100644 --- a/Makefile +++ b/Makefile @@ -22,6 +22,11 @@ compile: javac -encoding UTF-8 -cp "$(LIB_DIR)$(SEP)$(LIB_DIR)/org/mariadb/jdbc" -d $(BUILD_DIR) $(SRC_DIR)/*.java @echo Compilation terminee +# Exécution du programme +run: compile + @echo === Execution du programme === + java -cp "$(BUILD_DIR);$(LIB)" $(MAIN_CLASS) + # === Creation du JAR === jar: compile @echo === Creation du JAR autonome ===