diff options
author | Andrei Karas <akaras@inbox.ru> | 2014-11-04 19:52:02 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2016-07-12 17:20:33 +0300 |
commit | 2b8379d7cc9bfb2f6c30c7299397914e4814d2df (patch) | |
tree | d621a9d2dc2db607647cf6b1c77176635002a5d8 | |
parent | 5a99fc0ef26eaa3095d2bb3a1b4a8758673b6fc7 (diff) | |
download | hercules-2b8379d7cc9bfb2f6c30c7299397914e4814d2df.tar.gz hercules-2b8379d7cc9bfb2f6c30c7299397914e4814d2df.tar.bz2 hercules-2b8379d7cc9bfb2f6c30c7299397914e4814d2df.tar.xz hercules-2b8379d7cc9bfb2f6c30c7299397914e4814d2df.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/ |