From e4d075f658dd56d85da5d6f036c72a06b98d1f86 Mon Sep 17 00:00:00 2001 From: Jeffrey Townsend Date: Wed, 16 Dec 2015 00:55:15 +0000 Subject: [PATCH] Initial simple makefile. --- Makefile | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 Makefile diff --git a/Makefile b/Makefile new file mode 100644 index 00000000..90ecc4b7 --- /dev/null +++ b/Makefile @@ -0,0 +1,27 @@ +############################################################ +# +# Rudimentary work in progress. +# +############################################################ +include $(ONL)/make/config.mk + +all: amd64 ppc + +onl-amd64 onl-x86 x86 x86_64 amd64: + $(MAKE) -C packages/base ARCHES=amd64,all + $(MAKE) -C builds/amd64/rootfs + $(MAKE) -C builds/amd64/swi + $(MAKE) -C builds/amd64/installer/legacy + +onl-ppc ppc: + $(MAKE) -C packages/base ARCHES=powerpc,all + $(MAKE) -C builds/powerpc/rootfs + $(MAKE) -C builds/powerpc/swi + $(MAKE) -C builds/powerpc/installer/legacy + +rpc rebuild: + $(ONLPM) --rebuild-pkg-cache + + + +