summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/makefile.unix
diff options
context:
space:
mode:
authordshaligram <dshaligram@c06c8d41-db1a-0410-9941-cceddc491573>2006-12-02 12:07:59 +0000
committerdshaligram <dshaligram@c06c8d41-db1a-0410-9941-cceddc491573>2006-12-02 12:07:59 +0000
commitfa3b58bbc845e824e835eda9230abac20528c561 (patch)
tree43a7f5281f61e01a07d8f9a2cc04b4c973e0a0e0 /crawl-ref/source/makefile.unix
parent42d11f45385dc9ec3235e3292ecfc7f7411e764e (diff)
downloadcrawl-ref-fa3b58bbc845e824e835eda9230abac20528c561.tar.gz
crawl-ref-fa3b58bbc845e824e835eda9230abac20528c561.zip
Greedy-explore tweaks: speedup by not double-floodfilling, and handle inability
to pick stuff up gracefully. git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@541 c06c8d41-db1a-0410-9941-cceddc491573
Diffstat (limited to 'crawl-ref/source/makefile.unix')
-rw-r--r--crawl-ref/source/makefile.unix4
1 files changed, 2 insertions, 2 deletions
diff --git a/crawl-ref/source/makefile.unix b/crawl-ref/source/makefile.unix
index c656630acb..ac22286d29 100644
--- a/crawl-ref/source/makefile.unix
+++ b/crawl-ref/source/makefile.unix
@@ -34,7 +34,7 @@ INCLUDES := $(INCLUDES) -Iutil -I.
CFWARN := -Wall -Wwrite-strings \
-Wshadow -pedantic
-CFOTHERS := -fsigned-char -g -D$(OS_TYPE) $(EXTRA_FLAGS)
+CFOTHERS := -fsigned-char -D$(OS_TYPE) $(EXTRA_FLAGS)
ifneq ($(DATADIR),)
CFOTHERS += '-DDATA_DIR_PATH="$(DATADIR)"'
@@ -42,7 +42,7 @@ endif
CFLAGS := $(INCLUDES) $(CFWARN) $(CFOTHERS)
YCFLAGS := $(INCLUDES) $(CFOTHERS)
-
+
# If you have lex and yacc, set DOYACC to y (lowercase y).
DOYACC := y