freebsd-dev/gnu/usr.bin/perl/miniperl/Makefile

21 lines
392 B
Makefile
Raw Normal View History

#
1999-08-27 23:37:10 +00:00
# $FreeBSD$
#
PROG= miniperl
NOMAN= true
CFLAGS+=-I${PERL5SRC} -I${.OBJDIR}
SRCS= miniperlmain.c config.h
# Miniperl _must_ be static!!
NOSHARED= yes
DPADD= ${LIBPERL} ${LIBM} ${LIBCRYPT}
LDADD= -lperl -lm -lcrypt
# Trick the bootstrap tools into thinking that miniperl is perl.
# This gets overwritten.
LINKS= ${BINDIR}/${PROG} ${BINDIR}/perl
.include <bsd.prog.mk>
.PATH: ${PERL5SRC}