]> git.saurik.com Git - apple/libc.git/blame_incremental - util/Makefile.inc
Libc-594.9.5.tar.gz
[apple/libc.git] / util / Makefile.inc
... / ...
CommitLineData
1.PATH: ${.CURDIR}/${MACHINE_ARCH}/util ${.CURDIR}/util
2
3MISRCS += login_tty.c logwtmp.c pty.c fparseln.c opendev.c
4
5.ifdef FEATURE_LEGACY_UTMP_APIS
6MISRCS += login.c logout.c
7.endif
8
9.for _src in fparseln.c
10CFLAGS-${_src} += -D__FBSDID=__RCSID
11.endfor
12
13.if ${LIB} == "c"
14MAN3 += fparseln.3 opendev.3 openpty.3
15
16.ifdef FEATURE_LEGACY_UTMP_APIS
17MAN3 += login.3
18.endif
19
20MLINKS += openpty.3 forkpty.3
21MLINKS += openpty.3 login_tty.3
22.ifdef FEATURE_LEGACY_UTMP_APIS
23MLINKS += login.3 logwtmp.3
24MLINKS += login.3 logout.3
25.endif
26.endif