mirror of
https://github.com/hsoft/collapseos.git
synced 2024-11-13 09:38:06 +11:00
8 lines
122 B
Makefile
8 lines
122 B
Makefile
|
TARGET = os.bin
|
||
|
PARTS = ../../parts/z80
|
||
|
|
||
|
.PHONY: all
|
||
|
all: $(TARGET)
|
||
|
$(TARGET): glue.asm
|
||
|
scas -o $@ -L map -I $(PARTS) $<
|