From dbd872ad43815c97aa9442a67af6d489d664f385 Mon Sep 17 00:00:00 2001 From: Michaelangel007 Date: Thu, 25 Aug 2016 08:09:28 -0700 Subject: [PATCH] Add install to makefile --- Makefile | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 52e253d..599fff4 100644 --- a/Makefile +++ b/Makefile @@ -1,4 +1,4 @@ -all: a2b b2d m2s xpack +all: a2b b2d m2s xpack install clean: rm a2b b2d m2s xpack @@ -15,3 +15,7 @@ m2s: xpack: cd src_xpack && $(MAKE) +install: a2b b2d m2s xpack + echo "Installing into /usr/local/bin..." + sudo cp a2b b2d m2s xpack /usr/local/bin/ +