diff options
author | Andrei Karas <akaras@inbox.ru> | 2014-11-04 19:52:02 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2016-06-18 02:12:18 +0300 |
commit | 0228e3e93e071c9cfaf3dabb0d18a312f8b37512 (patch) | |
tree | bb64cf307499c235869e407c7d30b6e4caef5285 | |
parent | d0d8058e21f20588c0001cdbdb0f0088d1bb5c01 (diff) | |
download | hercules-0228e3e93e071c9cfaf3dabb0d18a312f8b37512.tar.gz hercules-0228e3e93e071c9cfaf3dabb0d18a312f8b37512.tar.bz2 hercules-0228e3e93e071c9cfaf3dabb0d18a312f8b37512.tar.xz hercules-0228e3e93e071c9cfaf3dabb0d18a312f8b37512.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/ |