From 8903c78848ea1def78f9f6e7429334375b2ea504 Mon Sep 17 00:00:00 2001 From: Brett Gordon Date: Sun, 15 Oct 2017 23:36:04 -0400 Subject: [PATCH] app: make: build flashrom --- Applications/Makefile | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/Applications/Makefile b/Applications/Makefile index 875c380c..6af64b34 100644 --- a/Applications/Makefile +++ b/Applications/Makefile @@ -1,5 +1,5 @@ # -APPS = util cmd sh games cave cpm v7games games as09 ld09 netd SmallC MWC +APPS = util cmd sh games cave cpm v7games games as09 ld09 netd SmallC MWC flashrom .PHONY: $(APPS) @@ -41,6 +41,9 @@ SmallC: MWC: +(cd MWC/cmd; $(MAKE) -f Makefile.$(USERCPU)) +flashrom: + +(cd flashrom; $(MAKE) -f Makefile.$(USERCPU)) + clean: (cd util; $(MAKE) -f Makefile.$(USERCPU) clean) (cd V7/cmd; $(MAKE) -f Makefile.$(USERCPU) clean) -- 2.34.1