From 518c278c6f8afa3c45b256d1295b28dacd71b15a Mon Sep 17 00:00:00 2001 From: Alan Cox Date: Sat, 7 Jul 2018 00:59:16 +0100 Subject: [PATCH] apps: build cpmfs etc --- Applications/Makefile | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/Applications/Makefile b/Applications/Makefile index 8c8fbe21..d85d6e8b 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 + as09 ld09 netd SmallC MWC asz80 flashrom ue cpmfs .PHONY: $(APPS) @@ -57,6 +57,9 @@ levee: ue: +(cd ue; $(MAKE) -f Makefile.$(USERCPU)) +cpmfs: + +(cd cpmfs/src; $(MAKE) -f Makefile.$(USERCPU)) + clean: (cd util; $(MAKE) -f Makefile.$(USERCPU) clean) (cd V7/cmd; $(MAKE) -f Makefile.$(USERCPU) clean) @@ -73,3 +76,4 @@ clean: (cd flashrom; $(MAKE) -f Makefile.$(USERCPU) clean) (cd levee; $(MAKE) -f Makefile.$(USERCPU) clean) (cd ue; $(MAKE) -f Makefile.$(USERCPU) clean) + (cd cpmfs/src; $(MAKE) -f Makefile.$(USERCPU) clean) -- 2.34.1