1 #
2 # Makefile for the kernel Parallel port device drivers.
3 #
4 # Note! Parport is the Borg. We have assimilated some other
5 # drivers in the `char', `net' and `scsi' directories,
6 # but left them there to allay suspicion.
7 #
8 # 7 October 2000, Bartlomiej Zolnierkiewicz <bkz@linux-ide.org>
9 # Rewritten to use lists instead of if-statements.
10 #
11
12 O_TARGET := driver.o
13
14 export-objs := init.o parport_pc.o
15
16 list-multi := parport.o
17 parport-objs := share.o ieee1284.o ieee1284_ops.o init.o procfs.o
18
19 ifeq ($(CONFIG_PARPORT_1284),y)
20 parport-objs += daisy.o probe.o
21 endif
22
23 obj-$(CONFIG_PARPORT) += parport.o
24 obj-$(CONFIG_PARPORT_PC) += parport_pc.o
25 obj-$(CONFIG_PARPORT_AMIGA) += parport_amiga.o
26 obj-$(CONFIG_PARPORT_MFC3) += parport_mfc3.o
27 obj-$(CONFIG_PARPORT_ATARI) += parport_atari.o
28 obj-$(CONFIG_PARPORT_SUNBPP) += parport_sunbpp.o
29 obj-$(CONFIG_PARPORT_GSC) += parport_gsc.o
30
31 include $(TOPDIR)/Rules.make
32
33 parport.o: $(parport-objs)
34 $(LD) -r -o $@ $(parport-objs)
This page was automatically generated by the
LXR engine.
Visit the LXR main site for more
information.