From 860a17497bdc189f78f5a0bca000a0451d5ae624 Mon Sep 17 00:00:00 2001 From: Simon Howard Date: Tue, 5 Jan 2010 15:52:12 +0000 Subject: Move config.make up to pkg/ directory. Use static makefiles to generate all packages, rather than dynamically generated makefiles. Add pkg/osx to dist. Make OS X staging directory depend on top level documentation files. Generate CMDLINE as part of standard build if it is not already present. Set svn:ignore properties. Subversion-branch: /trunk/chocolate-doom Subversion-revision: 1790 --- pkg/wince/GNUmakefile | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 pkg/wince/GNUmakefile (limited to 'pkg/wince/GNUmakefile') diff --git a/pkg/wince/GNUmakefile b/pkg/wince/GNUmakefile new file mode 100644 index 00000000..073346d7 --- /dev/null +++ b/pkg/wince/GNUmakefile @@ -0,0 +1,10 @@ + +include ../config.make + +DEPS=$(shell ./wince-cabgen -d $(CONFIG_FILE)) +CONFIG_FILE=wince-cab.cfg +OUTPUT_FILE=$(PACKAGE_TARNAME)-$(PACKAGE_VERSION).cab + +$(OUTPUT_FILE) : $(CONFIG_FILE) $(DEPS) + ./wince-cabgen $< $@ + -- cgit v1.2.3 From 6fb7afc47cb78584d19ccb10284dd20243b06540 Mon Sep 17 00:00:00 2001 From: Simon Howard Date: Tue, 5 Jan 2010 17:20:58 +0000 Subject: Add "clean" target to package makefiles. Subversion-branch: /trunk/chocolate-doom Subversion-revision: 1791 --- pkg/wince/GNUmakefile | 3 +++ 1 file changed, 3 insertions(+) (limited to 'pkg/wince/GNUmakefile') diff --git a/pkg/wince/GNUmakefile b/pkg/wince/GNUmakefile index 073346d7..c237922e 100644 --- a/pkg/wince/GNUmakefile +++ b/pkg/wince/GNUmakefile @@ -8,3 +8,6 @@ OUTPUT_FILE=$(PACKAGE_TARNAME)-$(PACKAGE_VERSION).cab $(OUTPUT_FILE) : $(CONFIG_FILE) $(DEPS) ./wince-cabgen $< $@ +clean: + rm -f $(OUTPUT_FILE) + -- cgit v1.2.3 From b6810a29407df69f57cc3fb00922347fbaeb8550 Mon Sep 17 00:00:00 2001 From: Simon Howard Date: Tue, 12 Jan 2010 20:15:34 +0000 Subject: Strip executables when building Windows CE packages. Subversion-branch: /trunk/chocolate-doom Subversion-revision: 1810 --- pkg/wince/GNUmakefile | 2 ++ 1 file changed, 2 insertions(+) (limited to 'pkg/wince/GNUmakefile') 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: -- cgit v1.2.3