summaryrefslogtreecommitdiff
path: root/pkg
diff options
context:
space:
mode:
authorSimon Howard2010-02-05 23:23:48 +0000
committerSimon Howard2010-02-05 23:23:48 +0000
commit3c18831a7ce351d6163fccff8d8813537f27f778 (patch)
tree2282dd9cdf45789485edce0f5be25b2b8f4acdc3 /pkg
parent677729c658b39f075e563fbc9f5a898641f7de54 (diff)
downloadchocolate-doom-3c18831a7ce351d6163fccff8d8813537f27f778.tar.gz
chocolate-doom-3c18831a7ce351d6163fccff8d8813537f27f778.tar.bz2
chocolate-doom-3c18831a7ce351d6163fccff8d8813537f27f778.zip
Rearrange Makefile definitions.
Subversion-branch: /branches/raven-branch Subversion-revision: 1846
Diffstat (limited to 'pkg')
-rw-r--r--pkg/wince/GNUmakefile22
1 files changed, 11 insertions, 11 deletions
diff --git a/pkg/wince/GNUmakefile b/pkg/wince/GNUmakefile
index 82b1f1e3..3b8171aa 100644
--- a/pkg/wince/GNUmakefile
+++ b/pkg/wince/GNUmakefile
@@ -1,35 +1,35 @@
include ../config.make
-all: $(DOOM_CAB) $(HERETIC_CAB) $(HEXEN_CAB)
-
-clean:
- rm -f $(DOOM_CAB) $(HERETIC_CAB) $(HEXEN_CAB)
-
# Doom:
DOOM_CAB=$(PROGRAM_PREFIX)doom-$(PACKAGE_VERSION).cab
DOOM_CFG=doom-cab.cfg
DOOM_DEPS=$(shell ./wince-cabgen -d $(DOOM_CFG))
-$(DOOM_CAB) : $(DOOM_CFG) $(DOOM_DEPS)
- ./wince-cabgen $< $@
-
# Heretic:
HERETIC_CAB=$(PROGRAM_PREFIX)heretic-$(PACKAGE_VERSION).cab
HERETIC_CFG=heretic-cab.cfg
HERETIC_DEPS=$(shell ./wince-cabgen -d $(HERETIC_CFG))
-$(HERETIC_CAB) : $(HERETIC_CFG) $(HERETIC_DEPS)
- ./wince-cabgen $< $@
-
# 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)
+