added a lot of printk output to ease writing of emulator
[linux-2.4.21-pre4.git] / drivers / iseries / Makefile
1 #
2 # Makefile for the iSeries-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 O_TARGET  := iseries.o
17
18 # Objects that export symbols.
19
20 # export-objs   := adb.o rtc.o mac_hid.o via-pmu.o
21
22 export-objs := veth.o viocons.o viotape.o viodasd.o viocd.o viopath.o
23
24 # Object file lists.
25
26 obj-y   :=
27 obj-m   :=
28 obj-n   :=
29 obj-    :=
30
31 # Each configuration option enables a list of files.
32
33 obj-$(CONFIG_VETH) += veth.o
34 obj-$(CONFIG_VIOCONS) += viocons.o
35 obj-$(CONFIG_VIOPATH) += viopath.o
36 obj-$(CONFIG_VIOTAPE) += viotape.o
37 obj-$(CONFIG_VIODASD) += viodasd.o
38 obj-$(CONFIG_VIOCD)   += viocd.o
39
40 # The global Rules.make.
41
42 include $(TOPDIR)/Rules.make
43