diff options
author | Andrei Karas <akaras@inbox.ru> | 2014-11-04 19:52:02 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2018-01-16 22:09:33 +0300 |
commit | 015c346f4cc8a8a8a0afcd20061303c2e60b551b (patch) | |
tree | 3917896d84936f8f1e95df6c3985fb8c3761fd1c /Makefile.in | |
parent | d49bdf479e4fcd6e62071e07822ae57260e97b1a (diff) | |
download | hercules-015c346f4cc8a8a8a0afcd20061303c2e60b551b.tar.gz hercules-015c346f4cc8a8a8a0afcd20061303c2e60b551b.tar.bz2 hercules-015c346f4cc8a8a8a0afcd20061303c2e60b551b.tar.xz hercules-015c346f4cc8a8a8a0afcd20061303c2e60b551b.zip |
add install target to make file.
Diffstat (limited to 'Makefile.in')
-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/ |