diff options
author | Simon Howard | 2010-01-05 15:52:12 +0000 |
---|---|---|
committer | Simon Howard | 2010-01-05 15:52:12 +0000 |
commit | 860a17497bdc189f78f5a0bca000a0451d5ae624 (patch) | |
tree | 9dfe693c8cf461a262e9aef89e4011d3e9e842af /pkg/wince | |
parent | 37325bbfc1f71111715cf2f4ef2918b6cc5c0ff1 (diff) | |
download | chocolate-doom-860a17497bdc189f78f5a0bca000a0451d5ae624.tar.gz chocolate-doom-860a17497bdc189f78f5a0bca000a0451d5ae624.tar.bz2 chocolate-doom-860a17497bdc189f78f5a0bca000a0451d5ae624.zip |
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
Diffstat (limited to 'pkg/wince')
-rw-r--r-- | pkg/wince/GNUmakefile (renamed from pkg/wince/GNUmakefile.am) | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/pkg/wince/GNUmakefile.am b/pkg/wince/GNUmakefile index e710e679..073346d7 100644 --- a/pkg/wince/GNUmakefile.am +++ b/pkg/wince/GNUmakefile @@ -1,11 +1,9 @@ +include ../config.make + DEPS=$(shell ./wince-cabgen -d $(CONFIG_FILE)) CONFIG_FILE=wince-cab.cfg -OUTPUT_FILE=@PACKAGE_TARNAME@-@PACKAGE_VERSION@.cab - -EXTRA_DIST=wince-cabgen $(CONFIG_FILE) - -noinst_DATA = $(OUTPUT_FILE) +OUTPUT_FILE=$(PACKAGE_TARNAME)-$(PACKAGE_VERSION).cab $(OUTPUT_FILE) : $(CONFIG_FILE) $(DEPS) ./wince-cabgen $< $@ |