summaryrefslogtreecommitdiff
path: root/src/map/Makefile
diff options
context:
space:
mode:
authoramber <amber@54d463be-8e91-2dee-dedb-b68131a5f0ec>2004-12-30 06:09:45 +0000
committeramber <amber@54d463be-8e91-2dee-dedb-b68131a5f0ec>2004-12-30 06:09:45 +0000
commit9c6bcfc755263b24a31c5f63e0b0dab2d9a460e0 (patch)
tree6c5f3a13d6edc9016d7a4037ac2a4630be6c108a /src/map/Makefile
parent5493d9e25f0e5e91867ab64ea40dba57f142c76e (diff)
downloadhercules-9c6bcfc755263b24a31c5f63e0b0dab2d9a460e0.tar.gz
hercules-9c6bcfc755263b24a31c5f63e0b0dab2d9a460e0.tar.bz2
hercules-9c6bcfc755263b24a31c5f63e0b0dab2d9a460e0.tar.xz
hercules-9c6bcfc755263b24a31c5f63e0b0dab2d9a460e0.zip
remove SVN_VERSION
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/branches/stable@873 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/map/Makefile')
-rw-r--r--src/map/Makefile6
1 files changed, 2 insertions, 4 deletions
diff --git a/src/map/Makefile b/src/map/Makefile
index 6ac47838c..0dddf6132 100644
--- a/src/map/Makefile
+++ b/src/map/Makefile
@@ -14,12 +14,10 @@ COMMON_OBJ = ../common/core.o ../common/socket.o ../common/timer.o ../common/grf
LIBS = -lz -lm
map-server: txtobj/map.o txtobj/chrif.o txtobj/clif.o txtobj/pc.o txtobj/npc.o txtobj/chat.o txtobj/path.o txtobj/itemdb.o txtobj/mob.o txtobj/script.o txtobj/storage.o txtobj/skill.o txtobj/atcommand.o txtobj/charcommand.o txtobj/battle.o txtobj/intif.o txtobj/trade.o txtobj/party.o txtobj/vending.o txtobj/guild.o txtobj/pet.o txtobj/log.o $(COMMON_OBJ)
- $(CC) -o ../../$@-$(SVN_VERSION) $> $(LIBS)
- cp ../../$@-$(SVN_VERSION) ../../$@
+ $(CC) -o ../../$@ $> $(LIBS)
map-server_sql: sqlobj/map.o sqlobj/chrif.o sqlobj/clif.o sqlobj/pc.o sqlobj/npc.o sqlobj/chat.o sqlobj/path.o sqlobj/itemdb.o sqlobj/mob.o sqlobj/script.o sqlobj/storage.o sqlobj/skill.o sqlobj/atcommand.o sqlobj/charcommand.o sqlobj/battle.o sqlobj/intif.o sqlobj/trade.o sqlobj/party.o sqlobj/vending.o sqlobj/guild.o sqlobj/pet.o sqlobj/mail.o sqlobj/log.o $(COMMON_OBJ)
- $(CC) -o ../../$@-$(SVN_VERSION) $> $(LIB_S)
- cp ../../$@-$(SVN_VERSION) ../../$@
+ $(CC) -o ../../$@ $> $(LIB_S)
txtobj/%.o: %.c
$(COMPILE.c) -DTXT_ONLY $(OUTPUT_OPTION) $<