From d893cce237bd4b280c8272cfa427d9c202c3baf6 Mon Sep 17 00:00:00 2001 From: Patrik Gornicz Date: Thu, 21 Aug 2008 19:11:18 -0400 Subject: [PATCH] added gitclean and gitcleanf to Makefile, insures local copy matches what is being hosted --- src/Makefile | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/src/Makefile b/src/Makefile index b45814a..65787c3 100644 --- a/src/Makefile +++ b/src/Makefile @@ -114,6 +114,16 @@ distclean: clean ${Q1}echo "CLEAN: tags prof gmon.out" ${Q2}rm -f tags prof gmon.out +.PHONY: gitclean +gitclean: + ${Q1}echo "git-clean: show, use gitcleanf to force" + ${Q2}cd ..; git clean -nxd + +.PHONY: gitcleanf +gitcleanf: + ${Q1}echo "git-clean: forced" + ${Q2}cd ..; git clean -fxd + tags: ${SRCS} ctags $^ -- 2.10.2