1*4882a593Smuzhiyun# SPDX-License-Identifier: GPL-2.0 2*4882a593Smuzhiyun# 3*4882a593Smuzhiyun# Makefile for the kernel Parallel port device drivers. 4*4882a593Smuzhiyun# 5*4882a593Smuzhiyun 6*4882a593Smuzhiyunparport-objs := share.o ieee1284.o ieee1284_ops.o procfs.o 7*4882a593Smuzhiyun 8*4882a593Smuzhiyunifeq ($(CONFIG_PARPORT_1284),y) 9*4882a593Smuzhiyun parport-objs += daisy.o probe.o 10*4882a593Smuzhiyunendif 11*4882a593Smuzhiyun 12*4882a593Smuzhiyunobj-$(CONFIG_PARPORT) += parport.o 13*4882a593Smuzhiyunobj-$(CONFIG_PARPORT_PC) += parport_pc.o 14*4882a593Smuzhiyunobj-$(CONFIG_PARPORT_SERIAL) += parport_serial.o 15*4882a593Smuzhiyunobj-$(CONFIG_PARPORT_PC_PCMCIA) += parport_cs.o 16*4882a593Smuzhiyunobj-$(CONFIG_PARPORT_AMIGA) += parport_amiga.o 17*4882a593Smuzhiyunobj-$(CONFIG_PARPORT_MFC3) += parport_mfc3.o 18*4882a593Smuzhiyunobj-$(CONFIG_PARPORT_ATARI) += parport_atari.o 19*4882a593Smuzhiyunobj-$(CONFIG_PARPORT_SUNBPP) += parport_sunbpp.o 20*4882a593Smuzhiyunobj-$(CONFIG_PARPORT_GSC) += parport_gsc.o 21*4882a593Smuzhiyunobj-$(CONFIG_PARPORT_AX88796) += parport_ax88796.o 22*4882a593Smuzhiyunobj-$(CONFIG_PARPORT_IP32) += parport_ip32.o 23