Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 26 Jun 2002 06:34:02 -0700 (PDT)
From:      Brian Feldman <green@FreeBSD.org>
To:        Perforce Change Reviews <perforce@freebsd.org>
Subject:   PERFORCE change 13446 for review
Message-ID:  <200206261334.g5QDY2K5065996@freefall.freebsd.org>

next in thread | raw e-mail | index | archive | help
http://people.freebsd.org/~peter/p4db/chv.cgi?CH=13446

Change 13446 by green@green_laptop_2 on 2002/06/26 06:33:34

	Unfix unbotched integ.

Affected files ...

.. //depot/projects/trustedbsd/mac/sys/Makefile#5 edit

Differences ...

==== //depot/projects/trustedbsd/mac/sys/Makefile#5 (text+ko) ====

@@ -8,6 +8,31 @@
 SUBDIR+=modules
 .endif
 
+.for arch in alpha ia64 powerpc sparc64
+.if ${MACHINE_ARCH} != "${arch}"
+SKIPARCHS+=	${arch}
+.endif
+.endfor
+.if ${MACHINE_ARCH} == "i386"
+SKIPARCHS+=	pc98
+.elif ${MACHINE_ARCH} == "pc98"
+.else
+SKIPARCHS+=	i386
+SKIPARCHS+=	pc98
+.endif
+SKIPPATTERN:=\./boot
+.for arch in ${SKIPARCHS}
+SKIPPATTERN:=${SKIPPATTERN}|\./${arch}
+.endfor
+ctags:
+	rm -f ${.CURDIR}/tags
+	touch ${.CURDIR}/tags
+	cd ${.CURDIR}; \
+	    find -E . -type d -mindepth 1 -maxdepth 1 \
+	        ! -regex "${SKIPPATTERN}" | \
+	    xargs -J {} find {} -name "*.[lych]" | \
+	    xargs ctags -a -f ${.CURDIR}/tags
+
 HTAGSFLAGS+= -at `awk -F= '/^RELEASE *=/{release=$2}; END {print "FreeBSD", release, "kernel"}' < conf/newvers.sh`
 
 .include <bsd.subdir.mk>

To Unsubscribe: send mail to majordomo@FreeBSD.org
with "unsubscribe p4-projects" in the body of the message




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