xref: /freebsd/sys/modules/firewire/fwe/Makefile (revision 3c60ba66c4479fdf0045acf25f21c6806fd06c0f)
1# $FreeBSD$
2
3# Makefile for the SBP-II (Serial Bus Protocol 2/SCSI over IEEE1394)
4
5.PATH: ${.CURDIR}/../../../dev/firewire
6
7CFLAGS+= -g
8
9KMOD	= if_fwe
10SRCS	= bus_if.h device_if.h\
11	  opt_bus.h opt_firewire.h opt_inet.h\
12	  if_fwe.c if_fwevar.h\
13	  firewire.h firewirereg.h
14
15opt_fwe.h:
16	echo "#define FIREWIRE_ETHEREMU_FREEBSD 1" > opt_fwe.h
17
18.include <bsd.kmod.mk>
19
20