mirror of
https://github.com/holub/mame
synced 2025-05-04 05:23:22 +03:00
10 lines
215 B
Makefile
10 lines
215 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
|