git-svn-id: https://svn.code.sf.net/p/rathena/svn/trunk@462 54d463be-8e91-2dee-dedb-b68131a5f0ec

This commit is contained in:
mc_cameri 2004-12-05 12:20:33 +00:00
parent 3b59f9ce74
commit 94cf3fe716
2 changed files with 9 additions and 1 deletions

View File

@ -110,10 +110,16 @@ clean: src/common/GNUmakefile src/login/GNUmakefile src/char/GNUmakefile src/map
cd src ; cd ladmin ; $(MAKE) $(MKDEF) $@ ; cd .. cd src ; cd ladmin ; $(MAKE) $(MKDEF) $@ ; cd ..
cd src ; cd txt-converter ; cd login ; $(MAKE) $(MKLIB) $@ ; cd .. cd src ; cd txt-converter ; cd login ; $(MAKE) $(MKLIB) $@ ; cd ..
cd src ; cd txt-converter ; cd char ; $(MAKE) $(MKLIB) $@ ; cd .. cd src ; cd txt-converter ; cd char ; $(MAKE) $(MKLIB) $@ ; cd ..
cd src ; cd webserver; $(MAKE) $(MKDEF) $@ ; cd ..
tools: tools:
cd tool && $(MAKE) $(MKDEF) && cd .. cd tool && $(MAKE) $(MKDEF) && cd ..
$(CC) -o setupwizard setupwizard.c $(CC) -o setupwizard setupwizard.c
webserver:
cd src ; cd webserver ; $(MAKE) $(MKDEF) $@ ; cd ..
#webserver: src/webserver/GNUmakefile
src/common/GNUmakefile: src/common/Makefile src/common/GNUmakefile: src/common/Makefile
sed -e 's/$$>/$$^/' src/common/Makefile > src/common/GNUmakefile sed -e 's/$$>/$$^/' src/common/Makefile > src/common/GNUmakefile
@ -133,3 +139,5 @@ src/txt-converter/login/GNUmakefile: src/txt-converter/login/Makefile
sed -e 's/$$>/$$^/' src/txt-converter/login/Makefile > src/txt-converter/login/GNUmakefile sed -e 's/$$>/$$^/' src/txt-converter/login/Makefile > src/txt-converter/login/GNUmakefile
src/txt-converter/char/GNUmakefile: src/txt-converter/char/Makefile src/txt-converter/char/GNUmakefile: src/txt-converter/char/Makefile
sed -e 's/$$>/$$^/' src/txt-converter/char/Makefile > src/txt-converter/char/GNUmakefile sed -e 's/$$>/$$^/' src/txt-converter/char/Makefile > src/txt-converter/char/GNUmakefile
src/webserver/GNUmakefile: src/webserver/Makefile
sed -e 's/$$>/$$^/' src/webserver/Makefile > src/webserver/GNUmakefile

View File

@ -10,7 +10,7 @@ extern int _ShowMessage(const char *string, enum msg_type flag);
/* MSG_XX */ /* MSG_XX */
#define ShowMsg(string,flag) _ShowMessage(string,flag) #define ShowMsg(string,flag) _ShowMessage(string,flag)
// #define DisplayMsg(string,flag) _ShowMessage(string,flag) // #define DisplayMsg(string,flag) _ShowMessage(string,flag)
// #define ShowMessage(string,flag) _ShowMessage(string,flag) #define ShowMessage(string,flag) _ShowMessage(string,flag)
/* MSG_STATUS */ /* MSG_STATUS */
#define ShowStatus(string) _ShowMessage(string,MSG_STATUS) #define ShowStatus(string) _ShowMessage(string,MSG_STATUS)