summaryrefslogtreecommitdiffstats
path: root/crypto/Makefile.ssl
diff options
context:
space:
mode:
authorRichard Levitte <levitte@openssl.org>2002-06-27 16:39:25 +0000
committerRichard Levitte <levitte@openssl.org>2002-06-27 16:39:25 +0000
commit17085b022caf5975d3288cfdcd071826a7140735 (patch)
tree17ae6a0203600b100bb62d28dfa6989199613fff /crypto/Makefile.ssl
parent4367eb8706605b978d9d8b31ecba20c13f6e08e6 (diff)
Pass CFLAG to dependency makers, so non-standard system include paths are
handled properly. Part of PR 75
Diffstat (limited to 'crypto/Makefile.ssl')
-rw-r--r--crypto/Makefile.ssl4
1 files changed, 2 insertions, 2 deletions
diff --git a/crypto/Makefile.ssl b/crypto/Makefile.ssl
index 48187971d7..7804227eed 100644
--- a/crypto/Makefile.ssl
+++ b/crypto/Makefile.ssl
@@ -136,12 +136,12 @@ lint:
depend:
if [ ! -f buildinf.h ]; then touch buildinf.h; fi # fake buildinf.h if it does not exist
- $(MAKEDEPEND) $(INCLUDE) $(DEPFLAG) $(PROGS) $(LIBSRC)
+ $(MAKEDEPEND) $(CFLAG) $(INCLUDE) $(DEPFLAG) $(PROGS) $(LIBSRC)
if [ ! -s buildinf.h ]; then rm buildinf.h; fi
@for i in $(SDIRS) ;\
do \
(cd $$i && echo "making depend in crypto/$$i..." && \
- $(MAKE) MAKEFILE='${MAKEFILE}' INCLUDES='${INCLUDES}' DEPFLAG='${DEPFLAG}' PERL='${PERL}' depend ); \
+ $(MAKE) MAKEFILE='${MAKEFILE}' INCLUDES='${INCLUDES}' CFLAG='${CFLAG}' DEPFLAG='${DEPFLAG}' PERL='${PERL}' depend ); \
done;
clean: