mirror of
https://github.com/SCST-project/scst.git
synced 2026-05-23 21:51:27 +00:00
- Moved qla2x00t patch generation code from qla2x00t/Makefile to qla2x00t/extract-qla2xxx-orig and qla2x00t/generate-in-tree-patches. Restored qla2x00t/Makefile to r1104. - scripts/run-regression-tests now passes the full kernel version (including patch level) to scripts/generate-kernel-patch. - scripts/generate-kernel-patch can now generate patches for the files in drivers/scsi/qla2xxx for any kernel version instead of only 2.6.26.8. git-svn-id: http://svn.code.sf.net/p/scst/svn/trunk@1198 d57e44dd-8a1f-0410-8b47-8ef2f437770f
14 lines
354 B
Makefile
14 lines
354 B
Makefile
qla2xxx-y := qla_os.o qla_init.o qla_mbx.o qla_iocb.o qla_isr.o qla_gs.o \
|
|
qla_dbg.o qla_sup.o qla_attr.o qla_mid.o qla_dfs.o
|
|
|
|
obj-$(CONFIG_SCSI_QLA_FC) += qla2xxx.o
|
|
|
|
clean:
|
|
rm -f *.o *.ko .*.cmd *.mod.c .*.d .depend *~ Modules.symvers \
|
|
Module.symvers Module.markers modules.order
|
|
rm -rf .tmp_versions
|
|
|
|
extraclean: clean
|
|
|
|
.PHONY: clean extraclean
|