This repository has been archived on 2021-01-14. You can view files and clone it, but cannot push or open issues or pull requests.
xed/Makefile
2020-09-21 02:58:04 +02:00

15 lines
310 B
Makefile

BUILDDIR=.build
all: $(BUILDDIR) $(BUILDDIR)/XED.COM
$(BUILDDIR)/XED.COM: src/crt0.z80 src/* include/* lib/*
@zasm $< -y -o $@ -L lib -I ../tools/sdcc-code/sdcc/device/include
$(BUILDDIR):
@mkdir $(BUILDDIR)
.PHONY: clean
clean:
@rm -rf $(BUILDDIR)/s
@rm -df $(BUILDDIR)/*.COM $(BUILDDIR)/*.lst .build