From: Alan Cox Date: Sat, 11 Nov 2017 22:16:00 +0000 (+0000) Subject: Applications: add more to the build and clean ups X-Git-Url: https://git.ndcode.org/public/gitweb.cgi?a=commitdiff_plain;h=68b8fcca22f24dfd1444b834c479e991d6d70e37;p=FUZIX.git Applications: add more to the build and clean ups --- diff --git a/Applications/Makefile b/Applications/Makefile index ec609b3d..20eab978 100644 --- a/Applications/Makefile +++ b/Applications/Makefile @@ -48,6 +48,12 @@ asz80: flashrom: +(cd flashrom; $(MAKE) -f Makefile.$(USERCPU)) +levee: + +(cd levee; $(MAKE) -f Makefile.$(USERCPU)) + +ue: + +(cd ue; $(MAKE) -f Makefile.$(USERCPU)) + clean: (cd util; $(MAKE) -f Makefile.$(USERCPU) clean) (cd V7/cmd; $(MAKE) -f Makefile.$(USERCPU) clean) @@ -61,3 +67,6 @@ 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) + (cd flashrom; $(MAKE) -f Makefile.$(USERCPU) clean) + (cd levee; $(MAKE) -f Makefile.$(USERCPU) clean) + (cd ue; $(MAKE) -f Makefile.$(USERCPU) clean)