summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authordshaligram <dshaligram@c06c8d41-db1a-0410-9941-cceddc491573>2007-10-21 17:30:50 +0000
committerdshaligram <dshaligram@c06c8d41-db1a-0410-9941-cceddc491573>2007-10-21 17:30:50 +0000
commitd741c66e9789663927c2adb0cd9e361b93e80e0e (patch)
treede0ffebb15e8eb9942f25d0143898d797214265d
parent3a2809f83810330c6fc5fa16f385ef7fdac0f26d (diff)
downloadcrawl-ref-d741c66e9789663927c2adb0cd9e361b93e80e0e.tar.gz
crawl-ref-d741c66e9789663927c2adb0cd9e361b93e80e0e.zip
Fixed bad Lua dependency (Iaido).
git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/branches/stone_soup-0.3@2509 c06c8d41-db1a-0410-9941-cceddc491573
-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 8af0e759b1..36ee1ef1f8 100644
--- a/crawl-ref/source/makefile.unix
+++ b/crawl-ref/source/makefile.unix
@@ -145,7 +145,7 @@ ifeq ($(YACC),)
DOYACC :=
endif
-GAME_DEPENDS := $(EXTRA_DEPENDS) $(OBJECTS)
+GAME_DEPENDS := $(LUASRC)$(LUALIBA) $(EXTRA_DEPENDS) $(OBJECTS)
SRC_PKG_BASE := stone_soup
SRC_VERSION := $(shell egrep 'VER_NUM *".*"' version.h | \
egrep -o '[0-9]\.[0-9](\.[0-9])?')
@@ -260,7 +260,7 @@ distclean: clean clean-lua clean-sql
$(DELETE) *.lab
$(DELETE) $(DEPENDENCY_MKF)
-$(GAME): $(LUASRC)$(LUALIBA) $(GAME_DEPENDS)
+$(GAME): $(GAME_DEPENDS)
${CXX} ${LDFLAGS} $(CFLAGS) $(OBJECTS) -o $(GAME) $(LIB)
debug: $(GAME_DEPENDS)