From 49fbf8ddcfb70ae9f2cbf966bc238005484d3c67 Mon Sep 17 00:00:00 2001 From: Garrett Wollman Date: Wed, 14 Sep 1994 22:11:51 +0000 Subject: [PATCH] Makefile to generate the ip_mroute_mod.o LKM. After talking this over with DavidG, I've come to the conclusion that unless and until we define a new directory to put these things in, /sbin is the right place. (OSF/1 does a lot worse for non-executables in /sbin...). --- sbin/ip_mroute_mod/Makefile | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 sbin/ip_mroute_mod/Makefile diff --git a/sbin/ip_mroute_mod/Makefile b/sbin/ip_mroute_mod/Makefile new file mode 100644 index 000000000000..7e78283c74bb --- /dev/null +++ b/sbin/ip_mroute_mod/Makefile @@ -0,0 +1,9 @@ +# $Id$ + +.PATH: ${.CURDIR}/../../sys/netinet +KMOD= ip_mroute_mod +SRCS= ip_mroute.c +NOMAN= +CFLAGS+= -DMROUTE_LKM -DMROUTING + +.include