diff options
author | Andrei Karas <akaras@inbox.ru> | 2014-11-04 19:52:02 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2016-03-20 19:32:10 +0300 |
commit | 01249f44f26f8497d6295711308a7ea873f77733 (patch) | |
tree | 07009c64b7dd2f194120db2ae10c61e18ab1e6aa | |
parent | a56e5d9cddae876dd6d7b8c79c96e975185cfeda (diff) | |
download | hercules-01249f44f26f8497d6295711308a7ea873f77733.tar.gz hercules-01249f44f26f8497d6295711308a7ea873f77733.tar.bz2 hercules-01249f44f26f8497d6295711308a7ea873f77733.tar.xz hercules-01249f44f26f8497d6295711308a7ea873f77733.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/ |