aboutsummaryrefslogtreecommitdiffstats
path: root/documentation/Makefile
diff options
context:
space:
mode:
authorScott Rifenbark <scott.m.rifenbark@intel.com>2012-12-06 05:44:23 -0600
committerRichard Purdie <richard.purdie@linuxfoundation.org>2012-12-07 17:13:14 +0000
commitac1981e41adc00b1c52995ddb874d50ed1ede73d (patch)
treea7b0528285207f7ddd73b36671a85bfe3f8b7279 /documentation/Makefile
parent6a6ebdb2ada8832589dc982413b354a15e7339ff (diff)
downloadopenembedded-core-contrib-ac1981e41adc00b1c52995ddb874d50ed1ede73d.tar.gz
documentation: Makefile - Added tarfile to the clean target
Clean operation should also remove the *.tgz file. I added code so that if the user makes the file and specifies the 'clean' target, the generated tarfile is removed. (From yocto-docs rev: 565c147eaa169e287278b87e9bba2979a44be9d5) Signed-off-by: Scott Rifenbark <scott.m.rifenbark@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'documentation/Makefile')
-rw-r--r--documentation/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/documentation/Makefile b/documentation/Makefile
index 6cac5caeaa..6775120fc7 100644
--- a/documentation/Makefile
+++ b/documentation/Makefile
@@ -309,4 +309,4 @@ publish:
fi
clean:
- rm -f $(MANUALS)
+ rm -rf $(MANUALS); rm $(DOC)/$(DOC).tgz;