diff options
| author | ad <ad@NetBSD.org> | 2008-11-19 18:35:57 +0000 |
|---|---|---|
| committer | ad <ad@NetBSD.org> | 2008-11-19 18:35:57 +0000 |
| commit | 92ce8c6a3d0d42503168f436841d4d67ff639367 (patch) | |
| tree | 19cb8c91d2d69079b7d125f6145b488fc4136db3 /sys/modules/exec_script | |
| parent | b2c01596ed8cf7dd2c8366cd47c73b0c2e732710 (diff) | |
Make the emulations, exec formats, coredump, NFS, and the NFS server
into modules. By and large this commit:
- shuffles header files and ifdefs
- splits code out where necessary to be modular
- adds module glue for each of the components
- adds/replaces hooks for things that can be installed at runtime
Diffstat (limited to 'sys/modules/exec_script')
| -rw-r--r-- | sys/modules/exec_script/Makefile | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/sys/modules/exec_script/Makefile b/sys/modules/exec_script/Makefile new file mode 100644 index 00000000000..46b5f3c26e4 --- /dev/null +++ b/sys/modules/exec_script/Makefile @@ -0,0 +1,12 @@ +# $NetBSD: Makefile,v 1.1 2008/11/19 18:36:08 ad Exp $ + +.include "../Makefile.inc" + +KMOD= exec_script + +CPPFLAGS+= -DEXEC_SCRIPT + +.PATH: ${S}/kern +SRCS= exec_script.c + +.include <bsd.kmodule.mk> |
