root/lm-sensors/trunk/kernel/chips/Module.mk @ 1179

Revision 1179, 5.0 KB (checked in by mds, 12 years ago)

Fujitsu Poseidon support from Hermann Jung <hej@…>

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
Line 
1#  Module.mk - Makefile for a Linux module for reading sensor data.
2#  Copyright (c) 1998 - 2001 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.
21MODULE_DIR := kernel/chips
22KERNELCHIPSDIR := $(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# These targets are NOT included in 'mkpatch' ...
27KERNELCHIPSTARGETS :=  \
28                      $(MODULE_DIR)/adm1024.o \
29                      $(MODULE_DIR)/fscpos.o \
30                      $(MODULE_DIR)/it87.o \
31                      $(MODULE_DIR)/maxilife.o \
32                      $(MODULE_DIR)/mtp008.o
33
34# These targets ARE included in 'mkpatch', except for LTC1710, which we
35# leave here because it used to be in 'mkpatch' ...
36ifneq ($(shell if grep -q '^CONFIG_SENSORS_ADM1021=y' $(LINUX)/.config; then echo 1; fi),1)
37KERNELCHIPSTARGETS += $(MODULE_DIR)/adm1021.o
38endif
39ifneq ($(shell if grep -q '^CONFIG_SENSORS_ADM1025=y' $(LINUX)/.config; then echo 1; fi),1)
40KERNELCHIPSTARGETS += $(MODULE_DIR)/adm1025.o
41endif
42ifneq ($(shell if grep -q '^CONFIG_SENSORS_ADM9240=y' $(LINUX)/.config; then echo 1; fi),1)
43KERNELCHIPSTARGETS += $(MODULE_DIR)/adm9240.o
44endif
45ifneq ($(shell if grep -q '^CONFIG_SENSORS_BT869=y' $(LINUX)/.config; then echo 1; fi),1)
46KERNELCHIPSTARGETS += $(MODULE_DIR)/bt869.o
47endif
48ifneq ($(shell if grep -q '^CONFIG_SENSORS_DDCMON=y' $(LINUX)/.config; then echo 1; fi),1)
49KERNELCHIPSTARGETS += $(MODULE_DIR)/ddcmon.o
50endif
51ifneq ($(shell if grep -q '^CONFIG_SENSORS_DS1621=y' $(LINUX)/.config; then echo 1; fi),1)
52KERNELCHIPSTARGETS += $(MODULE_DIR)/ds1621.o
53endif
54ifneq ($(shell if grep -q '^CONFIG_SENSORS_EEPROM=y' $(LINUX)/.config; then echo 1; fi),1)
55KERNELCHIPSTARGETS += $(MODULE_DIR)/eeprom.o
56endif
57ifneq ($(shell if grep -q '^CONFIG_SENSORS_GL518SM=y' $(LINUX)/.config; then echo 1; fi),1)
58KERNELCHIPSTARGETS += $(MODULE_DIR)/gl518sm.o
59endif
60ifneq ($(shell if grep -q '^CONFIG_SENSORS_GL520SM=y' $(LINUX)/.config; then echo 1; fi),1)
61KERNELCHIPSTARGETS += $(MODULE_DIR)/gl520sm.o
62endif
63ifneq ($(shell if grep -q '^CONFIG_SENSORS_IT87=y' $(LINUX)/.config; then echo 1; fi),1)
64KERNELCHIPSTARGETS += $(MODULE_DIR)/it87.o
65endif
66ifneq ($(shell if grep -q '^CONFIG_SENSORS_LM75=y' $(LINUX)/.config; then echo 1; fi),1)
67KERNELCHIPSTARGETS += $(MODULE_DIR)/lm75.o
68endif
69ifneq ($(shell if grep -q '^CONFIG_SENSORS_LM78=y' $(LINUX)/.config; then echo 1; fi),1)
70KERNELCHIPSTARGETS += $(MODULE_DIR)/lm78.o
71endif
72ifneq ($(shell if grep -q '^CONFIG_SENSORS_LM80=y' $(LINUX)/.config; then echo 1; fi),1)
73KERNELCHIPSTARGETS += $(MODULE_DIR)/lm80.o
74endif
75ifneq ($(shell if grep -q '^CONFIG_SENSORS_LM87=y' $(LINUX)/.config; then echo 1; fi),1)
76KERNELCHIPSTARGETS += $(MODULE_DIR)/lm87.o
77endif
78ifneq ($(shell if grep -q '^CONFIG_SENSORS_LTC1710=y' $(LINUX)/.config; then echo 1; fi),1)
79KERNELCHIPSTARGETS += $(MODULE_DIR)/ltc1710.o
80endif
81ifneq ($(shell if grep -q '^CONFIG_SENSORS_MATORB=y' $(LINUX)/.config; then echo 1; fi),1)
82KERNELCHIPSTARGETS += $(MODULE_DIR)/matorb.o
83endif
84ifneq ($(shell if grep -q '^CONFIG_SENSORS_PCF8574=y' $(LINUX)/.config; then echo 1; fi),1)
85KERNELCHIPSTARGETS += $(MODULE_DIR)/pcf8574.o
86endif
87ifneq ($(shell if grep -q '^CONFIG_SENSORS_SIS5595=y' $(LINUX)/.config; then echo 1; fi),1)
88KERNELCHIPSTARGETS += $(MODULE_DIR)/sis5595.o
89endif
90ifneq ($(shell if grep -q '^CONFIG_SENSORS_THMC50=y' $(LINUX)/.config; then echo 1; fi),1)
91KERNELCHIPSTARGETS += $(MODULE_DIR)/thmc50.o
92endif
93ifneq ($(shell if grep -q '^CONFIG_SENSORS_W83781D=y' $(LINUX)/.config; then echo 1; fi),1)
94KERNELCHIPSTARGETS += $(MODULE_DIR)/w83781d.o
95endif
96ifneq ($(shell if grep -q '^CONFIG_SENSORS_VIA686A=y' $(LINUX)/.config; then echo 1; fi),1)
97KERNELCHIPSTARGETS += $(MODULE_DIR)/via686a.o
98endif
99
100# Include all dependency files
101INCLUDEFILES += $(KERNELCHIPSTARGETS:.o=.d)
102
103all-kernel-chips: $(KERNELCHIPSTARGETS)
104all :: all-kernel-chips
105
106install-kernel-chips: all-kernel-chips
107        if [ -n "$(KERNELCHIPSTARGETS)" ] ; then \
108          $(MKDIR) $(DESTDIR)$(MODDIR) ; \
109          $(INSTALL) -o root -g root -m 644 $(KERNELCHIPSTARGETS) $(DESTDIR)$(MODDIR) ;\
110        fi
111
112install :: install-kernel-chips
113
114clean-kernel-chips:
115        $(RM) $(KERNELCHIPSDIR)/*.o $(KERNELCHIPSDIR)/*.d
116clean :: clean-kernel-chips
Note: See TracBrowser for help on using the browser.