blob: 9aae119584708709a0c964e66923708b50687810 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
# @(#)Makefile 8.3 (Berkeley) 7/19/93
# $Id$
PROG= rdist
SRCS= docmd.c expand.c gram.y lookup.c main.c rshrcmd.c server.c
CFLAGS+=-I${.CURDIR}
YFLAGS=
# To use the old method, which requires setuid-root and all the baggage and
# security holes that goes with it, uncomment:
# CFLAGS+= -DDIRECT_RCMD
# BINOWN= root
# BINMODE=4555
# INSTALLFLAGS=-fschg
.include <bsd.prog.mk>
|