1
0
mirror of https://git.FreeBSD.org/src.git synced 2024-12-14 10:09:48 +00:00

Make it more meta mode friendly.

This commit is contained in:
Jung-uk Kim 2018-09-25 22:15:47 +00:00
parent 4552330800
commit 8f1d871786
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/projects/openssl111/; revision=338935

View File

@ -425,7 +425,7 @@ CFLAGS+= -I${.OBJDIR}
ACFLAGS+= -Wa,--noexecstack
.endif
SRCS+= buildinf.h openssl/opensslconf.h
SRCS+= buildinf.h
CLEANDIRS= openssl
CLEANFILES= buildinf.h opensslconf.h opensslconf.h.tmp
@ -440,9 +440,12 @@ buildinf.h:
echo "static const char compiler_flags[] = \"compiler: ${COMPILER_TYPE}\";" ) \
> ${.TARGET}
openssl/opensslconf.h: opensslconf.h
beforedepend: openssl_opensslconf.h
beforebuild: openssl_opensslconf.h
openssl_opensslconf.h: opensslconf.h
mkdir -p openssl
ln -fs ${.OBJDIR}/${.ALLSRC} ${.TARGET}
ln -fs ${.OBJDIR}/${.ALLSRC} openssl/${.ALLSRC}
opensslconf.h: opensslconf.h.in
.if defined(ASM_${MACHINE_CPUARCH})