diff options
author | Andrei Karas <akaras@inbox.ru> | 2014-11-04 19:52:02 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2015-10-06 20:37:29 +0300 |
commit | c3f17e35d14dc5cba3ef3209a21adb017f89f20f (patch) | |
tree | 44b342ff52b2cc48a73c47ca9d2f0fbc8e0c315f | |
parent | 81dd681f6ffc201bc52adabbe990a018481417f2 (diff) | |
download | hercules-c3f17e35d14dc5cba3ef3209a21adb017f89f20f.tar.gz hercules-c3f17e35d14dc5cba3ef3209a21adb017f89f20f.tar.bz2 hercules-c3f17e35d14dc5cba3ef3209a21adb017f89f20f.tar.xz hercules-c3f17e35d14dc5cba3ef3209a21adb017f89f20f.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 8c7eaa877..808f596bd 100644 --- a/Makefile.in +++ b/Makefile.in @@ -194,3 +194,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/ |