diff options
author | rdivacky <rdivacky@FreeBSD.org> | 2010-06-09 19:57:20 +0000 |
---|---|---|
committer | rdivacky <rdivacky@FreeBSD.org> | 2010-06-09 19:57:20 +0000 |
commit | 392f4db2aa7356094da2fd7ecb7a879068b531dc (patch) | |
tree | af80d689607c24dc146d7ce544edeeb05e7e55c1 /usr.bin/Makefile | |
parent | b45271f609e8549582d20aeb42901fd1bb0de186 (diff) | |
download | FreeBSD-src-392f4db2aa7356094da2fd7ecb7a879068b531dc.zip FreeBSD-src-392f4db2aa7356094da2fd7ecb7a879068b531dc.tar.gz |
Hook clang into the build on i386/amd64/powerpc.
Approved by: ed (mentor)
Diffstat (limited to 'usr.bin/Makefile')
-rw-r--r-- | usr.bin/Makefile | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/usr.bin/Makefile b/usr.bin/Makefile index 2956445..14e3526 100644 --- a/usr.bin/Makefile +++ b/usr.bin/Makefile @@ -35,6 +35,7 @@ SUBDIR= alias \ ${_chkey} \ chpass \ cksum \ + ${_clang} \ cmp \ col \ ${_colcrt} \ @@ -279,6 +280,10 @@ _cpio= cpio _calendar= calendar .endif +.if ${MK_CLANG} != "no" +_clang= clang +.endif + .if ${MK_HESIOD} != "no" _hesinfo= hesinfo .endif |