From 357ca45d180218d86fd182615ff09f3682dc085b Mon Sep 17 00:00:00 2001 From: Holger Schemel Date: Mon, 2 Mar 2015 17:07:11 +0100 Subject: [PATCH] added missing Makefile to fully build/clean graphics files (finally) --- graphics/Makefile | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 graphics/Makefile 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 -- 2.34.1