]> git.cameronkatri.com Git - pw-darwin.git/blob - chpass/Makefile
Fix regression: report if a group already exists when creating it
[pw-darwin.git] / chpass / Makefile
1 # @(#)Makefile 8.2 (Berkeley) 4/2/94
2 # $FreeBSD$
3
4 .include <src.opts.mk>
5
6 .PATH: ${.CURDIR}/../../usr.sbin/pwd_mkdb ${.CURDIR}/../../lib/libc/gen
7
8 PROG= chpass
9 SRCS= chpass.c edit.c field.c pw_scan.c table.c util.c
10 BINOWN= root
11 BINMODE=4555
12 .if ${MK_NIS} != "no"
13 CFLAGS+= -DYP
14 .endif
15 #Some people need this, uncomment to activate
16 #CFLAGS+=-DRESTRICT_FULLNAME_CHANGE
17 CFLAGS+=-I${.CURDIR}/../../usr.sbin/pwd_mkdb -I${.CURDIR}/../../lib/libc/gen -I.
18
19 LIBADD= crypt util
20 .if ${MK_NIS} != "no"
21 LIBADD+= ypclnt
22 .endif
23
24 LINKS= ${BINDIR}/chpass ${BINDIR}/chfn
25 LINKS+= ${BINDIR}/chpass ${BINDIR}/chsh
26 .if ${MK_NIS} != "no"
27 LINKS+= ${BINDIR}/chpass ${BINDIR}/ypchpass
28 LINKS+= ${BINDIR}/chpass ${BINDIR}/ypchfn
29 LINKS+= ${BINDIR}/chpass ${BINDIR}/ypchsh
30 .endif
31
32 MLINKS= chpass.1 chfn.1 chpass.1 chsh.1
33 .if ${MK_NIS} != "no"
34 MLINKS+= chpass.1 ypchpass.1 chpass.1 ypchfn.1 chpass.1 ypchsh.1
35 .endif
36
37 beforeinstall:
38 .for i in chpass chfn chsh ypchpass ypchfn ypchsh
39 .if exists(${DESTDIR}${BINDIR}/$i)
40 -chflags noschg ${DESTDIR}${BINDIR}/$i
41 .endif
42 .endfor
43
44 .if !defined(NO_FSCHG)
45 afterinstall:
46 -chflags schg ${DESTDIR}${BINDIR}/chpass
47 .endif
48
49 .include <bsd.prog.mk>