diff options
author | Andrei Karas <akaras@inbox.ru> | 2014-11-04 19:52:02 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2018-04-06 20:33:16 +0300 |
commit | 6ff375d6a51c434c0f1fded52efc552a4109453c (patch) | |
tree | ec2cca9ac2b3ba7652189e3d581db6a1f4031c76 | |
parent | bd05f60a722216a82439c7dc558c247dc6ee66be (diff) | |
download | hercules-6ff375d6a51c434c0f1fded52efc552a4109453c.tar.gz hercules-6ff375d6a51c434c0f1fded52efc552a4109453c.tar.bz2 hercules-6ff375d6a51c434c0f1fded52efc552a4109453c.tar.xz hercules-6ff375d6a51c434c0f1fded52efc552a4109453c.zip |
add install target to make file.
-rw-r--r-- | Makefile.in | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/Makefile.in b/Makefile.in index 923254f9a..30e0ea792 100644 --- a/Makefile.in +++ b/Makefile.in @@ -218,3 +218,10 @@ 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/ + mkdir ../server-data/plugins/ || true + cp -f plugins/*.so ../server-data/plugins/ |