aboutsummaryrefslogtreecommitdiff
path: root/usr.bin/tn3270
diff options
context:
space:
mode:
authorBruce Evans <bde@FreeBSD.org>1995-09-29 18:32:39 +0000
committerBruce Evans <bde@FreeBSD.org>1995-09-29 18:32:39 +0000
commit6ef8b8ca0c6a5ffca290e8a0304c4addcfa3654a (patch)
tree6f283bca69ed8c83e1451e5114aaa509c5e8cd4a /usr.bin/tn3270
parentf310327a5b2374c9442f9d4b0bf28a81f9d4c8eb (diff)
Notes
Diffstat (limited to 'usr.bin/tn3270')
-rw-r--r--usr.bin/tn3270/Makefile14
1 files changed, 11 insertions, 3 deletions
diff --git a/usr.bin/tn3270/Makefile b/usr.bin/tn3270/Makefile
index f417747001a9..2997c41e3770 100644
--- a/usr.bin/tn3270/Makefile
+++ b/usr.bin/tn3270/Makefile
@@ -1,9 +1,17 @@
# @(#)Makefile 8.1 (Berkeley) 6/6/93
-SUBDIR= tn3270 mset
-
.if !make(install) && !make(distribute)
-SUBDIR+=tools
+# Build tools first so that things don't get built using stale tools and
+# then built again after the tools are freshened.
+#
+# XXX this doesn't fix the problem if the tools are built by running make
+# in the tn3270 subdir, because the Makefile doesn't give the full
+# dependencies of the tools.
+#
+# XXX this doesn't fix the problem for `make depend' either.
+SUBDIR= tools
.endif
+SUBDIR+=tn3270 mset
+
.include <bsd.subdir.mk>