diff options
author | Andrei Karas <akaras@inbox.ru> | 2014-11-04 19:52:02 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2017-05-29 19:59:03 +0300 |
commit | 66d2152ba78fa41ea70e65f07a2a699fd66da459 (patch) | |
tree | 5296b9e0a579ebeac62545e6c764e0b6c6b4f3a4 | |
parent | 3c3f250be5eddf363ef99721d28dbb42a519698d (diff) | |
download | hercules-66d2152ba78fa41ea70e65f07a2a699fd66da459.tar.gz hercules-66d2152ba78fa41ea70e65f07a2a699fd66da459.tar.bz2 hercules-66d2152ba78fa41ea70e65f07a2a699fd66da459.tar.xz hercules-66d2152ba78fa41ea70e65f07a2a699fd66da459.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/ |