summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/makefile
diff options
context:
space:
mode:
authorSteven Noonan <steven@uplinklabs.net>2009-10-25 09:07:27 -0700
committerSteven Noonan <steven@uplinklabs.net>2009-10-25 09:08:25 -0700
commita0d7a8518f2a47855512e831b24c584c661aa4af (patch)
treef5bf387e1c596964c223135c03944997c33bfd6b /crawl-ref/source/makefile
parent65c341e7c3bc1c2901b8612fd9f5e967b5da533b (diff)
downloadcrawl-ref-a0d7a8518f2a47855512e831b24c584c661aa4af.tar.gz
crawl-ref-a0d7a8518f2a47855512e831b24c584c661aa4af.zip
makefile: move EXTRA_LIBS to be after CONTRIB_LIBS (fix MinGW tiles build)
Signed-off-by: Steven Noonan <steven@uplinklabs.net>
Diffstat (limited to 'crawl-ref/source/makefile')
-rw-r--r--crawl-ref/source/makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/crawl-ref/source/makefile b/crawl-ref/source/makefile
index e291a6915d..22856a4385 100644
--- a/crawl-ref/source/makefile
+++ b/crawl-ref/source/makefile
@@ -540,7 +540,7 @@ CONTRIB_LIBS += $(LIBLUA) $(LIBSQLITE)
EXTRA_OBJECTS += version.o
-LIBS += $(EXTRA_LIBS) $(CONTRIB_LIBS)
+LIBS += $(CONTRIB_LIBS) $(EXTRA_LIBS)
GAME_DEPENDS := $(DESTTILEFILES) $(OBJECTS) $(EXTRA_OBJECTS) $(CONTRIB_LIBS)
SRC_PKG_BASE := stone_soup
SRC_VERSION := $(shell git describe --tags --long)