1
0
mirror of git://sourceware.org/git/lvm2.git synced 2024-12-21 13:34:40 +03:00

makefiles: move clean

Move clean: target below, so it's not a default target to execute.
This commit is contained in:
Zdenek Kabelac 2015-05-11 16:08:58 +02:00
parent 62e7a6ca1a
commit 20e9ec3583

View File

@ -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";\