1#
2# Makefile for the kernel HIL device drivers.
3#
4# Note! Dependencies are done automagically by 'make dep', which also
5# removes any old dependencies. DON'T put your own dependencies here
6# unless it's something special (ie not a .c file).
7#
8# Note 2! The CFLAGS definitions are now inherited from the
9# parent makes..
10#
11
12O_TARGET := hil.o
13
14obj-y	 +=
15
16# All of the (potential) objects that export symbols.
17# This list comes from 'grep -l EXPORT_SYMBOL *.[hc]'.
18export-objs     :=	hp_sdc.o hil_mlc.o
19
20mod-subdirs	:=
21
22list-multi	:=
23
24
25obj-$(CONFIG_HIL_KBD_BASIC)	+= hilkbd.o
26
27obj-$(CONFIG_HP_SDC)		+= hp_sdc.o
28obj-$(CONFIG_HP_SDC_MLC)	+= hp_sdc_mlc.o
29obj-$(CONFIG_HP_SDC_RTC)	+= hp_sdc_rtc.o
30obj-$(CONFIG_HIL_MLC)		+= hil_mlc.o
31
32obj-$(CONFIG_HIL_KBD)		+= hil_kbd.o
33obj-$(CONFIG_HIL_PTR)		+= hil_ptr.o
34
35
36include $(TOPDIR)/Rules.make
37
38fastdep:
39
40