blob: c43a4c710acdd285cd4355ffc2d0e8f1a32a63ba (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
# $NetBSD: Makefile,v 1.25 2012/03/21 05:37:43 matt Exp $
#
.include <bsd.own.mk>
USE_FORT?= yes # data-driven bugs?
WARNS?= 5
LIB= puffs
SRCS= puffs.c callcontext.c creds.c \
paths.c pnode.c \
subr.c
MAN= puffs.3 puffs_cc.3 puffs_cred.3 puffs_flush.3 \
puffs_framebuf.3 puffs_node.3 puffs_ops.3 puffs_path.3
INCS= puffs.h
INCSDIR= /usr/include
LINTFLAGS+=-S -w
.if defined(__MINIX)
.PATH: ${NETBSDSRCDIR}/minix/lib/libpuffs
SRCS+= inode.c link.c main.c misc.c mount.c open.c path.c \
protect.c read.c stadir.c time.c utility.c \
table.c
CPPFLAGS+= -D_MINIX_SYSTEM -I${.CURDIR} -I${NETBSDSRCDIR}/minix/lib/libpuffs
NOGCCERROR=yes
.endif # defined(__MINIX)
.include <bsd.lib.mk>
|