summaryrefslogtreecommitdiff
path: root/Makefile.in
diff options
context:
space:
mode:
authorZdenek Kabelac <zkabelac@redhat.com>2015-05-11 16:08:58 +0200
committerZdenek Kabelac <zkabelac@redhat.com>2015-05-11 16:08:58 +0200
commit20e9ec35836fc4dd8064f40068e5be83dbf67bfa (patch)
tree093bc780e7202d32f98f1c991cda3f66986dddab /Makefile.in
parent62e7a6ca1a3479017b026c380a97c9f826b087da (diff)
downloadlvm2-20e9ec35836fc4dd8064f40068e5be83dbf67bfa.tar.gz
makefiles: move clean
Move clean: target below, so it's not a default target to execute.
Diffstat (limited to 'Makefile.in')
-rw-r--r--Makefile.in4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile.in b/Makefile.in
index ac806bb23..a180d1093 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -49,8 +49,6 @@ tools.distclean: test.distclean
endif
DISTCLEAN_DIRS += lcov_reports*
DISTCLEAN_TARGETS += config.cache config.log config.status make.tmpl
-clean:
- $(RM) -r build
include make.tmpl
@@ -103,6 +101,8 @@ conf.generate: tools
VER = LVM2.@LVM_MAJOR@.@LVM_MINOR@.@LVM_PATCHLEVEL@
CLEAN_TARGETS += $(VER).tgz
+clean:
+ $(RM) -r build
dist:
@echo "Generating $(VER).tgz";\