Changeset 4069
- Timestamp:
- 07/24/06 21:34:09 (2 years ago)
- Files:
-
- lm-sensors/trunk/CHANGES (modified) (1 diff)
- lm-sensors/trunk/Makefile (modified) (5 diffs)
- lm-sensors/trunk/doc/developers/makefiles (modified) (1 diff)
- lm-sensors/trunk/kernel/chips/Module.mk (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
lm-sensors/trunk/CHANGES
r4067 r4069 12 12 Fix no sensors being reported as an error 13 13 Makefile: Don't grep autoconf.h on user-space targets 14 Makefile: Fix depmod on non-running kernel version 14 Fix depmod on non-running kernel version 15 Silent errors on missing dependency files 15 16 Module i2c-ali1535: Drop redundant semaphore (2.6 backport) 16 17 Module i2c-amd756-s4882: Improve static semaphore initialization lm-sensors/trunk/Makefile
r3283 r4069 280 280 LIBCFLAGS := -fpic $(ALL_CFLAGS) 281 281 282 .PHONY: all clean install version package dep282 .PHONY: all clean install version package 283 283 284 284 # Make all the default rule … … 294 294 ifneq ($(MAKECMDGOALS),package) 295 295 ifneq ($(MAKECMDGOALS),userpackage) 296 include $(INCLUDEFILES)296 -include $(INCLUDEFILES) 297 297 endif 298 298 endif … … 305 305 MANPAGES := $(LIBMAN3FILES) $(LIBMAN5FILES) $(PROGDETECTMAN8FILES) $(PROGDUMPMAN8FILES) \ 306 306 $(PROGSENSORSMAN1FILES) $(PROGPWMMAN8FILES) prog/sensord/sensord.8 307 308 # Making the dependency files - done automatically!309 dep :310 307 311 308 user :: … … 396 393 @echo ' clean: cleanup' 397 394 @echo ' package: create a distribution package' 398 @echo 'Note: make dep is automatic'399 395 400 396 $(LINUX)/.config: … … 430 426 .SUFFIXES: 431 427 432 # We need to create dependency files. Tricky. We sed rule puts dir/file.d and428 # We need to create dependency files. Tricky. The sed rule puts dir/file.d and 433 429 # dir/file.c in front of the dependency file rule. 434 430 lm-sensors/trunk/doc/developers/makefiles
r4064 r4069 25 25 * clean-i2c, clean-src, ... 26 26 Remove anything which can be regenerated from the designated directory. 27 * dep28 Do nothing, but generate any missing .d files. The command29 'make clean && make dep' canbe useful in this case ('make clean dep'30 will not work, due to technical reasons!).31 27 * version 32 28 Regenerate version.h, using the current date for the date-stamp, and lm-sensors/trunk/kernel/chips/Module.mk
r3169 r4069 176 176 ifneq ($(shell if grep -q '^CONFIG_SENSORS_W83627HF=y' $(LINUX)/.config; then echo 1; fi),1) 177 177 KERNELCHIPSTARGETS += $(MODULE_DIR)/w83627hf.o 178 endif 179 ifneq ($(shell if grep -q '^CONFIG_SENSORS_W83627EHF=y' $(LINUX)/.config; then echo 1; fi),1) 180 KERNELCHIPSTARGETS += $(MODULE_DIR)/w83627ehf.o 178 181 endif 179 182 ifneq ($(shell if grep -q '^CONFIG_SENSORS_W83L785TS=y' $(LINUX)/.config; then echo 1; fi),1)
