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/ +