diff options
| author | Amlal El Mahrouss <113760121+Amlal-ElMahrouss@users.noreply.github.com> | 2024-03-27 20:42:17 +0100 |
|---|---|---|
| committer | Amlal El Mahrouss <113760121+Amlal-ElMahrouss@users.noreply.github.com> | 2024-03-27 20:42:17 +0100 |
| commit | bdedf1ec96cd4ea41f32794ebb37279e0737934c (patch) | |
| tree | 026532c65f6d6ecf6393d7e9b39cffe399f9e060 /makefile | |
| parent | 3939adadfecc486173df35e1f54c606a9bb4bb94 (diff) | |
cc: Striving to be ANSI C compliant now.
Signed-off-by: Amlal El Mahrouss <113760121+Amlal-ElMahrouss@users.noreply.github.com>
Diffstat (limited to 'makefile')
| -rw-r--r-- | makefile | 26 |
1 files changed, 13 insertions, 13 deletions
@@ -42,31 +42,31 @@ IASM_OUTPUT=Output/i64asm.exe all: pp cl link @echo "DONE." -.PHONY: pp -pp: +.PHONY: Preprocessor +Preprocessor: $(LINK_CC) $(COMMON_INC) $(PP_SRC) -o $(PP_OUTPUT) -.PHONY: cl -cl: +.PHONY: Compiler +Compiler: $(LINK_CC) $(COMMON_INC) $(CC_SRC) -o $(CC_OUTPUT) $(LINK_CC) $(COMMON_INC) $(IASM_SRC) -o $(IASM_OUTPUT) $(LINK_CC) $(COMMON_INC) $(ASM_SRC) -o $(ASM_OUTPUT) -.PHONY: link -link: +.PHONY: Linker +Linker: $(LINK_CC) $(COMMON_INC) $(LINK_SRC) -o $(LINK_OUTPUT) cp $(LINK_OUTPUT) $(LINK_ALT_OUTPUT) cp $(LINK_OUTPUT) $(LINK_ALT_2_OUTPUT) cp $(LINK_OUTPUT) $(LINK_ALT_3_OUTPUT) -.PHONY: help -help: - @echo "cl - Mahrouss Compilers." - @echo "pp - Mahrouss Preprocessors." - @echo "link - Mahrouss Linkers." +.PHONY: Help +Help: + @echo "Compiler - Mahrouss Compilers." + @echo "Preprocessor - Mahrouss Preprocessors." + @echo "Linker - Mahrouss Linkers." -.PHONY: clean -clean: +.PHONY: Clean +Clean: rm Output/$(MKCDFS_OUTPUT) rm Output/$(CC_OUTPUT) rm Output/$(PP_OUTPUT) |
