diff options
author | peter <peter@FreeBSD.org> | 1998-11-03 06:50:58 +0000 |
---|---|---|
committer | peter <peter@FreeBSD.org> | 1998-11-03 06:50:58 +0000 |
commit | b1b96c5c5fb0fbd478126102b4f3dad3e3327839 (patch) | |
tree | ab762c7905600c4383e85bf22ec953f408e5000a | |
parent | 817fa589a992f411c1b59a90e3672f63b0840275 (diff) | |
download | FreeBSD-src-b1b96c5c5fb0fbd478126102b4f3dad3e3327839.zip FreeBSD-src-b1b96c5c5fb0fbd478126102b4f3dad3e3327839.tar.gz |
Build KLD modules, these work for both a.out and elf.
-rw-r--r-- | sys/Makefile | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/sys/Makefile b/sys/Makefile index 470207d..7245dc0 100644 --- a/sys/Makefile +++ b/sys/Makefile @@ -1,4 +1,4 @@ -# $Id: Makefile,v 1.12 1998/10/04 00:42:08 gpalmer Exp $ +# $Id: Makefile,v 1.13 1998/10/11 18:39:38 rnordier Exp $ # This is the old aout only boot loader. .if exists(${MACHINE}/boot) && ${OBJFORMAT} == "aout" @@ -11,6 +11,9 @@ SUBDIR= boot SUBDIR= boot .endif +# KLD modules build for both a.out and ELF +SUBDIR+=modules + HTAGSFLAGS+= -at `awk -F= '/^RELEASE *=/{release=$2}; END {print "FreeBSD", release, "kernel"}' < conf/newvers.sh` .include <bsd.subdir.mk> |