aboutsummaryrefslogtreecommitdiff
path: root/Makefile.common
diff options
context:
space:
mode:
authorMax Horn2003-03-07 18:41:27 +0000
committerMax Horn2003-03-07 18:41:27 +0000
commitbdd2c50af9fb208dcb40692f8d2d5bf67ee0ab53 (patch)
tree4453465af01094384576854fbf91e7b0c5ef5d56 /Makefile.common
parent5d11697441230712c4ffe4c2317adfded922a0a1 (diff)
downloadscummvm-rg350-bdd2c50af9fb208dcb40692f8d2d5bf67ee0ab53.tar.gz
scummvm-rg350-bdd2c50af9fb208dcb40692f8d2d5bf67ee0ab53.tar.bz2
scummvm-rg350-bdd2c50af9fb208dcb40692f8d2d5bf67ee0ab53.zip
small tweak to the hack to fix the static/bundle targets on OS X
svn-id: r6750
Diffstat (limited to 'Makefile.common')
-rw-r--r--Makefile.common4
1 files changed, 3 insertions, 1 deletions
diff --git a/Makefile.common b/Makefile.common
index 17ea524c02..4ad756ff08 100644
--- a/Makefile.common
+++ b/Makefile.common
@@ -39,8 +39,10 @@ MODULES += \
# Include the build instructions for all modules
-include $(patsubst %,%/module.mk,$(MODULES))
+# HACK temporary fix to get compilation on OS X (and possibly others) working again
+OBJS:=common/engine.o $(OBJS)
-scummvm$(EXEEXT): common/engine.o $(OBJS)
+scummvm$(EXEEXT): $(OBJS)
$(CXX) $(LDFLAGS) -o $@ $+ $(LIBS)
clean: