1
0
mirror of git://sourceware.org/git/lvm2.git synced 2025-01-03 05:18:29 +03:00

Use CFLAGS during make rule generation.

This commit is contained in:
Alasdair Kergon 2001-11-28 12:28:03 +00:00
parent 4a8d120415
commit 170f08cee0

View File

@ -99,7 +99,7 @@ $(SUBDIRS.distclean):
%.d: %.c %.d: %.c
set -e; FILE=`echo $@ | sed 's/\\//\\\\\\//g;s/\\.d//g'`; \ set -e; FILE=`echo $@ | sed 's/\\//\\\\\\//g;s/\\.d//g'`; \
INC_LNS=`echo $(INC_LNS) | sed -e 's/\\//\\\\\\//g'`; \ INC_LNS=`echo $(INC_LNS) | sed -e 's/\\//\\\\\\//g'`; \
$(CC) -MM $(INCLUDES) $< | \ $(CC) -MM $(INCLUDES) $(CFLAGS) $< | \
sed "s/\(.*\)\.o[ :]*/$$FILE.o $$FILE.d : $$INC_LNS /g" > $@; \ sed "s/\(.*\)\.o[ :]*/$$FILE.o $$FILE.d : $$INC_LNS /g" > $@; \
[ -s $@ ] || $(RM) $@ [ -s $@ ] || $(RM) $@