7f725bcd5c
The NAND Flash environment consists of several distinct components: - NAND framework (drivers harness for NAND controllers and NAND chips) - NAND simulator (NANDsim) - NAND file system (NAND FS) - Companion tools and utilities - Documentation (manual pages) This work is still experimental. Please use with caution. Obtained from: Semihalf Supported by: FreeBSD Foundation, Juniper Networks
11 lines
143 B
Makefile
11 lines
143 B
Makefile
# $FreeBSD$
|
|
|
|
PROG= nandfs
|
|
SRCS= nandfs.c lssnap.c mksnap.c rmsnap.c
|
|
MAN= nandfs.8
|
|
|
|
DPADD= ${LIBNANDFS}
|
|
LDADD= -lnandfs
|
|
|
|
.include <bsd.prog.mk>
|