diff options
author | Max Horn | 2008-09-14 21:39:45 +0000 |
---|---|---|
committer | Max Horn | 2008-09-14 21:39:45 +0000 |
commit | 57192253675b33d19d4ce064c0f0fec2d6e4feb7 (patch) | |
tree | 3a5b2a51b85b0e7a21992f200d9ce275cdaeddd2 /backends/platform/ds/arm9/makefile | |
parent | 77273facda2a01823755f46f9af765aff0ce3d4b (diff) | |
download | scummvm-rg350-57192253675b33d19d4ce064c0f0fec2d6e4feb7.tar.gz scummvm-rg350-57192253675b33d19d4ce064c0f0fec2d6e4feb7.tar.bz2 scummvm-rg350-57192253675b33d19d4ce064c0f0fec2d6e4feb7.zip |
Changed VPATH to vpath, to allow building NDS port in parallel to another port (for the records, this patch went to Neil in January, and he didn't complain)
svn-id: r34544
Diffstat (limited to 'backends/platform/ds/arm9/makefile')
-rw-r--r-- | backends/platform/ds/arm9/makefile | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/backends/platform/ds/arm9/makefile b/backends/platform/ds/arm9/makefile index 7472a32218..bcbf8b8bea 100644 --- a/backends/platform/ds/arm9/makefile +++ b/backends/platform/ds/arm9/makefile @@ -67,7 +67,12 @@ endif # NOTE: The header and libs for the debugger is assumed to be in the libnds # folder. -VPATH = $(srcdir) +vpath %.h $(srcdir) +vpath %.cpp $(srcdir) +vpath %.c $(srcdir) +vpath %.m $(srcdir) +vpath %.asm $(srcdir) +vpath %.s $(srcdir) # Command to build libmad is: # ./configure --host=arm-elf --enable-speed --enable-sso -enable-fpm=arm CFLAGS='-specs=ds_arm9.specs -mthumb-interwork' |