From 3fd5d3fbef94d53ea921a8c71419ca1868e0a47a Mon Sep 17 00:00:00 2001 From: pfaure Date: Wed, 23 Jun 2021 14:36:00 +0200 Subject: [PATCH] Modification Makefile --- Makefile | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index aab96d7..66a8b95 100644 --- a/Makefile +++ b/Makefile @@ -12,7 +12,7 @@ ifeq ($(QUOI),compilateur) @echo "Compilation du compilateur" $(MAKE) -C Compilateur build @echo "Compilation terminée" -else ifeq ($(QUOI),cross_asembleur) +else ifeq ($(QUOI),cross_assembleur) @echo "Compilation du CrossAssembleur" $(MAKE) -C CrossAssembleur build @echo "Compilation terminée" @@ -52,7 +52,8 @@ clean: exec: ifeq ($(SOURCE),null) @echo "USAGE : make exec SOURCE=\"file_name\" QUOI=\"[compile|interprete|interprete_registres|cross_assemble|load|all]\"" -else ifeq ($(QUOI),null) +else +ifeq ($(QUOI),null) @echo "USAGE : make exec SOURCE=\"file_name\" QUOI=\"[compile|interprete|interprete_registres|cross_assemble|load|all]\"" else ifeq ($(QUOI),compile) @@ -97,5 +98,6 @@ else @echo "USAGE : make exec SOURCE=\"file_name\" QUOI=\"[compile|interprete|interprete_registres|cross_assemble|load|all]\"" endif endif +endif