mirror of
https://github.com/hsoft/collapseos.git
synced 2024-11-09 02:48:05 +11:00
055e0d7a31
Also, clarify the role of recipes.
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) $<
|