git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@4868 c06c8d41-db1a-0410-9941-cceddc491573
SXQ32Z7ZILMUYSDTK3WE6OOEBYZURCJIUDHT3PXVPV44CBZTPGJQC # If you're using UNICODE_GLYPHS=y, and have a preferred Unicode# (UTF-8) locale you want Crawl to use, you can set it here. The# default is en_US.UTF-8. If you'd prefer that Crawl use the locale# as set in your environment LC_* variables, use UNICODE_LOCALE = .UNICODE_LOCALE =
ifeq ($(UNICODE_GLYPHS),y)# Include path for (n)curses with Unicode support.INCLUDES = -I/usr/include/ncursesw# Your ncurses library may include Unicode support, and you may not have a# separate libncursesw; in that case, change this line accordingly.LIBCURS = ncurseswEXTRA_FLAGS += -DUNICODE_GLYPHS# The standard ncurses library also supports Unicode on Mac OS/Darwin.ifeq ($(shell uname),Darwin)LIBCURS = ncursesendifelse# Include path for curses or ncurses (non-Unicode).INCLUDES = -I/usr/include/ncursesLIBCURS = ncursesendif
CFWARN := -Wall -Wwrite-strings \-Wshadow -pedantic
ifneq ($(strip $(SAVEDIR)),)CFOTHERS += '-DSAVE_DIR_PATH="$(strip $(SAVEDIR))"'endififneq ($(strip $(DATADIR)),)CFOTHERS += '-DDATA_DIR_PATH="$(strip $(DATADIR))"'endififeq ($(strip $(UNICODE_GLYPHS)),y)# Include path for (n)curses with Unicode support.INCLUDES += -I/usr/include/ncursesw# Your ncurses library may include Unicode support, and you may not have a# separate libncursesw; in that case, change this line accordingly.LIBCURS = ncurseswCFOTHERS += -DUNICODE_GLYPHS