aboutsummaryrefslogtreecommitdiff
path: root/sys/modules/ocs_fc/Makefile
blob: a855f71ec19e96ab742960d88862f1d422dd38e1 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
.PATH:	${SRCTOP}/sys/dev/ocs_fc
KMOD = ocs_fc

SRCS = \
	device_if.h \
	bus_if.h \
	pci_if.h \
	opt_scsi.h \
	opt_stack.h \
	opt_cam.h

# OS
SRCS += ocs_pci.c ocs_ioctl.c ocs_os.c ocs_utils.c

# hw
SRCS += ocs_hw.c ocs_hw_queues.c

# SLI
SRCS += sli4.c ocs_sm.c

# Transport
SRCS += \
	ocs_device.c \
	ocs_xport.c \
	ocs_domain.c \
	ocs_sport.c \
	ocs_els.c \
	ocs_fabric.c \
	ocs_io.c \
	ocs_node.c \
	ocs_scsi.c \
	ocs_unsol.c \
	ocs_ddump.c \
	ocs_mgmt.c \
	ocs_gendump.c


# CAM initiator/target
SRCS += ocs_cam.c

CINCS = -I. 

CLEANFILES += ${PROG}.debug ${PROG}.symbols cscope.*

.include <bsd.kmod.mk>