9e51595ce6
prefer the more common > ${.TARGET} over > opt_foo.h in modules makefiles.
21 lines
392 B
Makefile
21 lines
392 B
Makefile
# $FreeBSD$
|
|
#
|
|
# Author: Harti Brandt <harti@freebsd.org>
|
|
#
|
|
.PATH: ${.CURDIR}/../../dev/fatm
|
|
|
|
KMOD= if_fatm
|
|
SRCS= if_fatm.c device_if.h bus_if.h pci_if.h opt_inet.h opt_natm.h
|
|
|
|
# CFLAGS+= -DFATM_DEBUG=0 -DINVARIANT_SUPPORT -DINVARIANTS
|
|
|
|
.if !defined(KERNBUILDDIR)
|
|
opt_inet.h:
|
|
echo "#define INET 1" > ${.TARGET}
|
|
|
|
opt_natm.h:
|
|
echo "#define NATM 1" > ${.TARGET}
|
|
.endif
|
|
|
|
.include <bsd.kmod.mk>
|