From 42af1b89fd6e6fca153be177a915c9e2f8128f80 Mon Sep 17 00:00:00 2001 From: sam Date: Sun, 7 Dec 2003 21:42:40 +0000 Subject: [PATCH] add install rule --- tools/tools/ath/Makefile | 5 +++++ tools/tools/crypto/Makefile | 6 ++++++ 2 files changed, 11 insertions(+) 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