Home | History | Annotate | Line # | Download | only in v7fs
Makefile revision 1.2
      1  1.2   rin #	$NetBSD: Makefile,v 1.2 2019/02/17 04:06:00 rin Exp $
      2  1.1  tron 
      3  1.1  tron .include "../Makefile.inc"
      4  1.1  tron 
      5  1.1  tron .PATH:	${S}/fs/v7fs
      6  1.1  tron 
      7  1.1  tron KMOD=		v7fs
      8  1.1  tron CPPFLAGS+=	-DV7FS_EI
      9  1.1  tron 
     10  1.1  tron SRCS=	v7fs_endian.c
     11  1.1  tron SRCS+=	v7fs_superblock.c
     12  1.1  tron SRCS+=	v7fs_inode.c
     13  1.1  tron SRCS+=	v7fs_dirent.c
     14  1.1  tron SRCS+=	v7fs_datablock.c
     15  1.1  tron SRCS+=	v7fs_file.c
     16  1.1  tron SRCS+=	v7fs_io.c
     17  1.1  tron SRCS+=	v7fs_file_util.c
     18  1.1  tron SRCS+=	v7fs_inode_util.c
     19  1.1  tron SRCS+=	v7fs_superblock_util.c
     20  1.1  tron SRCS+=	v7fs_io_kern.c
     21  1.1  tron SRCS+=	v7fs_extern.c
     22  1.1  tron SRCS+=	v7fs_vnops.c
     23  1.1  tron SRCS+=	v7fs_vfsops.c
     24  1.1  tron 
     25  1.2   rin WARNS=	3
     26  1.2   rin 
     27  1.1  tron .include <bsd.kmodule.mk>
     28