1 #
2 # Makefile for the Macintosh-specific 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
12 # The target object and module list name.
13
14 O_TARGET := macintosh.o
15
16 # Objects that export symbols.
17
18 export-objs := adb.o rtc.o mac_hid.o
19
20 # Object file lists.
21
22 obj-y :=
23 obj-m :=
24 obj-n :=
25 obj- :=
26
27 # Each configuration option enables a list of files.
28
29 ifeq ($(CONFIG_PMAC_PBOOK),y)
30 obj-y += mediabay.o
31 endif
32
33 obj-$(CONFIG_MAC_SERIAL) += macserial.o
34 obj-$(CONFIG_NVRAM) += nvram.o
35 obj-$(CONFIG_MAC_HID) += mac_hid.o
36 obj-$(CONFIG_INPUT_ADBHID) += adbhid.o
37 obj-$(CONFIG_PPC_RTC) += rtc.o
38
39 obj-$(CONFIG_ADB_PMU) += via-pmu.o
40 obj-$(CONFIG_ADB_CUDA) += via-cuda.o
41
42 obj-$(CONFIG_ADB) += adb.o
43 obj-$(CONFIG_ADB_KEYBOARD) += mac_keyb.o
44 obj-$(CONFIG_ADB_MACII) += via-macii.o
45 obj-$(CONFIG_ADB_MACIISI) += via-maciisi.o
46 obj-$(CONFIG_ADB_IOP) += adb-iop.o
47 obj-$(CONFIG_ADB_PMU68K) += via-pmu68k.o
48 obj-$(CONFIG_ADB_MACIO) += macio-adb.o
49
50 # The global Rules.make.
51
52 include $(TOPDIR)/Rules.make
53
This page was automatically generated by the
LXR engine.
Visit the LXR main site for more
information.