]> sourceware.org Git - lvm2.git/commitdiff
build: Calculate dependencies at same time as compiling.
authorJoe Thornber <ejt@redhat.com>
Mon, 30 Apr 2018 08:32:14 +0000 (09:32 +0100)
committerJoe Thornber <ejt@redhat.com>
Mon, 30 Apr 2018 08:32:14 +0000 (09:32 +0100)
Speeds up the build slightly.

make.tmpl.in

index 454239259f3785d5476029509af1d8582dac8f8a..76e076a369345c76c12e1452c1ba522e650d21c9 100644 (file)
@@ -441,9 +441,11 @@ endif
 
 .LIBPATTERNS = lib%.so lib%.a
 
+DEPFLAGS=-MT $@ -MMD -MP -MF $*.d
+
 %.o: %.c
        @echo "    [CC] $<"
-       $(Q) $(CC) -c $(INCLUDES) $(VALGRIND_CFLAGS) $(PROGS_CFLAGS) $(DEFS) $(DEFS_$@) $(WFLAGS) $(WCFLAGS) $(CFLAGS) $(CFLAGS_$@) $< -o $@
+       $(Q) $(CC) $(DEPFLAGS) -c $(INCLUDES) $(VALGRIND_CFLAGS) $(PROGS_CFLAGS) $(DEFS) $(DEFS_$@) $(WFLAGS) $(WCFLAGS) $(CFLAGS) $(CFLAGS_$@) $< -o $@
 
 %.o: %.cpp
        @echo "    [CXX] $<"
@@ -503,17 +505,8 @@ $(LIB_STATIC): $(OBJECTS)
        $(Q) $(RM) $@
        $(Q) $(AR) rsv $@ $(OBJECTS) > /dev/null
 
-%.d: %.c
-       @echo "    [DEP] $<"
-       $(Q) $(MKDIR_P) $(dir $@); \
-       set -e; \
-       FILE=`echo $@ | sed 's/\\//\\\\\\//g;s/\\.d//g'`; \
-       DEPS=`echo $(DEPS) | sed -e 's/\\//\\\\\\//g'`; \
-       $(CC) -MM $(INCLUDES) $(VALGRIND_CFLAGS) $(PROGS_CFLAGS) $(DEFS) -o $@ $<; \
-       sed -i "s/\(.*\)\.o[ :]*/$$FILE.o $$FILE.d $$FILE.pot: $$DEPS /g" $@; \
-       DEPLIST=`sed 's/ \\\\//;s/.*://;' < $@`; \
-       echo $$DEPLIST | fmt -1 | sed 's/ //g;s/\(.*\)/\1:/' >> $@; \
-       [ -s $@ ] || $(RM) $@
+%.d: ;
+.PRECIOUS: %.d
 
 %.mo: %.po
        @echo "    [MSGFMT] $<"
This page took 0.034877 seconds and 5 git commands to generate.