Files
easy7zip/CPP/7zip/Asm.mak
Tino Reichardt c3967fe27a Initialer Commit
2016-06-25 21:15:50 +02:00

10 lines
224 B
Makefile

!IFDEF ASM_OBJS
!IF "$(CPU)" == "ARM"
$(ASM_OBJS): ../../../../Asm/Arm/$(*B).asm
$(COMPL_ASM)
!ELSEIF "$(CPU)" != "IA64" && "$(CPU)" != "MIPS"
$(ASM_OBJS): ../../../../Asm/x86/$(*B).asm
$(COMPL_ASM)
!ENDIF
!ENDIF