Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 2 Dec 2003 08:35:40 -0800 (PST)
From:      Robert Watson <rwatson@FreeBSD.org>
To:        Perforce Change Reviews <perforce@freebsd.org>
Subject:   PERFORCE change 43303 for review
Message-ID:  <200312021635.hB2GZeFx048412@repoman.freebsd.org>

next in thread | raw e-mail | index | archive | help
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)
+



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200312021635.hB2GZeFx048412>