diff options
| author | Bruce Evans <bde@FreeBSD.org> | 2003-12-29 09:03:38 +0000 |
|---|---|---|
| committer | Bruce Evans <bde@FreeBSD.org> | 2003-12-29 09:03:38 +0000 |
| commit | 8e128ecdf2eb0598c0d39613d52f2361a617ec87 (patch) | |
| tree | 08b209f7a71fbbb688c427dac1f26e47bf8f5611 | |
| parent | 8a1a7f65e224427fa8fd1ec43f0812d42c78ebf7 (diff) | |
Notes
| -rw-r--r-- | sys/modules/raidframe/Makefile | 16 |
1 files changed, 6 insertions, 10 deletions
diff --git a/sys/modules/raidframe/Makefile b/sys/modules/raidframe/Makefile index d4ff5dcae3db..74256f1db05e 100644 --- a/sys/modules/raidframe/Makefile +++ b/sys/modules/raidframe/Makefile @@ -1,9 +1,8 @@ # $FreeBSD$ -KMOD= raidframe -NOMAN= .PATH: ${.CURDIR}/../../dev/raidframe +KMOD= raidframe SRCS= rf_acctrace.c rf_alloclist.c rf_aselect.c rf_callback.c \ rf_chaindecluster.c rf_copyback.c rf_cvscan.c rf_dagdegrd.c \ rf_dagdegwr.c rf_dagffrd.c rf_dagffwr.c rf_dagfuncs.c rf_dagutils.c \ @@ -17,16 +16,13 @@ SRCS= rf_acctrace.c rf_alloclist.c rf_aselect.c rf_callback.c \ rf_raid4.c rf_raid5.c rf_raid5_rotatedspare.c rf_reconbuffer.c \ rf_reconmap.c rf_reconstruct.c rf_reconutil.c rf_revent.c \ rf_shutdown.c rf_sstf.c rf_states.c rf_stripelocks.c rf_strutils.c \ - rf_threadstuff.c rf_utils.c rf_freebsdkintf.c - -SRCS+= opt_raid.h vnode_if.h -RF_DEBUG?= 0 + rf_threadstuff.c rf_utils.c rf_freebsdkintf.c \ + opt_raid.h vnode_if.h RF_AUTOCONFIG?= 1 - -#CFLAGS+= -g +RF_DEBUG?= 0 opt_raid.h: - @echo "#define RAID_AUTOCONFIG ${RF_AUTOCONFIG}" > opt_raid.h - @echo "#define RAID_DEBUG ${RF_DEBUG}" >> opt_raid.h + echo "#define RAID_AUTOCONFIG ${RF_AUTOCONFIG}" > ${.TARGET} + echo "#define RAID_DEBUG ${RF_DEBUG}" >> ${.TARGET} .include <bsd.kmod.mk> |
