Changeset 4068

Show
Ignore:
Timestamp:
07/24/06 21:32:57 (7 years ago)
Author:
khali
Message:

Makefile: Silent errors on missing dependency files.

Location:
i2c/trunk
Files:
2 modified

Legend:

Unmodified
Added
Removed
  • i2c/trunk/CHANGES

    r4058 r4068  
    2020SVN HEAD 
    2121  Makefile: Fix i2c-pcf8584.h installation 
    22   Makefile: Fix depmod on non-running kernel version 
     22            Fix depmod on non-running kernel version 
     23            Silent errors on missing dependency files 
    2324  i2c-core, i2c.h: Mark block write buffers as const (2.6 backport) 
    2425  i2c-iop3xx: Fix return value of master_xfer method 
  • i2c/trunk/Makefile

    r4029 r4068  
    179179MODCPPFLAGS += $(CPPFLAGS) $(kbuild_2_4_nostdinc) 
    180180 
    181 .PHONY: dep 
    182181# Make all the default rule 
    183182all:: 
     
    189188endif 
    190189ifneq ($(MAKECMDGOALS),clean) 
    191 ifneq ($(INCLUDEFILES),) 
    192 include $(INCLUDEFILES) 
    193 endif 
    194 endif 
    195  
    196 # Making the dependency files - done automatically! 
    197 dep : 
     190-include $(INCLUDEFILES) 
     191endif 
    198192 
    199193all :: 
     
    256250.SUFFIXES: 
    257251 
    258 # We need to create dependency files. Tricky. We sed rule puts dir/file.d and 
     252# We need to create dependency files. Tricky. The sed rule puts dir/file.d and 
    259253# dir/file.c in front of the dependency file rule. 
    260254