From d2572f94d229ede57a9d5887c3f5de981d30ab43 Mon Sep 17 00:00:00 2001 From: rubidium Date: Sun, 5 Sep 2010 21:50:59 +0000 Subject: [PATCH] (svn r20752) -Change: move removal of bin/data/openttd.grf from distclean to maintainer-clean --- Makefile.grf.in | 3 +-- Makefile.in | 3 +++ 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/Makefile.grf.in b/Makefile.grf.in index 9be2c7a260..6aa5068b6a 100644 --- a/Makefile.grf.in +++ b/Makefile.grf.in @@ -73,9 +73,8 @@ $(OBJS_DIR)/openttd.grf: $(PCX_FILES) $(NFO_FILES) $(OBJS_DIR)/sprites clean: $(Q)rm -f *.bak *.grf -# Clean up temporary files and result of generation, i.e. the grfs. +# Clean up temporary files mrproper: clean $(Q)rm -fr sprites - $(Q)rm -f $(BIN_DIR)/openttd.grf .PHONY: all mrproper depend clean diff --git a/Makefile.in b/Makefile.in index 99f12462c3..054466745e 100644 --- a/Makefile.in +++ b/Makefile.in @@ -147,6 +147,9 @@ mrproper: $(Q)rm -rf $(BIN_DIR)/ai/regression/content_download $(BIN_DIR)/ai/regression/save $(BIN_DIR)/ai/regression/scenario distclean: mrproper +maintainer-clean: distclean + $(Q)rm -f $(BIN_DIR)/data/openttd.grf + depend: @for dir in $(SRC_DIRS); do \ $(MAKE) -C $$dir depend; \