diff options
author | bde <bde@FreeBSD.org> | 1996-06-25 20:13:12 +0000 |
---|---|---|
committer | bde <bde@FreeBSD.org> | 1996-06-25 20:13:12 +0000 |
commit | ad719447f5538e3d96ed1f775db65628e882594d (patch) | |
tree | 67436ef6fb0500f8b9192655da8311444a2726d0 /sys/modules | |
parent | b78ec1326fea8cfb976e7abdf10620439850a0a0 (diff) | |
download | FreeBSD-src-ad719447f5538e3d96ed1f775db65628e882594d.zip FreeBSD-src-ad719447f5538e3d96ed1f775db65628e882594d.tar.gz |
Fixed the `machine' link. It pointed to the wrong place, and was created
too late to be used in all cases. It should probably be created (early)
in bsd.kmod.mk for all LKMs.
Use cc instead of cpp | as for the same reasons as in the kernel makefile.
CFLAGS isn't split up as well as in the kernel makefile, but cc doesn't
pass compiler warning flags to cpp, so there is no need to split it.
Diffstat (limited to 'sys/modules')
-rw-r--r-- | sys/modules/linux/Makefile | 15 |
1 files changed, 9 insertions, 6 deletions
diff --git a/sys/modules/linux/Makefile b/sys/modules/linux/Makefile index e544b7f..d357fb4 100644 --- a/sys/modules/linux/Makefile +++ b/sys/modules/linux/Makefile @@ -1,4 +1,4 @@ -# $Id: Makefile,v 1.6 1996/03/02 20:00:35 peter Exp $ +# $Id: Makefile,v 1.7 1996/03/10 08:42:31 sos Exp $ .PATH: ${.CURDIR}/../../sys/i386/linux KMOD= linux_mod @@ -10,7 +10,6 @@ OBJS= linux_locore.o NOMAN= CFLAGS+= -DLKM -I. -DCOMPAT_43 -DCOMPAT_LINUX #-DDEBUG -CPPFLAGS= -I. -I${.CURDIR}/../../sys EXPORT_SYMS=_linux_mod CLEANFILES+= vnode_if.h vnode_if.c linux_genassym.o linux_genassym machine \ linux_assym.h @@ -19,9 +18,8 @@ linux_assym.h: linux_genassym ./linux_genassym > linux_assym.h linux_locore.o: linux_locore.s linux_assym.h - @if [ ! -h machine ]; then ln -s ${.CURDIR}/../../i386/include machine \ - ; fi - ${CPP} -DLOCORE -DKERNEL ${CPPFLAGS} ${.IMPSRC} | ${AS} ${ASFLAGS} -o ${.TARGET} + ${CC} -c -x assembler-with-cpp -DLOCORE -DKERNEL ${CFLAGS} \ + ${.IMPSRC} -o ${.TARGET} linux_genassym.o: linux_genassym.c linux.h ${CC} -c ${CFLAGS} -UKERNEL ${.IMPSRC} @@ -29,8 +27,13 @@ linux_genassym.o: linux_genassym.c linux.h linux_genassym: linux_genassym.o ${CC} ${CFLAGS} ${.ALLSRC} -o ${.TARGET} +machine: + ln -fs ${.CURDIR}/../../sys/i386/include machine + +vnode_if.h: machine + afterinstall: ${INSTALL} -c -o ${BINOWN} -g ${BINGRP} -m ${BINMODE} \ - ${.CURDIR}/linux ${DESTDIR}/usr/bin + ${.CURDIR}/linux ${DESTDIR}/usr/bin .include <bsd.kmod.mk> |