diff options
author | Simon Howard | 2010-01-12 20:15:34 +0000 |
---|---|---|
committer | Simon Howard | 2010-01-12 20:15:34 +0000 |
commit | b6810a29407df69f57cc3fb00922347fbaeb8550 (patch) | |
tree | c715717f1068ddb16a307065b84b12b26cc390ae | |
parent | 92eaebfb7a48f05f6f1b3c571b3a703274ac0111 (diff) | |
download | chocolate-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
-rw-r--r-- | pkg/wince/GNUmakefile | 2 |
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: |