diff options
author | Andrei Karas <akaras@inbox.ru> | 2014-11-04 19:52:02 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2016-08-09 15:38:52 +0300 |
commit | 8c87250dbc6295fa8d334396c77242da7854893c (patch) | |
tree | ea25923956275ae490da7dc501564bdb1e888634 | |
parent | 45156a7889d1a2ea047e8727f27fcf28806c373c (diff) | |
download | hercules-8c87250dbc6295fa8d334396c77242da7854893c.tar.gz hercules-8c87250dbc6295fa8d334396c77242da7854893c.tar.bz2 hercules-8c87250dbc6295fa8d334396c77242da7854893c.tar.xz hercules-8c87250dbc6295fa8d334396c77242da7854893c.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/ |