diff options
author | n_hibma <n_hibma@FreeBSD.org> | 1999-11-22 03:55:33 +0000 |
---|---|---|
committer | n_hibma <n_hibma@FreeBSD.org> | 1999-11-22 03:55:33 +0000 |
commit | d8abfe2e0a67e2eae34088795be68371256cd597 (patch) | |
tree | 38bca199f7c29124ee341ef66051732c501857d5 /sys/modules/umass/Makefile | |
parent | 2b58b27d2abc3fa4e0a36cd99ff1c12e6859f0f1 (diff) | |
download | FreeBSD-src-d8abfe2e0a67e2eae34088795be68371256cd597.zip FreeBSD-src-d8abfe2e0a67e2eae34088795be68371256cd597.tar.gz |
Clean up the Makefiles, make them consistent with the others and remove
debugging falgs (-g).
Diffstat (limited to 'sys/modules/umass/Makefile')
-rw-r--r-- | sys/modules/umass/Makefile | 18 |
1 files changed, 7 insertions, 11 deletions
diff --git a/sys/modules/umass/Makefile b/sys/modules/umass/Makefile index c73a798..5679cdd 100644 --- a/sys/modules/umass/Makefile +++ b/sys/modules/umass/Makefile @@ -1,31 +1,27 @@ # $FreeBSD$ MAINTAINER = n_hibma@freebsd.org -SOURCE = ${.CURDIR}/../../dev/usb +S = ${.CURDIR}/../.. -.PATH: ${SOURCE} +.PATH: $S/dev/usb KMOD = umass -SRCS = bus_if.h device_if.h vnode_if.h \ +SRCS = bus_if.h device_if.h \ opt_usb.h opt_cam.h opt_scsi.h \ umass.c NOMAN = -#CFLAGS += -g -CFLAGS = -g -CLEANFILES += bus_if.h device_if.h vnode_if.h \ - opt_usb.h opt_cam.h opt_scsi.h \ - vnode_if.c +CLEANFILES += bus_if.h device_if.h \ + opt_usb.h opt_cam.h opt_scsi.h opt_usb.h: echo > opt_usb.h -# echo '#define UMASS_DEBUG 1' >> opt_usb.h opt_scsi.h: echo '#define SCSI_DELAY 15000' > opt_scsi.h opt_cam.h: echo > opt_cam.h bus_if.h: - perl ${KERN}/makedevops.pl -h ${KERN}/bus_if.m + perl $S/kern/makedevops.pl -h $S/kern/bus_if.m device_if.h: - perl ${KERN}/makedevops.pl -h ${KERN}/device_if.m + perl $S/kern/makedevops.pl -h $S/kern/device_if.m .include <bsd.kmod.mk> |