aboutsummaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorSam Leffler <sam@FreeBSD.org>2003-12-07 21:42:40 +0000
committerSam Leffler <sam@FreeBSD.org>2003-12-07 21:42:40 +0000
commit236d9d937d8a6533a510263b1c981cdc2865501b (patch)
tree0960053c08585e6bdd0d41d0bb141b47577cac7b /tools
parent35d8be69e3899a373f4a2cb653e0c69c48bcc62f (diff)
Notes
Diffstat (limited to 'tools')
-rw-r--r--tools/tools/ath/Makefile5
-rw-r--r--tools/tools/crypto/Makefile6
2 files changed, 11 insertions, 0 deletions
diff --git a/tools/tools/ath/Makefile b/tools/tools/ath/Makefile
index 3104965cbb35..e7dc3a57243e 100644
--- a/tools/tools/ath/Makefile
+++ b/tools/tools/ath/Makefile
@@ -24,6 +24,7 @@
# OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
# SUCH DAMAGE.
#
+BINDIR= /usr/local/bin
ALL= athstats 80211stats
@@ -33,5 +34,9 @@ athstats: athstats.c
${CC} -o athstats athstats.c -lkvm
80211stats: 80211stats.c
${CC} -o 80211stats 80211stats.c
+install: ${ALL}
+ install -g kmem -m 2755 athstats ${DESTDIR}${BINDIR}
+ install 80211stats ${DESTDIR}${BINDIR}
+
clean:
rm -f ${ALL} core a.out
diff --git a/tools/tools/crypto/Makefile b/tools/tools/crypto/Makefile
index 6811eb346a6a..978ea33464f8 100644
--- a/tools/tools/crypto/Makefile
+++ b/tools/tools/crypto/Makefile
@@ -27,6 +27,7 @@
ALL= cryptotest cryptokeytest cryptostats \
ubsecstats hifnstats ipsecstats safestats
+BINDIR= /usr/local/bin
all: ${ALL}
@@ -60,3 +61,8 @@ ipsecstats: ipsecstats.c
clean:
rm -f ${ALL} core a.out
+
+install: ${ALL}
+ for i in ${ALL}; do \
+ install $$i ${DESTDIR}${BINDIR}; \
+ done