From: Alan Cox Date: Wed, 25 Oct 2017 19:50:59 +0000 (+0100) Subject: Makefile: hook in z80 assembler X-Git-Url: https://git.ndcode.org/public/gitweb.cgi?a=commitdiff_plain;h=56b5f65d27fa1e81fd9ba342ecc3aff0b01c375d;p=FUZIX.git Makefile: hook in z80 assembler --- 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)