repo.or.cz
/
netbsd-mini2440.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Sync usage with man page.
[netbsd-mini2440.git]
/
libexec
/
identd
/
Makefile
blob
b41c79f842e5c6a8f743386a8d8102edc8897c7e
1
# $NetBSD: Makefile,v 1.11 2005/04/03 22:15:32 peter Exp $
2
3
.
include
<
bsd.own.mk
>
4
5
PROG
=
identd
6
SRCS
=
identd.c
7
MAN
=
identd
.8
8
9
# Build with IP Filter support?
10
.if
(${
MKIPFILTER
} !=
"no"
)
11
SRCS
+=
ipf.c
12
CPPFLAGS
+=-
I
${
NETBSDSRCDIR
}/
sys
/
dist
/
ipf
-
DWITH_IPF
13
.
endif
14
15
# Build with pf support?
16
.if
(${
MKPF
} !=
"no"
)
17
SRCS
+=
pf.c
18
CPPFLAGS
+=-
DWITH_PF
19
.
endif
20
21
.
include
<
bsd.prog.mk
>