Changeset 4068
Legend:
- Unmodified
- Added
- Removed
-
i2c/trunk/CHANGES
r4058 r4068 20 20 SVN HEAD 21 21 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 23 24 i2c-core, i2c.h: Mark block write buffers as const (2.6 backport) 24 25 i2c-iop3xx: Fix return value of master_xfer method -
i2c/trunk/Makefile
r4029 r4068 179 179 MODCPPFLAGS += $(CPPFLAGS) $(kbuild_2_4_nostdinc) 180 180 181 .PHONY: dep182 181 # Make all the default rule 183 182 all:: … … 189 188 endif 190 189 ifneq ($(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) 191 endif 198 192 199 193 all :: … … 256 250 .SUFFIXES: 257 251 258 # We need to create dependency files. Tricky. We sed rule puts dir/file.d and252 # We need to create dependency files. Tricky. The sed rule puts dir/file.d and 259 253 # dir/file.c in front of the dependency file rule. 260 254
