From 56b5f65d27fa1e81fd9ba342ecc3aff0b01c375d Mon Sep 17 00:00:00 2001 From: Alan Cox Date: Wed, 25 Oct 2017 20:50:59 +0100 Subject: [PATCH] Makefile: hook in z80 assembler --- Applications/Makefile | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/Applications/Makefile b/Applications/Makefile index 6af64b34..ec609b3d 100644 --- a/Applications/Makefile +++ b/Applications/Makefile @@ -1,5 +1,6 @@ # -APPS = util cmd sh games cave cpm v7games games as09 ld09 netd SmallC MWC flashrom +APPS = util cmd sh games cave cpm v7games games\ + as09 ld09 netd SmallC MWC asz80 flashrom .PHONY: $(APPS) @@ -41,6 +42,9 @@ SmallC: MWC: +(cd MWC/cmd; $(MAKE) -f Makefile.$(USERCPU)) +asz80: + +(cd MWC/cmd/asz80; $(MAKE) -f Makefile.$(USERCPU)) + flashrom: +(cd flashrom; $(MAKE) -f Makefile.$(USERCPU)) @@ -56,4 +60,4 @@ clean: (cd netd; $(MAKE) -f Makefile.$(USERCPU) clean) (cd SmallC; $(MAKE) -f Makefile.$(USERCPU) clean) (cd MWC/cmd; $(MAKE) -f Makefile.$(USERCPU) clean) - + (cd MWC/cmd/asz80; $(MAKE) -f Makefile.$(USERCPU) clean) -- 2.34.1