- Replaced more -> rAthena (follow up to r15251).

git-svn-id: https://svn.code.sf.net/p/rathena/svn/trunk@16195 54d463be-8e91-2dee-dedb-b68131a5f0ec
This commit is contained in:
brianluau
2012-06-01 04:06:10 +00:00
parent d960aa3bee
commit 29749ceaa8
36 changed files with 82 additions and 84 deletions

View File

@@ -118,33 +118,33 @@ no_plugins:
install: conf/%.conf conf/%.txt
$(shell read -p "WARNING: This target does not work properly yet. Press Ctrl+C to cancel or Enter to continue.")
$(shell mkdir -p /opt/eathena/bin/)
$(shell mkdir -p /opt/eathena/etc/eathena/)
$(shell mkdir -p /opt/eathena/var/log/eathena/)
$(shell mv save /opt/eathena/etc/eathena/save)
$(shell mv db /opt/eathena/etc/eathena/db)
$(shell mv conf /opt/eathena/etc/eathena/conf)
$(shell mv npc /opt/eathena/etc/eathena/npc)
$(shell mv log/* /opt/eathena/var/log/eathena/)
$(shell cp *-server* /opt/eathena/bin/)
$(shell ln -s /opt/eathena/etc/eathena/save/ /opt/eathena/bin/)
$(shell ln -s /opt/eathena/etc/eathena/db/ /opt/eathena/bin/)
$(shell ln -s /opt/eathena/etc/eathena/conf/ /opt/eathena/bin/)
$(shell ln -s /opt/eathena/etc/eathena/npc/ /opt/eathena/bin/)
$(shell ln -s /opt/eathena/var/log/eathena/ /opt/eathena/bin/log)
$(shell mkdir -p /opt/rathena/bin/)
$(shell mkdir -p /opt/rathena/etc/rathena/)
$(shell mkdir -p /opt/rathena/var/log/rathena/)
$(shell mv save /opt/rathena/etc/rathena/save)
$(shell mv db /opt/rathena/etc/rathena/db)
$(shell mv conf /opt/rathena/etc/rathena/conf)
$(shell mv npc /opt/rathena/etc/rathena/npc)
$(shell mv log/* /opt/rathena/var/log/rathena/)
$(shell cp *-server* /opt/rathena/bin/)
$(shell ln -s /opt/rathena/etc/rathena/save/ /opt/rathena/bin/)
$(shell ln -s /opt/rathena/etc/rathena/db/ /opt/rathena/bin/)
$(shell ln -s /opt/rathena/etc/rathena/conf/ /opt/rathena/bin/)
$(shell ln -s /opt/rathena/etc/rathena/npc/ /opt/rathena/bin/)
$(shell ln -s /opt/rathena/var/log/rathena/ /opt/rathena/bin/log)
bin-clean:
$(shell rm /opt/eathena/bin/login-server*)
$(shell rm /opt/eathena/bin/char-server*)
$(shell rm /opt/eathena/bin/map-server*)
$(shell rm /opt/rathena/bin/login-server*)
$(shell rm /opt/rathena/bin/char-server*)
$(shell rm /opt/rathena/bin/map-server*)
uninstall:
$(shell read -p "WARNING: This target does not work properly yet. Press Ctrl+C to cancel or Enter to continue.")
bin-clean
$(shell rm /opt/eathena/bin/save)
$(shell rm /opt/eathena/bin/db)
$(shell rm /opt/eathena/bin/conf)
$(shell rm /opt/eathena/bin/npc)
$(shell rm /opt/eathena/bin/log)
$(shell rm -rf /opt/eathena/etc/eathena)
$(shell rm -rf /opt/eathena/var/log/eathena)
$(shell rm /opt/rathena/bin/save)
$(shell rm /opt/rathena/bin/db)
$(shell rm /opt/rathena/bin/conf)
$(shell rm /opt/rathena/bin/npc)
$(shell rm /opt/rathena/bin/log)
$(shell rm -rf /opt/rathena/etc/rathena)
$(shell rm -rf /opt/rathena/var/log/rathena)