freebsd-dev/gnu/usr.bin/perl/sperl/Makefile
Jordan K. Hubbard d15b7357a8 Install suidperl suid root.
Submitted by:	Jean-Marc Zucconi <jmz@cabri.obs-besancon.fr>
1995-01-14 03:31:27 +00:00

30 lines
487 B
Makefile

#
#
PROG= suidperl
SRCS+= array.c cmd.c cons.c consarg.c
SRCS+= doarg.c doio.c dolist.c dump.c
SRCS+= eval.c form.c hash.c malloc.c
SRCS+= perl.c perly.c regcomp.c regexec.c
SRCS+= stab.c str.c toke.c util.c
SRCS+= usersub.c
.PATH: ${.CURDIR}/../perl
CFLAGS+= -I${.CURDIR}/../perl -DIAMSUID -DTAINT
LDADD= -lm
DPADD= ${LIBM}
LDADD+= -lcrypt
DPADD+= ${LIBCRYPT}
MAN1=
MLINKS+= perl.1 suidperl.1
BINOWN= root
BINMODE=4711
.include "../../Makefile.inc"
.include <bsd.prog.mk>