diff options
author | bz <bz@FreeBSD.org> | 2010-01-08 18:57:31 +0000 |
---|---|---|
committer | bz <bz@FreeBSD.org> | 2010-01-08 18:57:31 +0000 |
commit | ad608e4e422194e9f446f1163cb65ad916ca6a7c (patch) | |
tree | e6c5429a76f9eb8a44e15ebb9694d93e74f12cd4 /sys/ia64/conf | |
parent | 316634c7adc4edcba52e3c3af455e3f18f37adb4 (diff) | |
download | FreeBSD-src-ad608e4e422194e9f446f1163cb65ad916ca6a7c.zip FreeBSD-src-ad608e4e422194e9f446f1163cb65ad916ca6a7c.tar.gz |
In sys/<arch>/conf/Makefile set TARGET to <arch>. That allows
sys/conf/makeLINT.mk to only do certain things for certain
architectures.
Note that neither arm nor mips have the Makefile there, thus
essentially not (yet) supporting LINT. This would enable them
do add special treatment to sys/conf/makeLINT.mk as well chosing
one of the many configurations as LINT.
This is a hack of doing this and keeping it in a separate commit
will allow us to more easily identify and back it out.
Discussed on/with: arch, jhb (as part of the LINT-VIMAGE thread)
MFC after: 1 month
Diffstat (limited to 'sys/ia64/conf')
-rw-r--r-- | sys/ia64/conf/Makefile | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/sys/ia64/conf/Makefile b/sys/ia64/conf/Makefile index 2c006e9..122a7d0 100644 --- a/sys/ia64/conf/Makefile +++ b/sys/ia64/conf/Makefile @@ -1,3 +1,5 @@ # $FreeBSD$ +TARGET=ia64 + .include "${.CURDIR}/../../conf/makeLINT.mk" |