summaryrefslogtreecommitdiff
path: root/src/map/Makefile.in
diff options
context:
space:
mode:
authorLupus <Lupus@54d463be-8e91-2dee-dedb-b68131a5f0ec>2008-02-22 17:00:59 +0000
committerLupus <Lupus@54d463be-8e91-2dee-dedb-b68131a5f0ec>2008-02-22 17:00:59 +0000
commit7b595ae429f84872a3004e24ee74ffe905500f22 (patch)
tree8865e2506667fe19250f9d04b9f95071e922fcbc /src/map/Makefile.in
parenta2056f98102dcb72c52139f372fb98f3084616c8 (diff)
downloadhercules-7b595ae429f84872a3004e24ee74ffe905500f22.tar.gz
hercules-7b595ae429f84872a3004e24ee74ffe905500f22.tar.bz2
hercules-7b595ae429f84872a3004e24ee74ffe905500f22.tar.xz
hercules-7b595ae429f84872a3004e24ee74ffe905500f22.zip
Added $(CUSTOM_CFLAGS) into all Makefile.in to provide any custom defs directly to all sub make files
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@12230 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/map/Makefile.in')
-rw-r--r--src/map/Makefile.in4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/map/Makefile.in b/src/map/Makefile.in
index 4276b976a..7799b43ce 100644
--- a/src/map/Makefile.in
+++ b/src/map/Makefile.in
@@ -90,10 +90,10 @@ map-server_sql: obj_sql $(MAP_SQL_OBJ) $(COMMON_OBJ) $(COMMON_SQL_OBJ)
# map object files
obj_txt/%.o: %.c $(MAP_H) $(COMMON_H)
- @CC@ @CFLAGS@ $(PCRE_CFLAGS) -DTXT_ONLY @CPPFLAGS@ -c $(OUTPUT_OPTION) $<
+ @CC@ @CFLAGS@ $(PCRE_CFLAGS) $(CUSTOM_CFLAGS) -DTXT_ONLY @CPPFLAGS@ -c $(OUTPUT_OPTION) $<
obj_sql/%.o: %.c $(MAP_H) $(COMMON_H) $(COMMON_SQL_H)
- @CC@ @CFLAGS@ $(PCRE_CFLAGS) @MYSQL_CFLAGS@ @CPPFLAGS@ -c $(OUTPUT_OPTION) $<
+ @CC@ @CFLAGS@ $(PCRE_CFLAGS) $(CUSTOM_CFLAGS) @MYSQL_CFLAGS@ @CPPFLAGS@ -c $(OUTPUT_OPTION) $<
# missing common object files
../common/obj_all/%.o: