mirror of
https://github.com/FunKey-Project/picodrive-irixxxx.git
synced 2025-12-31 08:49:01 +01:00
14 lines
190 B
Makefile
14 lines
190 B
Makefile
CFLAGS = -Wno-conversion -Wno-sign-compare # -Wno-pointer-sign
|
|
|
|
all : mz80.asm
|
|
|
|
mz80.asm : makez80
|
|
./makez80 -s -l -x86 $@
|
|
|
|
makez80 : makez80.o
|
|
|
|
|
|
clean :
|
|
$(RM) makez80 makez80.o mz80.asm
|
|
|