- Abstraction for the sql code (sql.c/h). - New configure script and makefiles. - Restored txt zeny logging code. (r10814) - Rewrote mapserver's sql code - itemdb, mobdb, mapreg, logs. (r10814) - Fixed a precedence issue (&& and ) in char_sql/char.c. (r10833) - Improved db reading code a bit for consistency. (r11077) - Added separate atcommand for mail deletion. (r11077) - Corrected a few messages that said "new" instead of "unread". (r11077) - Broadcast (*) messages now use "*" as the target's name (not ""). (r11077) - Moved StringBuf code from utils.c/h to strlib.c/h. (r11084 r11117) - Some misc login server cleanups (reformatting etc). (r11136) - Corrected/modified some header entries. (r11141 r11147 11148) - Adjusted VS project files. (r11147) - Adjusted the way the sql charserver does item saving. (r11192) - Corrected usage of reserved keyword 'friend' in mmo.h. (r11192) git-svn-id: https://svn.code.sf.net/p/rathena/svn/trunk@11245 54d463be-8e91-2dee-dedb-b68131a5f0ec
57 lines
2.1 KiB
Makefile
57 lines
2.1 KiB
Makefile
COMMON_OBJ = ../common/obj/core.o ../common/obj/socket.o ../common/obj/timer.o \
|
|
../common/obj/db.o ../common/obj/plugins.o ../common/obj/lock.o \
|
|
../common/obj/malloc.o ../common/obj/showmsg.o ../common/obj/utils.o \
|
|
../common/obj/strlib.o ../common/obj/grfio.o \
|
|
../common/obj/mapindex.o ../common/obj/ers.o ../common/obj_sql/sql.o
|
|
COMMON_H = ../common/core.h ../common/socket.h ../common/timer.h ../common/mmo.h \
|
|
../common/version.h ../common/db.h ../common/plugins.h ../common/lock.h \
|
|
../common/malloc.h ../common/showmsg.h ../common/utils.h \
|
|
../common/strlib.h ../common/grfio.h \
|
|
../common/mapindex.h ../common/ers.h ../common/sql.h
|
|
|
|
CHAR_OBJ = char.o inter.o int_party.o int_guild.o int_storage.o int_pet.o int_homun.o
|
|
|
|
HAVE_MYSQL=@HAVE_MYSQL@
|
|
ifeq ($(HAVE_MYSQL),yes)
|
|
CHAR_SERVER_SQL_DEPENDS=$(CHAR_OBJ) $(COMMON_OBJ)
|
|
else
|
|
CHAR_SERVER_SQL_DEPENDS=needs_mysql
|
|
endif
|
|
|
|
#####################################################################
|
|
.PHONY : all char-server_sql clean help
|
|
|
|
all: char-server_sql
|
|
|
|
char-server_sql: $(CHAR_SERVER_SQL_DEPENDS)
|
|
@CC@ @LDFLAGS@ -o ../../char-server_sql@EXEEXT@ $(CHAR_OBJ) $(COMMON_OBJ) @LIBS@ @MYSQL_LIBS@
|
|
|
|
clean:
|
|
rm -f *.o ../../char-server_sql@EXEEXT@
|
|
|
|
help:
|
|
@echo "possible targets are 'char-server_sql' 'all' 'clean' 'help'"
|
|
@echo "'char-server_sql' - char server (SQL version)"
|
|
@echo "'all' - builds all above targets"
|
|
@echo "'clean' - cleans builds and objects"
|
|
@echo "'help' - outputs this message"
|
|
|
|
#####################################################################
|
|
|
|
needs_mysql:
|
|
@echo "MySQL not found or disabled by the configure script"
|
|
@exit 1
|
|
|
|
%.o: %.c
|
|
@CC@ @CFLAGS@ @MYSQL_CFLAGS@ @CPPFLAGS@ -c $(OUTPUT_OPTION) $<
|
|
|
|
# DO NOT DELETE
|
|
|
|
char.o: char.c char.h $(COMMON_H)
|
|
inter.o: inter.c inter.h int_party.h int_guild.h int_storage.h int_pet.h int_homun.h $(COMMON_H)
|
|
int_party.o: int_party.c int_party.h inter.h $(COMMON_H)
|
|
int_guild.o: int_guild.c int_guild.h inter.h $(COMMON_H)
|
|
int_storage.o: int_storage.c int_storage.h char.h $(COMMON_H)
|
|
int_pet.o: int_pet.c int_pet.h inter.h char.h $(COMMON_H)
|
|
int_homun.o: int_homun.c int_homun.h inter.h char.h $(COMMON_H)
|