diff options
author | bde <bde@FreeBSD.org> | 1999-11-28 18:53:47 +0000 |
---|---|---|
committer | bde <bde@FreeBSD.org> | 1999-11-28 18:53:47 +0000 |
commit | d7156780d39bcfe9261d9a092c4b4fcbf122a73e (patch) | |
tree | 18228d1b21d9e19229ad8461e2b326297d531fef /sys/modules/linux | |
parent | 927cbd2a6cdb5a394f334292d5ba382cf783967f (diff) | |
download | FreeBSD-src-d7156780d39bcfe9261d9a092c4b4fcbf122a73e.zip FreeBSD-src-d7156780d39bcfe9261d9a092c4b4fcbf122a73e.tar.gz |
Removed special rules for building and cleaning device interface files
and empty options files. The rules are now generated automatically in
bsd.kmod.mk. Cleaned up related things ($S and ${CLEANFILES}).
Diffstat (limited to 'sys/modules/linux')
-rw-r--r-- | sys/modules/linux/Makefile | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/sys/modules/linux/Makefile b/sys/modules/linux/Makefile index 2c186f6..7c5a53e 100644 --- a/sys/modules/linux/Makefile +++ b/sys/modules/linux/Makefile @@ -14,8 +14,7 @@ MAN8= linux.8 # CFLAGS+= -DDEBUG EXPORT_SYMS=_linux_mod -CLEANFILES+= vnode_if.h vnode_if.c linux_genassym.o linux_genassym \ - linux_assym.h opt_compat.h opt_linux.h opt_vmpage.h +CLEANFILES= linux_assym.h linux_genassym linux_genassym.o build-tools: linux_genassym @@ -35,9 +34,6 @@ linux_genassym: linux_genassym.o opt_compat.h: echo "#define COMPAT_43 1" > opt_compat.h -opt_linux.h opt_vmpage.h: - touch ${.TARGET} - afterinstall: ${INSTALL} -c -o ${BINOWN} -g ${BINGRP} -m ${BINMODE} \ ${.CURDIR}/linux.sh ${DESTDIR}/usr/sbin/linux |