* Added auto create 'save' folder from 'save-tmpl' when compiling for the first time

git-svn-id: https://svn.code.sf.net/p/rathena/svn/branches/stable@1318 54d463be-8e91-2dee-dedb-b68131a5f0ec
This commit is contained in:
celest 2005-03-29 02:44:22 +00:00
parent fe2688f05c
commit 05997ee535
2 changed files with 4 additions and 0 deletions

View File

@ -1,6 +1,8 @@
Date Added
03/29
* Added auto create 'save' folder from 'save-tmpl' when compiling for the
first time, thanks to Jbain
* Fixed 'use_sql_db' not read properly in SQL char server, thanks to Wallex
* Added three fields to mmo_charstatus - father/mother/child
needed for adoption system [veider]

View File

@ -81,6 +81,8 @@ all: conf txt
conf:
cp -r conf-tmpl conf
rm -rf conf/.svn conf/*/.svn
cp -r save-tmpl save
rm -rf save/.svn
txt : src/common/GNUmakefile src/login/GNUmakefile src/char/GNUmakefile src/map/GNUmakefile src/ladmin/GNUmakefile conf
cd src ; cd common ; $(MAKE) $(MKDEF) $@ ; cd ..