Home | History | Annotate | Line # | Download | only in v7fs
Makefile revision 1.3
      1  1.3  christos #	$NetBSD: Makefile,v 1.3 2020/10/18 19:56:42 christos 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.3  christos COPTS.v7fs_superblock.c += ${NO_ADDR_OF_PACKED_MEMBER}
     26  1.3  christos 
     27  1.2       rin WARNS=	3
     28  1.2       rin 
     29  1.1      tron .include <bsd.kmodule.mk>
     30