diff options
author | Marcus Comstedt | 2011-04-29 22:25:09 +0200 |
---|---|---|
committer | Marcus Comstedt | 2011-04-29 22:25:09 +0200 |
commit | c3463e77d2d7453e15c703a15df6e44745c7b6b4 (patch) | |
tree | 677bb4c4bc64cfd4a8d07e229303ae69ab2b215a | |
parent | 22c74bf23ec24ed5d5b881f093eb732eb61c60e2 (diff) | |
download | scummvm-rg350-c3463e77d2d7453e15c703a15df6e44745c7b6b4.tar.gz scummvm-rg350-c3463e77d2d7453e15c703a15df6e44745c7b6b4.tar.bz2 scummvm-rg350-c3463e77d2d7453e15c703a15df6e44745c7b6b4.zip |
DC: Create a "dcdist" target for buildbot
The "dcdist" target creates the directory dcdist/scummvm and copies
relevant files from the nightly build into it. This is is they do
not have to be enumerated in the buildbot configuration.
-rw-r--r-- | backends/platform/dc/dreamcast.mk | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/backends/platform/dc/dreamcast.mk b/backends/platform/dc/dreamcast.mk index 8651a2936c..666e03eece 100644 --- a/backends/platform/dc/dreamcast.mk +++ b/backends/platform/dc/dreamcast.mk @@ -35,3 +35,7 @@ ip.txt : $(srcdir)/backends/platform/dc/ip.txt.in ver="V$(VER_MAJOR).$(VER_MINOR).$(VER_PATCH)"; fi; \ sed -e 's/[@]VERSION[@]/'"$$ver"/ -e 's/[@]DATE[@]/$(shell date '+%Y%m%d')/' < $< > $@ + +dcdist : dist + mkdir -p dcdist/scummvm + cp scummvm.elf SCUMMVM.BIN IP.BIN *.PLG dcdist/scummvm/ |