blob: 3d09019efb44cee46073811a9aeae39be0528862 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
# $NetBSD: Makefile,v 1.1 2012/03/17 16:33:14 jruoho Exp $
NOMAN= # defined
.include <bsd.own.mk>
TESTSDIR= ${TESTSBASE}/usr.bin/id
TESTS_SH= t_groups
TESTS_SH+= t_id
TESTS_SH+= t_whoami
BINDIR= ${TESTSDIR}
PROG= h_id
.PATH: ${NETBSDSRCDIR}/usr.bin/id
SRCS= id.c pwgr.c
COPTS.id.c += -Wno-format-nonliteral
.include <bsd.test.mk>
|