# =============================================================================
# Rocks'n'Diamonds - McDuffin Strikes Back!
# -----------------------------------------------------------------------------
# (c) 1995-2015 by Artsoft Entertainment
#                  Holger Schemel
#                  info@artsoft.org
#                  https://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
