- as a result, discarded the whole chain of support functions, .c files and includes needed to make that one function run - also removed zlib compile/link dependencies where they are not needed - reduced the whole zlib package into two core include files - adjusted makefiles / project files to reflect this change git-svn-id: https://svn.code.sf.net/p/rathena/svn/trunk@10273 54d463be-8e91-2dee-dedb-b68131a5f0ec
29 lines
1.7 KiB
Makefile
29 lines
1.7 KiB
Makefile
all sql: char-server_sql
|
|
|
|
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_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
|
|
|
|
char-server_sql: char.o inter.o int_party.o int_guild.o int_storage.o int_pet.o int_homun.o itemdb.o $(COMMON_OBJ)
|
|
$(CC) -o ../../$@ $^ $(LIB_S)
|
|
|
|
clean:
|
|
rm -f *.o ../../char-server_sql GNUmakefile
|
|
|
|
# DO NOT DELETE
|
|
|
|
char.o: char.c char.h ../common/strlib.h itemdb.h ../common/showmsg.h
|
|
inter.o: inter.c inter.h int_party.h int_guild.h int_storage.h int_pet.h int_homun.h ../common/mmo.h char.h ../common/socket.h ../common/showmsg.h
|
|
int_party.o: int_party.c int_party.h inter.h ../common/mmo.h char.h ../common/socket.h ../common/timer.h ../common/db.h ../common/showmsg.h
|
|
int_guild.o: int_guild.c int_guild.h inter.h ../common/mmo.h char.h ../common/socket.h ../common/db.h ../common/showmsg.h
|
|
int_storage.o: int_storage.c int_storage.h char.h itemdb.h ../common/showmsg.h
|
|
int_pet.o: int_pet.c int_pet.h inter.h char.h ../common/mmo.h ../common/socket.h ../common/db.h ../common/showmsg.h
|
|
int_homun.o: int_homun.c int_homun.h inter.h char.h ../common/mmo.h ../common/socket.h ../common/db.h ../common/showmsg.h
|
|
itemdb.o: itemdb.c itemdb.h ../common/db.h ../common/mmo.h ../common/showmsg.h
|