summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source
diff options
context:
space:
mode:
authorSteven Noonan <steven@uplinklabs.net>2009-10-16 11:16:04 -0700
committerSteven Noonan <steven@uplinklabs.net>2009-10-16 11:16:04 -0700
commit6c3f2bb24979f61b40a3a666d17059e0e874e92f (patch)
tree82cfcdd8dca6f914bf17777469e51e51577b943e /crawl-ref/source
parent37d39dff8f3762ea2b9a03bb8a8b66f7b055327c (diff)
downloadcrawl-ref-6c3f2bb24979f61b40a3a666d17059e0e874e92f.tar.gz
crawl-ref-6c3f2bb24979f61b40a3a666d17059e0e874e92f.zip
makefile: fix to specifically reference the self-built lib
Signed-off-by: Steven Noonan <steven@uplinklabs.net>
Diffstat (limited to 'crawl-ref/source')
-rw-r--r--crawl-ref/source/makefile5
1 files changed, 2 insertions, 3 deletions
diff --git a/crawl-ref/source/makefile b/crawl-ref/source/makefile
index 8aa6654d4a..d2a045626c 100644
--- a/crawl-ref/source/makefile
+++ b/crawl-ref/source/makefile
@@ -159,8 +159,6 @@ LIBDBM := sqlite3
INCLUDES_L += -Icontrib/install/include
LIB += -Lcontrib/install/lib
-LIB += -llua -l$(LIBDBM)
-
INCLUDES_L += -Iutil -I.
ifeq ($(OSNAME),MacOS)
@@ -549,6 +547,7 @@ CONTRIB_DEPENDS += $(LIBPCRE)
endif
CONTRIB_DEPENDS += $(LIBLUA) $(LIBSQLITE)
+LIB += $(LIBLUA) $(LIBSQLITE)
GAME_DEPENDS := $(DESTTILEFILES) $(OBJECTS) $(EXTRA_OBJECTS) $(CONTRIB_DEPENDS)
SRC_PKG_BASE := stone_soup
@@ -567,7 +566,7 @@ PKG_EXCLUDES := $(PWD)/misc/src-pkg-excludes.lst
all: $(GAME)
-test: $(GAME)
+test: profile
$(PWD)/$(GAME) -test
##########################################################################