diff options
author | Marcel Moolenaar <marcel@FreeBSD.org> | 2012-10-22 01:18:41 +0000 |
---|---|---|
committer | Marcel Moolenaar <marcel@FreeBSD.org> | 2012-10-22 01:18:41 +0000 |
commit | c175365cec1c7e7a41c0e5ef6ad508516ecf41e0 (patch) | |
tree | 7dfa45acec5e77f85aeea486243e3989c98529c5 /share/Makefile | |
parent | 915f83e6b5409115852059edf75172c7d466c8cd (diff) |
Add ATF to the build. This is may be a bit rought around the egdes,
but committing it helps to get everyone on the same page and makes
sure we make progress.
Tinderbox breakages that are the result of this commit are entirely
the committer's fault -- in other words: buildworld testing on amd64
only.
Credits follow:
Submitted by: Garrett Cooper <yanegomi@gmail.com>
Sponsored by: Isilon Systems
Based on work by: keramida@
Thanks to: gnn@, mdf@, mlaier@, sjg@
Special thanks to: keramida@
Notes
Notes:
svn path=/head/; revision=241823
Diffstat (limited to 'share/Makefile')
-rw-r--r-- | share/Makefile | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/share/Makefile b/share/Makefile index e39da7f2792e..075f116851e0 100644 --- a/share/Makefile +++ b/share/Makefile @@ -5,7 +5,8 @@ # Do not include `info' in the SUBDIR list, it is handled separately. -SUBDIR= ${_colldef} \ +SUBDIR= ${_atf} \ + ${_colldef} \ ${_dict} \ ${_doc} \ dtrace \ @@ -26,10 +27,16 @@ SUBDIR= ${_colldef} \ tabset \ termcap \ ${_timedef} \ + xml \ + xsl \ ${_zoneinfo} # NB: keep these sorted by MK_* knobs +.if ${MK_ATF} != "no" +_atf= atf +.endif + .if ${MK_BSNMP} != "no" _snmp= snmp .endif |