fb24f088ae
little endian and big endian and with 32 and 64 bit pointers. It already has the hooks to be used for HARP, NATM and ngATM.
20 lines
376 B
Makefile
20 lines
376 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 -g
|
|
# LDFLAGS+= -g
|
|
|
|
opt_inet.h:
|
|
echo "#define INET 1" > opt_inet.h
|
|
|
|
opt_natm.h:
|
|
echo "#define NATM 1" > opt_natm.h
|
|
|
|
.include <bsd.kmod.mk>
|