blob: 080671083f7792239f30d0e5719b3b70dfd77dc8 (
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
|
# $OpenBSD: Makefile,v 1.35 2012/09/06 19:41:59 tedu Exp $
# $NetBSD: Makefile,v 1.8 1996/05/16 07:03:28 thorpej Exp $
LIB= util
HDRS= util.h imsg.h
SRCS= check_expire.c duid.c getmaxpartitions.c getrawpartition.c login.c \
login_tty.c logout.c logwtmp.c opendev.c passwd.c pty.c readlabel.c \
login_fbtab.c uucplock.c fparseln.c opendisk.c pidfile.c \
fmt_scaled.c imsg.c imsg-buffer.c pkcs5_pbkdf2.c
MAN= check_expire.3 getmaxpartitions.3 getrawpartition.3 isduid.3 login.3 \
opendev.3 openpty.3 pw_init.3 pw_lock.3 readlabelfs.3 uucplock.3 \
fparseln.3 opendisk.3 login_fbtab.3 pidfile.3 fmt_scaled.3 imsg_init.3 \
pkcs5_pbkdf2.3
MLINKS+=imsg_init.3 imsg_read.3
MLINKS+=imsg_init.3 imsg_get.3
MLINKS+=imsg_init.3 imsg_compose.3
MLINKS+=imsg_init.3 imsg_composev.3
MLINKS+=imsg_init.3 imsg_create.3
MLINKS+=imsg_init.3 imsg_add.3
MLINKS+=imsg_init.3 imsg_close.3
MLINKS+=imsg_init.3 imsg_free.3
MLINKS+=imsg_init.3 imsg_flush.3
MLINKS+=imsg_init.3 imsg_clear.3
MLINKS+=imsg_init.3 ibuf_open.3
MLINKS+=imsg_init.3 ibuf_dynamic.3
MLINKS+=imsg_init.3 ibuf_add.3
MLINKS+=imsg_init.3 ibuf_reserve.3
MLINKS+=imsg_init.3 ibuf_seek.3
MLINKS+=imsg_init.3 ibuf_size.3
MLINKS+=imsg_init.3 ibuf_left.3
MLINKS+=imsg_init.3 ibuf_close.3
MLINKS+=imsg_init.3 ibuf_write.3
MLINKS+=imsg_init.3 ibuf_free.3
MLINKS+=imsg_init.3 msgbuf_init.3
MLINKS+=imsg_init.3 msgbuf_clear.3
MLINKS+=imsg_init.3 msgbuf_write.3
MLINKS+=imsg_init.3 msgbuf_drain.3
MLINKS+=login.3 logout.3
MLINKS+=login.3 logwtmp.3
MLINKS+=check_expire.3 login_check_expire.3
MLINKS+=openpty.3 login_tty.3
MLINKS+=openpty.3 forkpty.3
MLINKS+=pw_init.3 pw_setdir.3
MLINKS+=pw_init.3 pw_file.3
MLINKS+=pw_init.3 pw_edit.3
MLINKS+=pw_init.3 pw_prompt.3
MLINKS+=pw_init.3 pw_copy.3
MLINKS+=pw_init.3 pw_scan.3
MLINKS+=pw_init.3 pw_error.3
MLINKS+=pw_lock.3 pw_mkdb.3
MLINKS+=pw_lock.3 pw_abort.3
MLINKS+=uucplock.3 uu_lock.3
MLINKS+=uucplock.3 uu_unlock.3
MLINKS+=uucplock.3 uu_lockerr.3
MLINKS+=uucplock.3 uu_lock_txfr.3
MLINKS+=fmt_scaled.3 scan_scaled.3
includes:
@cd ${.CURDIR}; for i in $(HDRS); do \
j="cmp -s $$i ${DESTDIR}/usr/include/$$i || \
${INSTALL} ${INSTALL_COPY} -o ${BINOWN} -g ${BINGRP} \
-m 444 $$i ${DESTDIR}/usr/include"; \
echo $$j; \
eval "$$j"; \
done
.include <bsd.lib.mk>
|