aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMax Horn2003-03-07 17:05:22 +0000
committerMax Horn2003-03-07 17:05:22 +0000
commit5d11697441230712c4ffe4c2317adfded922a0a1 (patch)
tree05de112339902af962ccdd77ea761dc735f1a365
parent4efe7260f1b78593f57b3b53f45338bd5a594768 (diff)
downloadscummvm-rg350-5d11697441230712c4ffe4c2317adfded922a0a1.tar.gz
scummvm-rg350-5d11697441230712c4ffe4c2317adfded922a0a1.tar.bz2
scummvm-rg350-5d11697441230712c4ffe4c2317adfded922a0a1.zip
small fix to my build hack
svn-id: r6749
-rw-r--r--Makefile.common4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile.common b/Makefile.common
index 2956554949..17ea524c02 100644
--- a/Makefile.common
+++ b/Makefile.common
@@ -40,8 +40,8 @@ MODULES += \
-include $(patsubst %,%/module.mk,$(MODULES))
-scummvm$(EXEEXT): $(OBJS)
- $(CXX) $(LDFLAGS) -o $@ common/engine.o $+ $(LIBS)
+scummvm$(EXEEXT): common/engine.o $(OBJS)
+ $(CXX) $(LDFLAGS) -o $@ $+ $(LIBS)
clean:
$(RM) $(OBJS) scummvm$(EXEEXT)