| 1 | # Module.mk - Makefile for a Linux module for reading sensor data. |
|---|
| 2 | # Copyright (c) 1998, 1999 Frodo Looijaard <frodol@dds.nl> |
|---|
| 3 | # |
|---|
| 4 | # This program is free software; you can redistribute it and/or modify |
|---|
| 5 | # it under the terms of the GNU General Public License as published by |
|---|
| 6 | # the Free Software Foundation; either version 2 of the License, or |
|---|
| 7 | # (at your option) any later version. |
|---|
| 8 | # |
|---|
| 9 | # This program is distributed in the hope that it will be useful, |
|---|
| 10 | # but WITHOUT ANY WARRANTY; without even the implied warranty of |
|---|
| 11 | # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|---|
| 12 | # GNU General Public License for more details. |
|---|
| 13 | # |
|---|
| 14 | # You should have received a copy of the GNU General Public License |
|---|
| 15 | # along with this program; if not, write to the Free Software |
|---|
| 16 | # Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. |
|---|
| 17 | |
|---|
| 18 | # Note that MODULE_DIR (the directory in which this file resides) is a |
|---|
| 19 | # 'simply expanded variable'. That means that its value is substituted |
|---|
| 20 | # verbatim in the rules, until it is redefined. |
|---|
| 21 | MODULE_DIR := kernel/chips |
|---|
| 22 | KERNELCHIPSDIR := $(MODULE_DIR) |
|---|
| 23 | |
|---|
| 24 | # Regrettably, even 'simply expanded variables' will not put their currently |
|---|
| 25 | # defined value verbatim into the command-list of rules... |
|---|
| 26 | KERNELCHIPSTARGETS := $(MODULE_DIR)/bt869.o $(MODULE_DIR)/gl520sm.o \ |
|---|
| 27 | $(MODULE_DIR)/matorb.o $(MODULE_DIR)/maxilife.o \ |
|---|
| 28 | $(MODULE_DIR)/thmc50.o \ |
|---|
| 29 | $(MODULE_DIR)/via686a.o \ |
|---|
| 30 | $(MODULE_DIR)/ddcmon.o \ |
|---|
| 31 | $(MODULE_DIR)/adm1025.o \ |
|---|
| 32 | $(MODULE_DIR)/lm87.o |
|---|
| 33 | ifneq ($(shell if grep -q '^CONFIG_SENSORS_ADM1021=y' $(LINUX)/.config; then echo 1; fi),1) |
|---|
| 34 | KERNELCHIPSTARGETS += $(MODULE_DIR)/adm1021.o |
|---|
| 35 | endif |
|---|
| 36 | ifneq ($(shell if grep -q '^CONFIG_SENSORS_ADM9240=y' $(LINUX)/.config; then echo 1; fi),1) |
|---|
| 37 | KERNELCHIPSTARGETS += $(MODULE_DIR)/adm9240.o |
|---|
| 38 | endif |
|---|
| 39 | ifneq ($(shell if grep -q '^CONFIG_SENSORS_EEPROM=y' $(LINUX)/.config; then echo 1; fi),1) |
|---|
| 40 | KERNELCHIPSTARGETS += $(MODULE_DIR)/eeprom.o |
|---|
| 41 | endif |
|---|
| 42 | ifneq ($(shell if grep -q '^CONFIG_SENSORS_GL518SM=y' $(LINUX)/.config; then echo 1; fi),1) |
|---|
| 43 | KERNELCHIPSTARGETS += $(MODULE_DIR)/gl518sm.o |
|---|
| 44 | endif |
|---|
| 45 | ifneq ($(shell if grep -q '^CONFIG_SENSORS_LM75=y' $(LINUX)/.config; then echo 1; fi),1) |
|---|
| 46 | KERNELCHIPSTARGETS += $(MODULE_DIR)/lm75.o |
|---|
| 47 | endif |
|---|
| 48 | ifneq ($(shell if grep -q '^CONFIG_SENSORS_LM78=y' $(LINUX)/.config; then echo 1; fi),1) |
|---|
| 49 | KERNELCHIPSTARGETS += $(MODULE_DIR)/lm78.o |
|---|
| 50 | endif |
|---|
| 51 | ifneq ($(shell if grep -q '^CONFIG_SENSORS_LM80=y' $(LINUX)/.config; then echo 1; fi),1) |
|---|
| 52 | KERNELCHIPSTARGETS += $(MODULE_DIR)/lm80.o |
|---|
| 53 | endif |
|---|
| 54 | ifneq ($(shell if grep -q '^CONFIG_SENSORS_LTC1710=y' $(LINUX)/.config; then echo 1; fi),1) |
|---|
| 55 | KERNELCHIPSTARGETS += $(MODULE_DIR)/ltc1710.o |
|---|
| 56 | endif |
|---|
| 57 | ifneq ($(shell if grep -q '^CONFIG_SENSORS_PCF8574=y' $(LINUX)/.config; then echo 1; fi),1) |
|---|
| 58 | KERNELCHIPSTARGETS += $(MODULE_DIR)/pcf8574.o |
|---|
| 59 | endif |
|---|
| 60 | ifneq ($(shell if grep -q '^CONFIG_SENSORS_SIS5595=y' $(LINUX)/.config; then echo 1; fi),1) |
|---|
| 61 | KERNELCHIPSTARGETS += $(MODULE_DIR)/sis5595.o |
|---|
| 62 | endif |
|---|
| 63 | ifneq ($(shell if grep -q '^CONFIG_SENSORS_W83781D=y' $(LINUX)/.config; then echo 1; fi),1) |
|---|
| 64 | KERNELCHIPSTARGETS += $(MODULE_DIR)/w83781d.o |
|---|
| 65 | endif |
|---|
| 66 | |
|---|
| 67 | # Include all dependency files |
|---|
| 68 | INCLUDEFILES += $(KERNELCHIPSTARGETS:.o=.d) |
|---|
| 69 | |
|---|
| 70 | all-kernel-chips: $(KERNELCHIPSTARGETS) |
|---|
| 71 | all :: all-kernel-chips |
|---|
| 72 | |
|---|
| 73 | install-kernel-chips: all-kernel-chips |
|---|
| 74 | if [ -n "$(KERNELCHIPSTARGETS)" ] ; then \ |
|---|
| 75 | $(MKDIR) $(DESTDIR)$(MODDIR) ; \ |
|---|
| 76 | $(INSTALL) -o root -g root -m 644 $(KERNELCHIPSTARGETS) $(DESTDIR)$(MODDIR) ;\ |
|---|
| 77 | fi |
|---|
| 78 | |
|---|
| 79 | install :: install-kernel-chips |
|---|
| 80 | |
|---|
| 81 | clean-kernel-chips: |
|---|
| 82 | $(RM) $(KERNELCHIPSDIR)/*.o $(KERNELCHIPSDIR)/*.d |
|---|
| 83 | clean :: clean-kernel-chips |
|---|