summaryrefslogtreecommitdiff
path: root/pkg/wince/GNUmakefile
diff options
context:
space:
mode:
authorSimon Howard2013-08-11 17:32:29 +0000
committerSimon Howard2013-08-11 17:32:29 +0000
commit63acb55b18f024db74fd9a7eedbf3137922630c4 (patch)
tree625c361f74f661ab3448f165d8bcc0b154379292 /pkg/wince/GNUmakefile
parentb1d51276a264849ded93ce943eb0283c1f4f1aba (diff)
downloadchocolate-doom-63acb55b18f024db74fd9a7eedbf3137922630c4.tar.gz
chocolate-doom-63acb55b18f024db74fd9a7eedbf3137922630c4.tar.bz2
chocolate-doom-63acb55b18f024db74fd9a7eedbf3137922630c4.zip
Remove Windows CE support.
What support exists is for obsolete devices I no longer possess; I've never been contacted about the port and it's been several years since I even bothered to build a new version. All the extra overrides are clutter that can just be removed. Subversion-branch: /branches/v2-branch Subversion-revision: 2615
Diffstat (limited to 'pkg/wince/GNUmakefile')
-rw-r--r--pkg/wince/GNUmakefile35
1 files changed, 0 insertions, 35 deletions
diff --git a/pkg/wince/GNUmakefile b/pkg/wince/GNUmakefile
deleted file mode 100644
index 3b8171aa..00000000
--- a/pkg/wince/GNUmakefile
+++ /dev/null
@@ -1,35 +0,0 @@
-
-include ../config.make
-
-# Doom:
-
-DOOM_CAB=$(PROGRAM_PREFIX)doom-$(PACKAGE_VERSION).cab
-DOOM_CFG=doom-cab.cfg
-DOOM_DEPS=$(shell ./wince-cabgen -d $(DOOM_CFG))
-
-# Heretic:
-
-HERETIC_CAB=$(PROGRAM_PREFIX)heretic-$(PACKAGE_VERSION).cab
-HERETIC_CFG=heretic-cab.cfg
-HERETIC_DEPS=$(shell ./wince-cabgen -d $(HERETIC_CFG))
-
-# Hexen:
-
-HEXEN_CAB=$(PROGRAM_PREFIX)hexen-$(PACKAGE_VERSION).cab
-HEXEN_CFG=hexen-cab.cfg
-HEXEN_DEPS=$(shell ./wince-cabgen -d $(HEXEN_CFG))
-
-all: $(DOOM_CAB) $(HERETIC_CAB) $(HEXEN_CAB)
-
-$(DOOM_CAB) : $(DOOM_CFG) $(DOOM_DEPS)
- ./wince-cabgen $< $@
-
-$(HERETIC_CAB) : $(HERETIC_CFG) $(HERETIC_DEPS)
- ./wince-cabgen $< $@
-
-$(HEXEN_CAB) : $(HEXEN_CFG) $(HEXEN_DEPS)
- ./wince-cabgen $< $@
-
-clean:
- rm -f $(DOOM_CAB) $(HERETIC_CAB) $(HEXEN_CAB)
-