diff options
author | Robin Watts | 2007-11-04 17:00:10 +0000 |
---|---|---|
committer | Robin Watts | 2007-11-04 17:00:10 +0000 |
commit | 904dcb4a7b96c2541841f894aa52d99d48e1358d (patch) | |
tree | 9e2bcef4bb9ded13e894fff4c8c762f980e079dd /backends/platform/wince | |
parent | 5ab148c0433b7a09ce2b949f16c27e8ec9074ad2 (diff) | |
download | scummvm-rg350-904dcb4a7b96c2541841f894aa52d99d48e1358d.tar.gz scummvm-rg350-904dcb4a7b96c2541841f894aa52d99d48e1358d.tar.bz2 scummvm-rg350-904dcb4a7b96c2541841f894aa52d99d48e1358d.zip |
Minor tweak to Wince makefile; 'all' target now depends on whether we are
building with plugins or not. These means that weak minded programmers (like
me) no longer need to remember to do "make dist-plugins" instead of
"make dist".
svn-id: r29412
Diffstat (limited to 'backends/platform/wince')
-rw-r--r-- | backends/platform/wince/Makefile | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/backends/platform/wince/Makefile b/backends/platform/wince/Makefile index ef8a376560..3806725264 100644 --- a/backends/platform/wince/Makefile +++ b/backends/platform/wince/Makefile @@ -177,7 +177,13 @@ endif include $(srcdir)/Makefile.common +# Our top level target depends on whether we are building the plugin version +# or not... +ifdef BUILD_PLUGINS +all: dist-plugins +else all: dist +endif dist: ARMscaler.o PocketSCUMM.o $(EXECUTABLE) |