diff options
author | Warner Losh <imp@FreeBSD.org> | 2014-08-04 22:37:02 +0000 |
---|---|---|
committer | Warner Losh <imp@FreeBSD.org> | 2014-08-04 22:37:02 +0000 |
commit | aeaed508982227551b2748339033bb2483382b4d (patch) | |
tree | c03685b1d6ae030d6a0c9b2f8902e105aa1e4fd4 /sys/modules/patm/Makefile | |
parent | b0a8d404e5b942b4ccf1ad17137e33115202c1cf (diff) |
Move most of the 15 variations on generating opt_inet.h and
opt_inet6.h into kmod.mk by forcing almost everybody to eat the same
dogfood. While at it, consolidate the opt_bpf.h and opt_mroute.h
targets here too.
Notes
Notes:
svn path=/head/; revision=269540
Diffstat (limited to 'sys/modules/patm/Makefile')
-rw-r--r-- | sys/modules/patm/Makefile | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/sys/modules/patm/Makefile b/sys/modules/patm/Makefile index 5d5200e73945..7df3165d3eea 100644 --- a/sys/modules/patm/Makefile +++ b/sys/modules/patm/Makefile @@ -12,12 +12,4 @@ SRCS= if_patm.c if_patm_attach.c if_patm_ioctl.c if_patm_intr.c \ CFLAGS+= -DENABLE_BPF # CFLAGS+= -DPATM_DEBUG=0x0 -DINVARIANT_SUPPORT -DINVARIANTS -DDIAGNOSTIC -.if !defined(KERNBUILDDIR) -opt_inet.h: - echo "#define INET 1" > ${.TARGET} - -opt_natm.h: - echo "#define NATM 1" > ${.TARGET} -.endif - .include <bsd.kmod.mk> |