Browse Source

Modification Makefile

Paul Faure 2 years ago
parent
commit
3fd5d3fbef
1 changed files with 4 additions and 2 deletions
  1. 4
    2
      Makefile

+ 4
- 2
Makefile View File

@@ -12,7 +12,7 @@ ifeq ($(QUOI),compilateur)
12 12
 	@echo "Compilation du compilateur"
13 13
 	$(MAKE) -C Compilateur build
14 14
 	@echo "Compilation terminée"
15
-else ifeq ($(QUOI),cross_asembleur)
15
+else ifeq ($(QUOI),cross_assembleur)
16 16
 	@echo "Compilation du CrossAssembleur"
17 17
 	$(MAKE) -C CrossAssembleur build
18 18
 	@echo "Compilation terminée"
@@ -52,7 +52,8 @@ clean:
52 52
 exec:
53 53
 ifeq ($(SOURCE),null)
54 54
 	@echo "USAGE : make exec SOURCE=\"file_name\" QUOI=\"[compile|interprete|interprete_registres|cross_assemble|load|all]\""
55
-else ifeq ($(QUOI),null)
55
+else 
56
+ifeq ($(QUOI),null)
56 57
 	@echo "USAGE : make exec SOURCE=\"file_name\" QUOI=\"[compile|interprete|interprete_registres|cross_assemble|load|all]\""
57 58
 else
58 59
 ifeq ($(QUOI),compile)
@@ -97,5 +98,6 @@ else
97 98
 	@echo "USAGE : make exec SOURCE=\"file_name\" QUOI=\"[compile|interprete|interprete_registres|cross_assemble|load|all]\""
98 99
 endif
99 100
 endif
101
+endif
100 102
 
101 103
 

Loading…
Cancel
Save