summaryrefslogtreecommitdiff
path: root/pkg
diff options
context:
space:
mode:
authorSimon Howard2010-01-12 20:15:34 +0000
committerSimon Howard2010-01-12 20:15:34 +0000
commitb6810a29407df69f57cc3fb00922347fbaeb8550 (patch)
treec715717f1068ddb16a307065b84b12b26cc390ae /pkg
parent92eaebfb7a48f05f6f1b3c571b3a703274ac0111 (diff)
downloadchocolate-doom-b6810a29407df69f57cc3fb00922347fbaeb8550.tar.gz
chocolate-doom-b6810a29407df69f57cc3fb00922347fbaeb8550.tar.bz2
chocolate-doom-b6810a29407df69f57cc3fb00922347fbaeb8550.zip
Strip executables when building Windows CE packages.
Subversion-branch: /trunk/chocolate-doom Subversion-revision: 1810
Diffstat (limited to 'pkg')
-rw-r--r--pkg/wince/GNUmakefile2
1 files changed, 2 insertions, 0 deletions
diff --git a/pkg/wince/GNUmakefile b/pkg/wince/GNUmakefile
index c237922e..b6acc3b8 100644
--- a/pkg/wince/GNUmakefile
+++ b/pkg/wince/GNUmakefile
@@ -2,10 +2,12 @@
include ../config.make
DEPS=$(shell ./wince-cabgen -d $(CONFIG_FILE))
+EXECUTABLES=$(filter %.exe, $(DEPS))
CONFIG_FILE=wince-cab.cfg
OUTPUT_FILE=$(PACKAGE_TARNAME)-$(PACKAGE_VERSION).cab
$(OUTPUT_FILE) : $(CONFIG_FILE) $(DEPS)
+ $(STRIP) $(EXECUTABLES)
./wince-cabgen $< $@
clean: