diff options
author | Maksim Stsepanenka <mstsepanenka@gmail.com> | 2017-03-29 01:20:32 +0300 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2017-03-29 08:17:13 +0200 |
commit | d1ddda7e75fdc24b68830b16ea0c2179436e4886 (patch) | |
tree | 5c58aba0454217f65916491a171d105c1d118d8a /docs | |
parent | 2066072ff20bea7a25d5506ab3ed7f9547f1f010 (diff) |
make: use the variable MAKE for recursive calls
Closes #1366
Diffstat (limited to 'docs')
-rw-r--r-- | docs/Makefile.am | 6 | ||||
-rw-r--r-- | docs/libcurl/Makefile.am | 4 |
2 files changed, 5 insertions, 5 deletions
diff --git a/docs/Makefile.am b/docs/Makefile.am index 98ea29310..f57c00ea1 100644 --- a/docs/Makefile.am +++ b/docs/Makefile.am @@ -47,13 +47,13 @@ MAN2HTML= roffit $< >$@ SUFFIXES = .1 .html .pdf curl.1: - cd cmdline-opts && make + cd cmdline-opts && $(MAKE) html: $(HTMLPAGES) - cd libcurl && make html + cd libcurl && $(MAKE) html pdf: $(PDFPAGES) - cd libcurl && make pdf + cd libcurl && $(MAKE) pdf .1.html: $(MAN2HTML) diff --git a/docs/libcurl/Makefile.am b/docs/libcurl/Makefile.am index 035e12eb4..26fe6c68e 100644 --- a/docs/libcurl/Makefile.am +++ b/docs/libcurl/Makefile.am @@ -48,13 +48,13 @@ libcurl-symbols.3: $(srcdir)/symbols-in-versions $(srcdir)/mksymbolsmanpage.pl perl $(srcdir)/mksymbolsmanpage.pl < $(srcdir)/symbols-in-versions > $@ html: $(HTMLPAGES) - cd opts && make html + cd opts && $(MAKE) html .3.html: $(MAN2HTML) pdf: $(PDFPAGES) - cd opts && make pdf + cd opts && $(MAKE) pdf .3.pdf: @(foo=`echo $@ | sed -e 's/\.[0-9]$$//g'`; \ |