From owner-p4-projects@FreeBSD.ORG Tue Dec 2 08:35:42 2003 Return-Path: Delivered-To: p4-projects@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 32767) id 60FFB16A4D0; Tue, 2 Dec 2003 08:35:42 -0800 (PST) Delivered-To: perforce@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 31BCB16A4CE for ; Tue, 2 Dec 2003 08:35:42 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6BD8D43FA3 for ; Tue, 2 Dec 2003 08:35:41 -0800 (PST) (envelope-from bb+lists.freebsd.perforce@cyrus.watson.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hB2GZfXJ048415 for ; Tue, 2 Dec 2003 08:35:41 -0800 (PST) (envelope-from bb+lists.freebsd.perforce@cyrus.watson.org) Received: (from perforce@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hB2GZeFx048412 for perforce@freebsd.org; Tue, 2 Dec 2003 08:35:40 -0800 (PST) (envelope-from bb+lists.freebsd.perforce@cyrus.watson.org) Date: Tue, 2 Dec 2003 08:35:40 -0800 (PST) Message-Id: <200312021635.hB2GZeFx048412@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: perforce set sender to bb+lists.freebsd.perforce@cyrus.watson.org using -f From: Robert Watson To: Perforce Change Reviews Subject: PERFORCE change 43303 for review X-BeenThere: p4-projects@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: p4 projects tree changes List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 02 Dec 2003 16:35:42 -0000 http://perforce.freebsd.org/chv.cgi?CH=43303 Change 43303 by rwatson@rwatson_powerbook on 2003/12/02 08:34:58 High level install targets for libraries, et al. Affected files ... .. //depot/projects/trustedbsd/sedarwin/Makefile#2 edit Differences ... ==== //depot/projects/trustedbsd/sedarwin/Makefile#2 (text+ko) ==== @@ -3,8 +3,32 @@ dummy: @echo Please following the directions in bootstrap_instructions.txt -TBSDHEADERS=apsl/xnu/bsd/sys/extattr.h apsl/xnu/bsd/sys/mac.h apsl/xnu/bsd/sys/_label.h +TBSDHEADERS=apsl/xnu/bsd/sys/extattr.h apsl/xnu/bsd/sys/mac.h apsl/xnu/bsd/sys/_label.h \ + apsl/xnu/bsd/sys/ucred.h install-headers: install -m 444 -o root -g wheel $(TBSDHEADERS) /usr/include/sys cd libsebsd; make install-headers; cd .. + +libraries: + (cd libextattr ; make) + (cd libmac ; make) + (cd libsebsd ; make) + +install-libraries: + (cd libextattr ; make install) + (cd libmac ; make install) + (cd libsebsd ; make install) + +cmds: + (cd extattr_cmds ; make) + (cd mac_cmds ; make) + (cd sebsd_cmds ; make) + (cd sebsd_system ; make) + +install-cmds: + (cd extattr_cmds ; make install) + (cd mac_cmds ; make install) + (cd sebsd_cmds ; make install) + (cd sebsd_system ; make install) +