freebsd-dev/lkm/atapi/Makefile
Peter Wemm faafde1bc3 Add extra export symbols for the ATAPI generic interface.
And a couple of minor fiddles in the process..
1995-10-28 17:46:58 +00:00

33 lines
798 B
Makefile

.PATH: ${.CURDIR}/../../sys/i386/isa
KMOD = atapi_mod
SRCS = atapi.c wdc.h #wcd.h
NOMAN =
BINDIR = /lkm
CFLAGS += -nostdinc -I. -I/sys -DATAPI -DATAPI_MODULE
CLEANFILES += $(KMOD) machine wdc.h wcd.h *.b
LN = ln -f -s
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
load: ${PROG}
/sbin/modload -u -e atapi_mod $(PROG)
unload: ${PROG}
/sbin/modunload -n atapi
wdc.h:
echo "#define NWDC 2" > wdc.h
# echo "#define NWD 4" >> wdc.h
wcd.h:
echo "#define NWCD 1" > wcd.h
.c.o:
-@$(LN) /sys/i386/include machine
$(CC) $(CFLAGS) -c $<
-@rm machine
.include <bsd.kmod.mk>