From dadfb51af034153ceb539060a10cc905ce432f85 Mon Sep 17 00:00:00 2001 From: Loris BALOCCHI Date: Fri, 7 Jun 2024 17:44:24 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=94=A7=20Correction=20du=20makefile?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- makefile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/makefile b/makefile index 5d967fa..7206eba 100644 --- a/makefile +++ b/makefile @@ -2,6 +2,7 @@ SRC_DIR = src BIN_DIR = bin RES_DIR = $(SRC_DIR)/com/charpentierbalocchi/dorfjavatik/resources +RES_BIN_DIR = $(BIN_DIR)/com/charpentierbalocchi/dorfjavatik/resources JAVAC = javac JAVA = java JAVADOC = javadoc @@ -25,7 +26,7 @@ compile: # Rule to copy resources copy-resources: @echo "Copying resources..." - @cp -r $(RES_DIR) $(BIN_DIR) + @cp -r $(RES_DIR) $(RES_BIN_DIR) # Rule to run the application run: compile copy-resources