diff options
Diffstat (limited to 'C/Asm_c.mak')
-rw-r--r-- | C/Asm_c.mak | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/C/Asm_c.mak b/C/Asm_c.mak new file mode 100644 index 0000000..9431816 --- /dev/null +++ b/C/Asm_c.mak | |||
@@ -0,0 +1,12 @@ | |||
1 | !IFDEF ASM_OBJS | ||
2 | !IF "$(PLATFORM)" == "arm64" | ||
3 | $(ASM_OBJS): ../../../Asm/arm64/$(*B).S | ||
4 | $(COMPL_ASM_CLANG) | ||
5 | !ELSEIF "$(PLATFORM)" == "arm" | ||
6 | $(ASM_OBJS): ../../../Asm/arm/$(*B).asm | ||
7 | $(COMPL_ASM) | ||
8 | !ELSEIF "$(PLATFORM)" != "ia64" && "$(PLATFORM)" != "mips" | ||
9 | $(ASM_OBJS): ../../../Asm/x86/$(*B).asm | ||
10 | $(COMPL_ASM) | ||
11 | !ENDIF | ||
12 | !ENDIF | ||