diff options
author | julian <julian@FreeBSD.org> | 2001-02-25 05:34:33 +0000 |
---|---|---|
committer | julian <julian@FreeBSD.org> | 2001-02-25 05:34:33 +0000 |
commit | 97a8f9ea5a4292e6c172bcd4b10504de3572cfe7 (patch) | |
tree | e4fc2753f346b033d341aefea141ba10dde76963 /sys/modules | |
parent | 5f7d2c9e8ba2a488294c7aa25d3cd0ee11fd5482 (diff) | |
download | FreeBSD-src-97a8f9ea5a4292e6c172bcd4b10504de3572cfe7.zip FreeBSD-src-97a8f9ea5a4292e6c172bcd4b10504de3572cfe7.tar.gz |
Add a Makefile for the sample node so It can be compiled.
This helps to stop it from geting out of sync.
It is not part of the normal build but I can use it with all the others
when I make changes to netgraph to ensure it is buildable.
Diffstat (limited to 'sys/modules')
-rw-r--r-- | sys/modules/netgraph/sample/Makefile | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/sys/modules/netgraph/sample/Makefile b/sys/modules/netgraph/sample/Makefile new file mode 100644 index 0000000..156cc6f --- /dev/null +++ b/sys/modules/netgraph/sample/Makefile @@ -0,0 +1,7 @@ +# $FreeBSD$ + +KMOD= ng_sample +SRCS= ng_sample.c +NOMAN= + +.include <bsd.kmod.mk> |