From a55165f99b4d6eaff6e5b18db9d0add01b607880 Mon Sep 17 00:00:00 2001 From: Alan Cox Date: Fri, 7 Sep 2018 22:11:27 +0100 Subject: [PATCH] Applications: build plato --- Applications/Makefile | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) 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) -- 2.34.1