aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMax Horn2007-12-01 17:56:24 +0000
committerMax Horn2007-12-01 17:56:24 +0000
commitc43782a5dfbb1e7a14db1fc629330efe59724610 (patch)
tree72c1f685375fcc786ac08aaa7cf40c7a0148cf84
parentd4831be986e88edfc0384c2482a401b20128218f (diff)
downloadscummvm-rg350-c43782a5dfbb1e7a14db1fc629330efe59724610.tar.gz
scummvm-rg350-c43782a5dfbb1e7a14db1fc629330efe59724610.tar.bz2
scummvm-rg350-c43782a5dfbb1e7a14db1fc629330efe59724610.zip
vpath handling for C, Objective-C and soem more asm variants
svn-id: r29683
-rwxr-xr-xconfigure5
1 files changed, 4 insertions, 1 deletions
diff --git a/configure b/configure
index 9d6dc40142..5e38015ef2 100755
--- a/configure
+++ b/configure
@@ -1673,9 +1673,12 @@ echo "Creating Makefile"
cat > Makefile << EOF
# -------- Generated by configure -----------
srcdir = $_srcdir
-vpath %.cpp \$(srcdir)
vpath %.h \$(srcdir)
+vpath %.cpp \$(srcdir)
+vpath %.c \$(srcdir)
+vpath %.m \$(srcdir)
vpath %.asm \$(srcdir)
+vpath %.s \$(srcdir)
include \$(srcdir)/Makefile
EOF