Changeset 575 for lm-sensors/trunk/kernel/include/Module.mk
- Timestamp:
- 09/23/99 01:11:52 (14 years ago)
- Files:
-
- 1 modified
-
lm-sensors/trunk/kernel/include/Module.mk (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
lm-sensors/trunk/kernel/include/Module.mk
r496 r575 21 21 MODULE_DIR := kernel/include 22 22 23 KERNELINCLUDEFILES := $(MODULE_DIR)/sensors.h $(MODULE_DIR)/i2c-isa.h 24 23 KERNELINCLUDEFILES := 24 ifneq ($(shell if grep -q '^CONFIG_SENSORS=y' $(LINUX)/.config; then echo 1; fi),1) 25 KERNELINCLUDEFILES += $(MODULE_DIR)/sensors.h 26 endif 27 ifneq ($(shell if grep -q '^CONFIG_I2C_ISA=y' $(LINUX)/.config; then echo 1; fi),1) 28 KERNELINCLUDEFILES += $(MODULE_DIR)/isa.h 29 endif 25 30 26 31 install-all-kernel-include:
