1*2908d778SJames Bottomley# 2*2908d778SJames Bottomley# Makefile for Adaptec aic94xx SAS/SATA driver. 3*2908d778SJames Bottomley# 4*2908d778SJames Bottomley# Copyright (C) 2005 Adaptec, Inc. All rights reserved. 5*2908d778SJames Bottomley# Copyright (C) 2005 Luben Tuikov <luben_tuikov@adaptec.com> 6*2908d778SJames Bottomley# 7*2908d778SJames Bottomley# This file is licensed under GPLv2. 8*2908d778SJames Bottomley# 9*2908d778SJames Bottomley# This file is part of the the aic94xx driver. 10*2908d778SJames Bottomley# 11*2908d778SJames Bottomley# The aic94xx driver is free software; you can redistribute it and/or 12*2908d778SJames Bottomley# modify it under the terms of the GNU General Public License as 13*2908d778SJames Bottomley# published by the Free Software Foundation; version 2 of the 14*2908d778SJames Bottomley# License. 15*2908d778SJames Bottomley# 16*2908d778SJames Bottomley# The aic94xx driver is distributed in the hope that it will be useful, 17*2908d778SJames Bottomley# but WITHOUT ANY WARRANTY; without even the implied warranty of 18*2908d778SJames Bottomley# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 19*2908d778SJames Bottomley# General Public License for more details. 20*2908d778SJames Bottomley# 21*2908d778SJames Bottomley# You should have received a copy of the GNU General Public License 22*2908d778SJames Bottomley# along with the aic94xx driver; if not, write to the Free Software 23*2908d778SJames Bottomley# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA 24*2908d778SJames Bottomley 25*2908d778SJames Bottomleyifeq ($(CONFIG_AIC94XX_DEBUG),y) 26*2908d778SJames Bottomley EXTRA_CFLAGS += -DASD_DEBUG -DASD_ENTER_EXIT 27*2908d778SJames Bottomleyendif 28*2908d778SJames Bottomley 29*2908d778SJames Bottomleyobj-$(CONFIG_SCSI_AIC94XX) += aic94xx.o 30*2908d778SJames Bottomleyaic94xx-y += aic94xx_init.o \ 31*2908d778SJames Bottomley aic94xx_hwi.o \ 32*2908d778SJames Bottomley aic94xx_reg.o \ 33*2908d778SJames Bottomley aic94xx_sds.o \ 34*2908d778SJames Bottomley aic94xx_seq.o \ 35*2908d778SJames Bottomley aic94xx_dump.o \ 36*2908d778SJames Bottomley aic94xx_scb.o \ 37*2908d778SJames Bottomley aic94xx_dev.o \ 38*2908d778SJames Bottomley aic94xx_tmf.o \ 39*2908d778SJames Bottomley aic94xx_task.o 40