aboutsummaryrefslogtreecommitdiff
path: root/apps/Makefile.in
diff options
context:
space:
mode:
authorRichard Levitte <richard@levitte.org>2016-01-29 18:07:37 +0100
committerRichard Levitte <richard@levitte.org>2016-01-29 18:36:57 +0100
commit1740c16265a1630d12af1412d49c24ef25626590 (patch)
tree2c39365f20d0a10bcf76a9157bdc3a2d4e195f3a /apps/Makefile.in
parentddf47a10cd351a9e09fb8886d0567e997fa75e55 (diff)
downloadopenssl-1740c16265a1630d12af1412d49c24ef25626590.zip
openssl-1740c16265a1630d12af1412d49c24ef25626590.tar.gz
openssl-1740c16265a1630d12af1412d49c24ef25626590.tar.bz2
Configure et al: split up the lflags configuration item into two
The lflags configuration had a weird syntax with a % as separator. If it was present, whatever came before ended up as PEX_LIBS in Makefile (usually, this is LDFLAGS), while whatever came after ended up as EX_LIBS. This change splits that item into lflags and ex_libs, making their use more explicit. Also, PEX_LIBS in all the Makefiles are renamed to LDFLAGS. Reviewed-by: Rich Salz <rsalz@openssl.org>
Diffstat (limited to 'apps/Makefile.in')
-rw-r--r--apps/Makefile.in4
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/Makefile.in b/apps/Makefile.in
index 8d2433b..6be42c1 100644
--- a/apps/Makefile.in
+++ b/apps/Makefile.in
@@ -11,7 +11,7 @@ MAKEFILE= Makefile
PERL= perl
RM= rm -f
-PEX_LIBS=
+LDFLAGS=
EX_LIBS=
EXE_EXT=
@@ -131,7 +131,7 @@ $(EXE): progs.h $(EXE_OBJ) $(DLIBCRYPTO) $(DLIBSSL)
LIBRARIES="$(LIBSSL) $(LIBCRYPTO)" ; \
$(MAKE) -f $(TOP)/Makefile.shared -e \
APPNAME=$(EXE) OBJECTS="$(EXE_OBJ)" \
- LIBDEPS="$(PEX_LIBS) $$LIBRARIES $(EX_LIBS)" \
+ LIBDEPS="$(LDFLAGS) $$LIBRARIES $(EX_LIBS)" \
link_app.$${shlib_target}
progs.h: progs.pl Makefile