From: Holger Schemel Date: Mon, 2 Mar 2015 16:07:11 +0000 (+0100) Subject: added missing Makefile to fully build/clean graphics files (finally) X-Git-Tag: 4.0.0.0-rc1~264 X-Git-Url: https://git.artsoft.org/?p=rocksndiamonds.git;a=commitdiff_plain;h=357ca45d180218d86fd182615ff09f3682dc085b added missing Makefile to fully build/clean graphics files (finally) --- diff --git a/graphics/Makefile b/graphics/Makefile new file mode 100644 index 00000000..9e7b3d41 --- /dev/null +++ b/graphics/Makefile @@ -0,0 +1,29 @@ +# ============================================================================= +# Rocks'n'Diamonds - McDuffin Strikes Back! +# ----------------------------------------------------------------------------- +# (c) 1995-2015 by Artsoft Entertainment +# Holger Schemel +# info@artsoft.org +# http://www.artsoft.org/ +# ----------------------------------------------------------------------------- +# graphics/Makefile +# ============================================================================= + +# ----------------------------------------------------------------------------- +# configuration +# ----------------------------------------------------------------------------- + +GFX_CLASSIC_DIR = gfx_classic + + +# ----------------------------------------------------------------------------- +# build targets +# ----------------------------------------------------------------------------- + +all: gfx_classic_dir + +gfx_classic_dir: + @$(MAKE) -C $(GFX_CLASSIC_DIR) + +clean: + @$(MAKE) -C $(GFX_CLASSIC_DIR) clean