Order the DIRS variable according to build order. This allows the DIRS variable to be iterated over to build libapparmor, binutils, utils, parser, etc., without having to reorder the list.
Signed-off-by: Tyler Hicks <[email protected]> --- Makefile | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Makefile b/Makefile index f7907cd..5a9ba73 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 \ + utils \ + parser \ 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
