blob: c1795ae2a63d6383637ddebff89fbafce1ca30b2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
# $OpenBSD: Makefile,v 1.2 2023/08/14 08:56:20 kn Exp $
PROG= chmod
CFLAGS+=-DSUPPORT_DOT
LINKS= ${BINDIR}/chmod ${BINDIR}/chgrp \
${BINDIR}/chmod /sbin/chown
# XXX compatibility
afterinstall:
(cd ${DESTDIR}/usr/sbin; \
ln -sf ../../sbin/chown .; \
ln -sf ../../bin/chgrp .)
(cd ${DESTDIR}/usr/bin; \
ln -sf ../../bin/chmod chflags)
.PATH: ${.CURDIR}/../../../bin/chmod
.include <bsd.prog.mk>
|