mirror of
https://github.com/hsoft/collapseos.git
synced 2024-11-08 09:48:05 +11:00
817636242a
This allows us to write to an AT28 EEPROM from within collapse os.
11 lines
178 B
Makefile
11 lines
178 B
Makefile
TARGET = os.bin
|
|
ZASM = ../../../tools/zasm.sh
|
|
KERNEL = ../../../kernel
|
|
APPS = ../../../apps
|
|
|
|
.PHONY: all
|
|
all: $(TARGET)
|
|
$(TARGET): glue.asm
|
|
$(ZASM) $(KERNEL) $(APPS) < $< > $@
|
|
|