aboutsummaryrefslogtreecommitdiff
path: root/Makefile.common
diff options
context:
space:
mode:
authorRobin Watts2010-03-09 00:43:31 +0000
committerRobin Watts2010-03-09 00:43:31 +0000
commitb84beeb602bcc0849209f4c19dc4a672724231fe (patch)
tree8637c8969d0710b28eeff71ed0c37d007cc6cd0f /Makefile.common
parent6dacac2187e999f06a7bae04dda609669c8c3440 (diff)
downloadscummvm-rg350-b84beeb602bcc0849209f4c19dc4a672724231fe.tar.gz
scummvm-rg350-b84beeb602bcc0849209f4c19dc4a672724231fe.tar.bz2
scummvm-rg350-b84beeb602bcc0849209f4c19dc4a672724231fe.zip
Add missing MKDIR command. This was upsetting the WinCE build.
I can't see how this should upset any other build, and every other rule seems to have this (or a variant of this) anyway, so... svn-id: r48209
Diffstat (limited to 'Makefile.common')
-rw-r--r--Makefile.common1
1 files changed, 1 insertions, 0 deletions
diff --git a/Makefile.common b/Makefile.common
index ff0e4a8b25..e5160bb142 100644
--- a/Makefile.common
+++ b/Makefile.common
@@ -117,6 +117,7 @@ else
# Dumb compile rule, for C++ compilers that don't allow dependency tracking or
# where it is broken (such as GCC 2.95).
.cpp.o:
+ $(QUIET)$(MKDIR) $(*D)
$(QUIET_CXX)$(CXX) $(CXXFLAGS) $(CPPFLAGS) -c $(<) -o $*.o
endif