Added NetBSD support into Makefile
git-svn-id: https://svn.code.sf.net/p/rathena/svn/branches/stable@1384 54d463be-8e91-2dee-dedb-b68131a5f0ec
This commit is contained in:
parent
5036cd21df
commit
4cbae353c0
@ -2,6 +2,7 @@
|
|||||||
Date Added
|
Date Added
|
||||||
|
|
||||||
04/03
|
04/03
|
||||||
|
* Added NetBSD support into Makefile (Still lots of warrnings during compilation [veider]
|
||||||
* Finished Valkyrie. Now it correctly works. Valhallana reborns players to High Novices. [Lupus]
|
* Finished Valkyrie. Now it correctly works. Valhallana reborns players to High Novices. [Lupus]
|
||||||
(added missed kRO condition: to reborn, player shouldn't have money nor items(equipment) )
|
(added missed kRO condition: to reborn, player shouldn't have money nor items(equipment) )
|
||||||
Then Valhallana warps just reborn players to the home city of their main job.
|
Then Valhallana warps just reborn players to the home city of their main job.
|
||||||
|
5
Makefile
5
Makefile
@ -25,6 +25,11 @@ MAKE = gmake
|
|||||||
else
|
else
|
||||||
MAKE = make
|
MAKE = make
|
||||||
endif
|
endif
|
||||||
|
ifeq ($(findstring NetBSD,$(PLATFORM)), NetBSD)
|
||||||
|
MAKE = gmake
|
||||||
|
else
|
||||||
|
MAKE = make
|
||||||
|
endif
|
||||||
|
|
||||||
OPT = -g -O2 -ffast-math -Wall -Wno-sign-compare
|
OPT = -g -O2 -ffast-math -Wall -Wno-sign-compare
|
||||||
# OPT += -DDUMPSTACK -rdynamic
|
# OPT += -DDUMPSTACK -rdynamic
|
||||||
|
Loading…
x
Reference in New Issue
Block a user