]> CyberLeo.Net >> Repos - FreeBSD/releng/9.2.git/blob - tools/regression/priv/Makefile
- Copy stable/9 to releng/9.2 as part of the 9.2-RELEASE cycle.
[FreeBSD/releng/9.2.git] / tools / regression / priv / Makefile
1 #
2 # $FreeBSD$
3 #
4
5 .include <bsd.own.mk>
6
7 PROG=   priv
8 SRCS=   main.c                          \
9         priv_acct.c                     \
10         priv_adjtime.c                  \
11         priv_audit_control.c            \
12         priv_audit_getaudit.c           \
13         priv_audit_setaudit.c           \
14         priv_audit_submit.c             \
15         priv_clock_settime.c            \
16         priv_cred.c                     \
17         priv_io.c                       \
18         priv_kenv_set.c                 \
19         priv_kenv_unset.c               \
20         priv_msgbuf.c                   \
21         priv_netinet_ipsec.c            \
22         priv_netinet_raw.c              \
23         priv_proc_setlogin.c            \
24         priv_proc_setrlimit.c           \
25         priv_sched_rtprio.c             \
26         priv_sched_setpriority.c        \
27         priv_settimeofday.c             \
28         priv_sysctl_write.c             \
29         priv_vfs_chflags.c              \
30         priv_vfs_chmod.c                \
31         priv_vfs_chown.c                \
32         priv_vfs_chroot.c               \
33         priv_vfs_clearsugid.c           \
34         priv_vfs_extattr_system.c       \
35         priv_vfs_fhopen.c               \
36         priv_vfs_fhstat.c               \
37         priv_vfs_fhstatfs.c             \
38         priv_vfs_generation.c           \
39         priv_vfs_getfh.c                \
40         priv_vfs_read_write.c           \
41         priv_vfs_setgid.c               \
42         priv_vfs_stickyfile.c           \
43         priv_vfs_utimes.c               \
44         priv_vm_madv_protect.c          \
45         priv_vm_mlock.c                 \
46         priv_vm_munlock.c
47
48 NO_MAN=
49 WARNS?= 3
50
51 DPADD+= ${LIBIPSEC}
52 LDADD+= -lipsec
53
54 .if ${MK_INET6_SUPPORT} != "no"
55 CFLAGS+= -DINET6
56 .endif
57
58 .include <bsd.prog.mk>