From owner-p4-projects@FreeBSD.ORG Thu Nov 20 15:02:57 2003 Return-Path: Delivered-To: p4-projects@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 32767) id 16E5816A4F5; Thu, 20 Nov 2003 15:02:57 -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 BC81A16A4CF for ; Thu, 20 Nov 2003 15:02:56 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0F4CC43FE3 for ; Thu, 20 Nov 2003 15:02:56 -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 hAKN2tXJ010212 for ; Thu, 20 Nov 2003 15:02:55 -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 hAKN2tYK010209 for perforce@freebsd.org; Thu, 20 Nov 2003 15:02:55 -0800 (PST) (envelope-from bb+lists.freebsd.perforce@cyrus.watson.org) Date: Thu, 20 Nov 2003 15:02:55 -0800 (PST) Message-Id: <200311202302.hAKN2tYK010209@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 42851 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: Thu, 20 Nov 2003 23:02:57 -0000 http://perforce.freebsd.org/chv.cgi?CH=42851 Change 42851 by rwatson@rwatson_powerbook on 2003/11/20 15:02:41 Add install and clean targets to libextattr and libmac. Affected files ... .. //depot/projects/trustedbsd/sedarwin/libextattr/Makefile#2 edit .. //depot/projects/trustedbsd/sedarwin/libmac/Makefile#2 edit Differences ... ==== //depot/projects/trustedbsd/sedarwin/libextattr/Makefile#2 (text+ko) ==== @@ -6,3 +6,10 @@ libextattr.a: $(OBJS) ar cr $@ $(OBJS) ranlib $@ + +install: + install -m 444 -o root -g wheel libextattr.a /usr/lib + +clean: + rm -f $(OBJS) libextattr.a + ==== //depot/projects/trustedbsd/sedarwin/libmac/Makefile#2 (text+ko) ==== @@ -5,4 +5,10 @@ libmac.a: $(OBJS) ar cr $@ $(OBJS) - ranlib $@+ ranlib $@ + +install: + install -m 444 -o root -g wheel libmac.a /usr/lib + +clean: + rm -f $(OBJS) libmac.a