mirror of
https://github.com/opnsense/src.git
synced 2026-02-13 07:44:48 -05:00
set and directories are being (re)made; build the procname ($0) stuff, don't install miniperl. (Miniperl needs a revisit).
32 lines
589 B
Makefile
32 lines
589 B
Makefile
# $FreeBSD$
|
|
|
|
LIB= perl
|
|
|
|
CFLAGS+=-I${.OBJDIR} -I${PERL5SRC} -DPERL_CORE
|
|
|
|
SRCS= perl.c gv.c toke.c perly.c op.c regcomp.c dump.c util.c mg.c \
|
|
hv.c av.c run.c pp_hot.c sv.c pp.c scope.c pp_ctl.c pp_sys.c \
|
|
doop.c doio.c regexec.c utf8.c taint.c deb.c universal.c \
|
|
xsutils.c globals.c perlio.c perlapi.c \
|
|
config.h
|
|
|
|
DPADD= ${LIBM} ${LIBUTIL}
|
|
LDADD= -lm -lutil
|
|
|
|
NO_PERL_SCRIPT_MAKE= true
|
|
|
|
# NOPIC= true
|
|
|
|
.include <bsd.lib.mk>
|
|
|
|
build-tools: cleandepend
|
|
cd ${.CURDIR} && ${MAKE} lib${LIB}.a
|
|
|
|
config.h: links
|
|
@sh config_h.sh
|
|
|
|
.SUFFIXES:
|
|
|
|
.SUFFIXES: .o .po .So .s .S .c
|
|
|
|
.PATH: ${PERL5SRC}
|