diff options
author | bde <bde@FreeBSD.org> | 1998-02-01 17:53:56 +0000 |
---|---|---|
committer | bde <bde@FreeBSD.org> | 1998-02-01 17:53:56 +0000 |
commit | c9dfcc430a4693865e51588e8699d35e2621135d (patch) | |
tree | a508c3e6cc10e8d375f44e6edf24e3b9d8938318 /lkm/atapi | |
parent | 88e9a981725144a84636aa162d99b03a6fb8f141 (diff) | |
download | FreeBSD-src-c9dfcc430a4693865e51588e8699d35e2621135d.zip FreeBSD-src-c9dfcc430a4693865e51588e8699d35e2621135d.tar.gz |
Don't handle the `machine' symlink or related include paths here.
bsd.kmod.mk now handles it more generally.
Diffstat (limited to 'lkm/atapi')
-rw-r--r-- | lkm/atapi/Makefile | 12 |
1 files changed, 3 insertions, 9 deletions
diff --git a/lkm/atapi/Makefile b/lkm/atapi/Makefile index 941bb0a..aca410d 100644 --- a/lkm/atapi/Makefile +++ b/lkm/atapi/Makefile @@ -1,12 +1,11 @@ -# $Id: Makefile,v 1.8 1997/02/22 12:47:39 peter Exp $ +# $Id: Makefile,v 1.9 1997/08/07 13:23:31 bde Exp $ .PATH: ${.CURDIR}/../../sys/i386/isa KMOD = atapi_mod SRCS = atapi.c wdc.h opt_atapi.h #wcd.h NOMAN = -CFLAGS += -nostdinc -I. -DATAPI_MODULE -CLEANFILES += $(KMOD) machine wdc.h wcd.h opt_atapi.h *.b -LN = ln -f -s +CFLAGS += -DATAPI_MODULE +CLEANFILES += $(KMOD) wdc.h wcd.h opt_atapi.h *.b EXPORT_SYMS = _atapi_mod _atapi_debug_ptr _atapi_intr_ptr \ _atapi_request_callback_ptr _atapi_request_immediate_ptr \ _atapi_request_wait_ptr _atapi_start_ptr @@ -28,9 +27,4 @@ wcd.h: opt_atapi.h: echo "#define ATAPI 1"> opt_atapi.h -.c.o: - -@$(LN) ${.CURDIR}/../../sys/i386/include machine - $(CC) $(CFLAGS) -c $< - -@rm -f machine - .include <bsd.kmod.mk> |