diff options
author | Simon Howard | 2010-02-05 23:23:48 +0000 |
---|---|---|
committer | Simon Howard | 2010-02-05 23:23:48 +0000 |
commit | 3c18831a7ce351d6163fccff8d8813537f27f778 (patch) | |
tree | 2282dd9cdf45789485edce0f5be25b2b8f4acdc3 /pkg/wince/GNUmakefile | |
parent | 677729c658b39f075e563fbc9f5a898641f7de54 (diff) | |
download | chocolate-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/wince/GNUmakefile')
-rw-r--r-- | pkg/wince/GNUmakefile | 22 |
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) + |