summaryrefslogtreecommitdiffstats
path: root/Makefile.inc1
diff options
context:
space:
mode:
authorjoe <joe@FreeBSD.org>2002-04-01 16:59:43 +0000
committerjoe <joe@FreeBSD.org>2002-04-01 16:59:43 +0000
commit92833214d1e27658e011187953a1c5422dd8c5bf (patch)
tree2c4702565486bf4fd14866bd4272c7a114a05329 /Makefile.inc1
parent8a0194ddf967964df1e245b42f81113f2fda76b9 (diff)
downloadFreeBSD-src-92833214d1e27658e011187953a1c5422dd8c5bf.zip
FreeBSD-src-92833214d1e27658e011187953a1c5422dd8c5bf.tar.gz
Install libusbhid.h during 'make includes'.
Requested by: jhb MFC after: 3 days
Diffstat (limited to 'Makefile.inc1')
-rw-r--r--Makefile.inc137
1 files changed, 37 insertions, 0 deletions
diff --git a/Makefile.inc1 b/Makefile.inc1
index 17bc00a..f2d7397 100644
--- a/Makefile.inc1
+++ b/Makefile.inc1
@@ -114,12 +114,46 @@ CLEANDIR= clean cleandepend
CLEANDIR= cleandir
.endif
+CVSUP_COLLECTION_BASE?= src-all
+CVSUP_BRANCH_BASE?= .
+CVSUP_COLLECTION_PORTS?=ports-all
+CVSUP_BRANCH_PORTS?= .
+CVSUP_COLLECTION_DOC?= doc-all
+CVSUP_BRANCH_DOC?= .
+CVSUP_COMPRESS?= yes
+CVSUP_BASE?= /usr
+CVSUP_PREFIX?= /usr
+
+CVSUP_HOST?= cvsup.freebsd.org
+
CVS?= cvs
SUP?= /usr/local/bin/cvsup
SUPFLAGS?= -g -L 2 -P -
.if defined(SUPHOST)
SUPFLAGS+= -h ${SUPHOST}
.endif
+.if defined(CVSUP_COMPRESS)
+SUPFLAGS+= -z
+.else
+SUPFLAGS+= -Z
+.endif
+.if !defined(CVSUP_HOST)
+ echo "Please set CVSUP_HOST to your nearest cvsup mirror."
+ exit
+.endif
+
+SUPFILE?= /usr/share/examples/cvsup/standard-supfile
+SUPFILE1?= /usr/share/examples/cvsup/secure-supfile
+SUPFILE2?= /usr/share/examples/cvsup/secure-supfile
+PORTSSUPFILE?= /usr/share/examples/cvsup/ports-supfile
+DOCSUPFILE?= /usr/share/examples/cvsup/doc-supfile
+
+foo:
+ echo "*default base=${CVSUP_BASE}"
+ echo "*default prefix=${CVSUP_PREFIX}"
+ echo "*default release=cvs tag=${CVSUP_BRANCH_FOO}"
+ echo "*default delete use-rel-suffix"
+ echo "${CVSUP_COLLECTION_FOO}"
MAKEOBJDIRPREFIX?= /usr/obj
TARGET_ARCH?= ${MACHINE_ARCH}
@@ -475,6 +509,8 @@ kernel: buildkernel installkernel
# Update the source tree, by running sup and/or running cvs to update to the
# latest copy.
#
+SUP_UPDATE=1
+SUP=echo
update:
.if defined(SUP_UPDATE)
@echo "--------------------------------------------------------------"
@@ -706,6 +742,7 @@ includes:
cd ${.CURDIR}/lib/libstand; ${MAKE} beforeinstall
cd ${.CURDIR}/lib/libtacplus; ${MAKE} beforeinstall
cd ${.CURDIR}/lib/libcom_err; ${MAKE} beforeinstall
+ cd ${.CURDIR}/lib/libusbhid; ${MAKE} beforeinstall
cd ${.CURDIR}/lib/libutil; ${MAKE} beforeinstall
cd ${.CURDIR}/lib/libvgl; ${MAKE} beforeinstall
cd ${.CURDIR}/lib/libwrap; ${MAKE} beforeinstall
OpenPOWER on IntegriCloud