Order the DIRS variable according to build order. This allows the DIRS variable to be iterated over to build libapparmor, binutils, parser, utils, etc., without having to reorder the list.
Signed-off-by: Tyler Hicks <[email protected]> Acked-by: Steve Beattie <[email protected]> Acked-by: Christian Boltz <[email protected]> --- Makefile | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Makefile b/Makefile index f7907cd..b9ed3b3 100644 --- a/Makefile +++ b/Makefile @@ -8,13 +8,13 @@ all: COMMONDIR=common include ${COMMONDIR}/Make.rules -DIRS=parser \ - profiles \ - utils \ +DIRS=libraries/libapparmor \ binutils \ - libraries/libapparmor \ + parser \ + utils \ changehat/mod_apparmor \ changehat/pam_apparmor \ + profiles \ tests #REPO_URL?=lp:apparmor -- 2.5.0 -- AppArmor mailing list [email protected] Modify settings or unsubscribe at: https://lists.ubuntu.com/mailman/listinfo/apparmor
