mirror of
https://github.com/hsoft/collapseos.git
synced 2024-11-08 15:48:06 +11:00
10 lines
171 B
Makefile
10 lines
171 B
Makefile
|
TARGETS = os.bin sdinit.bin
|
||
|
PARTS = ../../../parts/z80
|
||
|
|
||
|
.PHONY: all
|
||
|
all: $(TARGETS)
|
||
|
os.bin: glue.asm
|
||
|
sdinit.bin: sdinit.asm
|
||
|
$(TARGETS):
|
||
|
scas -o $@ -L map -I $(PARTS) $<
|