diff options
author | Andrei Karas <akaras@inbox.ru> | 2014-11-04 19:52:02 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2016-10-17 18:28:25 +0300 |
commit | c2a6c3c42bc392fc8c8ee07ec2a0cfb1ccc50826 (patch) | |
tree | 8ba19b4926808fec549f1ee263c3daac743a40cb | |
parent | d94a7f882d47003d0e76eae10aa36360a182a3a1 (diff) | |
download | hercules-c2a6c3c42bc392fc8c8ee07ec2a0cfb1ccc50826.tar.gz hercules-c2a6c3c42bc392fc8c8ee07ec2a0cfb1ccc50826.tar.bz2 hercules-c2a6c3c42bc392fc8c8ee07ec2a0cfb1ccc50826.tar.xz hercules-c2a6c3c42bc392fc8c8ee07ec2a0cfb1ccc50826.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 923254f9a..009d071e0 100644 --- a/Makefile.in +++ b/Makefile.in @@ -218,3 +218,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/ |