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

Revision 1393, 6.1 KB (checked in by mds, 11 years ago)

add smbus-arp

  • 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 := $(MODULE_DIR)/pcf8591.o
28KERNELCHIPSTARGETS += $(MODULE_DIR)/smbus-arp.o
29
30# These targets ARE included in 'mkpatch', except for LTC1710, which we
31# leave here because it used to be in 'mkpatch' ...
32ifneq ($(shell if grep -q '^CONFIG_SENSORS_ADM1021=y' $(LINUX)/.config; then echo 1; fi),1)
33KERNELCHIPSTARGETS += $(MODULE_DIR)/adm1021.o
34endif
35ifneq ($(shell if grep -q '^CONFIG_SENSORS_ADM1024=y' $(LINUX)/.config; then echo 1; fi),1)
36KERNELCHIPSTARGETS += $(MODULE_DIR)/adm1024.o
37endif
38ifneq ($(shell if grep -q '^CONFIG_SENSORS_ADM1025=y' $(LINUX)/.config; then echo 1; fi),1)
39KERNELCHIPSTARGETS += $(MODULE_DIR)/adm1025.o
40endif
41ifneq ($(shell if grep -q '^CONFIG_SENSORS_ADM9240=y' $(LINUX)/.config; then echo 1; fi),1)
42KERNELCHIPSTARGETS += $(MODULE_DIR)/adm9240.o
43endif
44ifneq ($(shell if grep -q '^CONFIG_SENSORS_BT869=y' $(LINUX)/.config; then echo 1; fi),1)
45KERNELCHIPSTARGETS += $(MODULE_DIR)/bt869.o
46endif
47ifneq ($(shell if grep -q '^CONFIG_SENSORS_DDCMON=y' $(LINUX)/.config; then echo 1; fi),1)
48KERNELCHIPSTARGETS += $(MODULE_DIR)/ddcmon.o
49endif
50ifneq ($(shell if grep -q '^CONFIG_SENSORS_DS1621=y' $(LINUX)/.config; then echo 1; fi),1)
51KERNELCHIPSTARGETS += $(MODULE_DIR)/ds1621.o
52endif
53ifneq ($(shell if grep -q '^CONFIG_SENSORS_EEPROM=y' $(LINUX)/.config; then echo 1; fi),1)
54KERNELCHIPSTARGETS += $(MODULE_DIR)/eeprom.o
55endif
56ifneq ($(shell if grep -q '^CONFIG_SENSORS_FSCPOS=y' $(LINUX)/.config; then echo 1; fi),1)
57KERNELCHIPSTARGETS += $(MODULE_DIR)/fscpos.o
58endif
59ifneq ($(shell if grep -q '^CONFIG_SENSORS_FSCSCY=y' $(LINUX)/.config; then echo 1; fi),1)
60KERNELCHIPSTARGETS += $(MODULE_DIR)/fscscy.o
61endif
62ifneq ($(shell if grep -q '^CONFIG_SENSORS_GL518SM=y' $(LINUX)/.config; then echo 1; fi),1)
63KERNELCHIPSTARGETS += $(MODULE_DIR)/gl518sm.o
64endif
65ifneq ($(shell if grep -q '^CONFIG_SENSORS_GL520SM=y' $(LINUX)/.config; then echo 1; fi),1)
66KERNELCHIPSTARGETS += $(MODULE_DIR)/gl520sm.o
67endif
68ifneq ($(shell if grep -q '^CONFIG_SENSORS_IT87=y' $(LINUX)/.config; then echo 1; fi),1)
69KERNELCHIPSTARGETS += $(MODULE_DIR)/it87.o
70endif
71ifneq ($(shell if grep -q '^CONFIG_SENSORS_LM75=y' $(LINUX)/.config; then echo 1; fi),1)
72KERNELCHIPSTARGETS += $(MODULE_DIR)/lm75.o
73endif
74ifneq ($(shell if grep -q '^CONFIG_SENSORS_LM78=y' $(LINUX)/.config; then echo 1; fi),1)
75KERNELCHIPSTARGETS += $(MODULE_DIR)/lm78.o
76endif
77ifneq ($(shell if grep -q '^CONFIG_SENSORS_LM80=y' $(LINUX)/.config; then echo 1; fi),1)
78KERNELCHIPSTARGETS += $(MODULE_DIR)/lm80.o
79endif
80ifneq ($(shell if grep -q '^CONFIG_SENSORS_LM87=y' $(LINUX)/.config; then echo 1; fi),1)
81KERNELCHIPSTARGETS += $(MODULE_DIR)/lm87.o
82endif
83ifneq ($(shell if grep -q '^CONFIG_SENSORS_LTC1710=y' $(LINUX)/.config; then echo 1; fi),1)
84KERNELCHIPSTARGETS += $(MODULE_DIR)/ltc1710.o
85endif
86ifneq ($(shell if grep -q '^CONFIG_SENSORS_MATORB=y' $(LINUX)/.config; then echo 1; fi),1)
87KERNELCHIPSTARGETS += $(MODULE_DIR)/matorb.o
88endif
89ifneq ($(shell if grep -q '^CONFIG_SENSORS_MAXILIFE=y' $(LINUX)/.config; then echo 1; fi),1)
90KERNELCHIPSTARGETS += $(MODULE_DIR)/maxilife.o
91endif
92ifneq ($(shell if grep -q '^CONFIG_SENSORS_MTP008=y' $(LINUX)/.config; then echo 1; fi),1)
93KERNELCHIPSTARGETS += $(MODULE_DIR)/mtp008.o
94endif
95ifneq ($(shell if grep -q '^CONFIG_SENSORS_PCF8574=y' $(LINUX)/.config; then echo 1; fi),1)
96KERNELCHIPSTARGETS += $(MODULE_DIR)/pcf8574.o
97endif
98ifneq ($(shell if grep -q '^CONFIG_SENSORS_SIS5595=y' $(LINUX)/.config; then echo 1; fi),1)
99KERNELCHIPSTARGETS += $(MODULE_DIR)/sis5595.o
100endif
101ifneq ($(shell if grep -q '^CONFIG_SENSORS_THMC50=y' $(LINUX)/.config; then echo 1; fi),1)
102KERNELCHIPSTARGETS += $(MODULE_DIR)/thmc50.o
103endif
104ifneq ($(shell if grep -q '^CONFIG_SENSORS_W83781D=y' $(LINUX)/.config; then echo 1; fi),1)
105KERNELCHIPSTARGETS += $(MODULE_DIR)/w83781d.o
106endif
107ifneq ($(shell if grep -q '^CONFIG_SENSORS_VIA686A=y' $(LINUX)/.config; then echo 1; fi),1)
108KERNELCHIPSTARGETS += $(MODULE_DIR)/via686a.o
109endif
110
111# Include all dependency files
112INCLUDEFILES += $(KERNELCHIPSTARGETS:.o=.d)
113
114all-kernel-chips: $(KERNELCHIPSTARGETS)
115all :: all-kernel-chips
116
117#
118# If $MODPREF/kernel exists, we presume the new (2.4.0) /lib/modules/x.y.z directory
119# layout, so we install in kernel/drivers/sensors/ and remove old versions in misc/
120# Otherwise we install in misc/ as before.
121#
122install-kernel-chips: all-kernel-chips
123        if [ -n "$(KERNELCHIPSTARGETS)" ] ; then \
124          if [ -d "$(DESTDIR)$(MODPREF)/kernel" ] ; then \
125            $(MKDIR) $(DESTDIR)$(MODPREF)/kernel/drivers/sensors ; \
126            $(INSTALL) -o root -g root -m 644 $(KERNELCHIPSTARGETS) $(DESTDIR)$(MODPREF)/kernel/drivers/sensors ; \
127            for i in $(KERNELCHIPSTARGETS) ; do \
128              $(RM) $(DESTDIR)$(MODPREF)/misc/`basename $$i` ; \
129            done \
130          else \
131            $(MKDIR) $(DESTDIR)$(MODPREF)/misc ; \
132            $(INSTALL) -o root -g root -m 644 $(KERNELCHIPSTARGETS) $(DESTDIR)$(MODPREF)/misc ; \
133          fi \
134        fi
135
136install :: install-kernel-chips
137
138clean-kernel-chips:
139        $(RM) $(KERNELCHIPSDIR)/*.o $(KERNELCHIPSDIR)/*.d
140clean :: clean-kernel-chips
Note: See TracBrowser for help on using the browser.