diff options
author | Andrei Karas <akaras@inbox.ru> | 2014-11-04 19:52:02 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2016-02-26 16:51:49 +0300 |
commit | b759132244f73d308ee42dc1c48f1457b45c8136 (patch) | |
tree | 0ad67f51bddd14292006bbe18a4982417a3087a0 | |
parent | 2d322230d47baaf93e9b504042bc65c71a98fc9f (diff) | |
download | hercules-b759132244f73d308ee42dc1c48f1457b45c8136.tar.gz hercules-b759132244f73d308ee42dc1c48f1457b45c8136.tar.bz2 hercules-b759132244f73d308ee42dc1c48f1457b45c8136.tar.xz hercules-b759132244f73d308ee42dc1c48f1457b45c8136.zip |
add install target to make file.
-rw-r--r-- | Makefile.in | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/Makefile.in b/Makefile.in index 3b43b0468..7d20e93c9 100644 --- a/Makefile.in +++ b/Makefile.in @@ -210,3 +210,11 @@ needs_mysql: no_plugins: @echo "Plugins disabled by the configure script" @exit 1 + +install: all + cp -f char-server ../server-data/ + cp -f login-server ../server-data/ + cp -f map-server ../server-data/ + cp -f mapcache ../server-data/ + mkdir ../server-data/plugins/ || true + cp -f plugins/*.so ../server-data/plugins/ |