X-Git-Url: https://git.artsoft.org/?a=blobdiff_plain;ds=sidebyside;f=graphics%2Fgfx_classic%2FMakefile;fp=graphics%2Fgfx_classic%2FMakefile;h=7caa356e8200b0dae60e3f4ae792e6a0913c9d2c;hb=c9e98e12c811095344a7d06360a0b2b7beccc7cf;hp=0000000000000000000000000000000000000000;hpb=60afa468cde898a3c8897e5d0e15e412fbfaa9e5;p=rocksndiamonds.git diff --git a/graphics/gfx_classic/Makefile b/graphics/gfx_classic/Makefile new file mode 100644 index 00000000..7caa356e --- /dev/null +++ b/graphics/gfx_classic/Makefile @@ -0,0 +1,60 @@ +# ============================================================================= +# Rocks'n'Diamonds - McDuffin Strikes Back! +# ----------------------------------------------------------------------------- +# (c) 1995-2015 by Artsoft Entertainment +# Holger Schemel +# info@artsoft.org +# http://www.artsoft.org/ +# ----------------------------------------------------------------------------- +# graphics/gfx_classic/Makefile +# ============================================================================= + +# ----------------------------------------------------------------------------- +# configuration +# ----------------------------------------------------------------------------- + +RND = ../rocksndiamonds + +RM = rm -f + +EXT = pcx + +FILES = RocksBusy.$(EXT) \ + RocksCE.$(EXT) \ + RocksDC.$(EXT) \ + RocksDC2.$(EXT) \ + RocksDoor.$(EXT) \ + RocksEMC.$(EXT) \ + RocksElements.$(EXT) \ + RocksFontBig.$(EXT) \ + RocksFontDC.$(EXT) \ + RocksFontEM.$(EXT) \ + RocksFontMedium.$(EXT) \ + RocksFontSmall.$(EXT) \ + RocksHeroes.$(EXT) \ + RocksMore.$(EXT) \ + RocksSP.$(EXT) \ + RocksScreen.$(EXT) \ + RocksToons.$(EXT) + +# FILES_GENERATED = RocksCE.$(EXT) + + +# ----------------------------------------------------------------------------- +# build targets +# ----------------------------------------------------------------------------- + +all: $(FILES) + +%.pcx: %.ilbm + ilbmtoppm $< | ppmtopcx > $@ + +RocksCE.ilbm: RocksCE-template.ilbm + $(RND) -e "create CE image RocksCE.bmp" + bmptoppm RocksCE.bmp | ppmtoilbm > RocksCE.ilbm + $(RM) RocksCE.bmp + +clean-gfx: + @for i in $(FILES); do \ + $(RM) $$i; \ + done