From c64d8d229adfbb74ce6c69f4b8422136c99dca9f Mon Sep 17 00:00:00 2001 From: Tycho Andersen Date: Mon, 2 Nov 2015 21:50:00 +0300 Subject: [PATCH] build: ignore/clean usr/ This directory is generated by the install-crit target, so let's .gitignore it and clean it on `make clean`. Signed-off-by: Tycho Andersen Signed-off-by: Pavel Emelyanov --- .gitignore | 1 + Makefile | 1 + 2 files changed, 2 insertions(+) diff --git a/.gitignore b/.gitignore index af192937b..d1ee8415e 100644 --- a/.gitignore +++ b/.gitignore @@ -33,3 +33,4 @@ protobuf-desc-gen.h criu.pc build .gitid +usr/ diff --git a/Makefile b/Makefile index 197b8b769..aeface315 100644 --- a/Makefile +++ b/Makefile @@ -284,6 +284,7 @@ clean: clean-built $(Q) $(MAKE) -C pycriu $@ $(Q) $(RM) ./*.pyc $(Q) $(RM) -r build + $(Q) $(RM) -r usr distclean: clean $(E) " DISTCLEAN"