Răsfoiți Sursa

make: depends move/rm file fix & optimization

- fix for make failing if the depends were made and a *.h is moved
  or deleted
- avoid restarting make when depends change (make the depends at
  the same moment when the .o are generated)
(cherry picked from commit 965e651fbe84d370c05a647e022023cecf2d02bd)
Andrei Pelinescu-Onciul 15 ani în urmă
părinte
comite
ae9b1ec349
1 a modificat fișierele cu 3 adăugiri și 8 ștergeri
  1. 3 8
      Makefile.rules

+ 3 - 8
Makefile.rules

@@ -84,11 +84,9 @@ exec_cmd= $(if $($(quiet)_cmd_$(1)),\
 #implicit rules
 %.o:%.c  $(ALLDEP)
 	$(call exec_cmd,CC)
-
-%.d: %.c $(ALLDEP)
-	@set -e; $(MKDEP) $(CFLAGS) $(C_INCLUDES) $(INCLUDES) $(C_DEFS) $(DEFS) $<\
-	    |  sed 's#\(\($(*D)/\)\{0,1\}$(*F)\)\.o[ :]*#$*.o $@ : #g' > $@; \
-	    test -s $@ || ( rm -f $@; false )
+	@$(MKDEP) $(CFLAGS) $(C_INCLUDES) $(INCLUDES) $(C_DEFS) $(DEFS) $< \
+	|  sed	-e 's/#.*//' -e '/:[ 	]*$$/d' -e '/^[ 	]*$$/d' \
+				-e 's#.*:#$@: $$(wildcard #g' -e 's/\([^\\]\)$$/\1)/'> $*.d
 
 # use RPATH and SER_LIBS if needed (make install and the module depends
 # on some ser libs)
@@ -193,9 +191,6 @@ makecfg.lst:
 .PHONY: all
 all: $(NAME) every-module
 
-.PHONY: dep
-dep: $(depends)
-
 .PHONY: static
 static: $(objs)