From: Alan Cox Date: Fri, 7 Sep 2018 21:11:27 +0000 (+0100) Subject: Applications: build plato X-Git-Url: https://git.ndcode.org/public/gitweb.cgi?a=commitdiff_plain;h=a55165f99b4d6eaff6e5b18db9d0add01b607880;p=FUZIX.git Applications: build plato --- diff --git a/Applications/Makefile b/Applications/Makefile index d85d6e8b..f9ef80dc 100644 --- a/Applications/Makefile +++ b/Applications/Makefile @@ -1,6 +1,6 @@ # APPS = util cmd sh games cave cpm v7games games cursesgames \ - as09 ld09 netd SmallC MWC asz80 flashrom ue cpmfs + as09 ld09 netd SmallC MWC asz80 flashrom ue cpmfs plato .PHONY: $(APPS) @@ -60,6 +60,9 @@ ue: cpmfs: +(cd cpmfs/src; $(MAKE) -f Makefile.$(USERCPU)) +plato: + +(cd plato; $(MAKE) -f Makefile.$(USERCPU)) + clean: (cd util; $(MAKE) -f Makefile.$(USERCPU) clean) (cd V7/cmd; $(MAKE) -f Makefile.$(USERCPU) clean) @@ -77,3 +80,4 @@ clean: (cd levee; $(MAKE) -f Makefile.$(USERCPU) clean) (cd ue; $(MAKE) -f Makefile.$(USERCPU) clean) (cd cpmfs/src; $(MAKE) -f Makefile.$(USERCPU) clean) + (cd plato; $(MAKE) -f Makefile.$(USERCPU) clean)