mirror of
git://sourceware.org/git/lvm2.git
synced 2024-12-21 13:34:40 +03:00
Fix Makefile to take into account dmsetup's reconfiguration.
This commit is contained in:
parent
e2ac2ad9bc
commit
3649fa9e41
@ -1,5 +1,6 @@
|
||||
Version 1.02.37 -
|
||||
=================================
|
||||
Fix Makefile to take into account dmsetup's reconfiguration.
|
||||
Restore umask when device node creation fails.
|
||||
Fix mirror table CTR code to handle 'block_on_error' and 'cluster' features
|
||||
|
||||
|
@ -239,14 +239,14 @@ $(LIB_STATIC): $(OBJECTS)
|
||||
|
||||
clean: $(SUBDIRS.clean)
|
||||
$(RM) $(OBJECTS) $(TARGETS) $(CLEAN_TARGETS) $(SOURCES:%.c=%.d) \
|
||||
$(SOURCES:%.c=%.pot) $(SOURCES:%.c=%.gcno) \
|
||||
$(SOURCES2:%.c=%.d) $(SOURCES:%.c=%.pot) $(SOURCES:%.c=%.gcno) \
|
||||
$(SOURCES:%.c=%.gcda) $(LDDEPS)
|
||||
|
||||
distclean: $(SUBDIRS.distclean)
|
||||
$(RM) -rf $(DISTCLEAN_DIRS)
|
||||
$(RM) $(DISTCLEAN_TARGETS) \
|
||||
$(OBJECTS) $(TARGETS) $(CLEAN_TARGETS) $(SOURCES:%.c=%.d) \
|
||||
$(SOURCES:%.c=%.pot) $(SOURCES:%.c=%.gcno) \
|
||||
$(SOURCES2:%.c=%.d) $(SOURCES:%.c=%.pot) $(SOURCES:%.c=%.gcno) \
|
||||
$(SOURCES:%.c=%.gcda) $(LDDEPS) \
|
||||
config.cache config.log config.status \
|
||||
Makefile make.tmpl core \
|
||||
@ -262,6 +262,9 @@ ifneq ($(MAKECMDGOALS),clean)
|
||||
ifdef SOURCES
|
||||
-include $(SOURCES:.c=.d)
|
||||
endif
|
||||
ifdef SOURCES2
|
||||
-include $(SOURCES2:.c=.d)
|
||||
endif
|
||||
endif
|
||||
endif
|
||||
|
||||
|
@ -62,6 +62,9 @@ SOURCES =\
|
||||
vgscan.c \
|
||||
vgsplit.c
|
||||
|
||||
SOURCES2 =\
|
||||
dmsetup.c
|
||||
|
||||
TARGETS =\
|
||||
.commands \
|
||||
lvm
|
||||
|
Loading…
Reference in New Issue
Block a user