3ea5059f1e
This should significantly ease "make; make install" loops.
21 lines
392 B
Makefile
21 lines
392 B
Makefile
#
|
|
# $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}
|