Make sure to use $(MAKE) everywhere instead of make.
Part of PR 181
This commit is contained in:
parent
2ead4a5df6
commit
450c73d98b
3 changed files with 3 additions and 3 deletions
|
@ -732,7 +732,7 @@ install: all install_docs
|
|||
done; \
|
||||
( here="`pwd`"; \
|
||||
cd $(INSTALL_PREFIX)$(INSTALLTOP)/lib; \
|
||||
make -f $$here/Makefile link-shared ); \
|
||||
$(MAKE) -f $$here/Makefile link-shared ); \
|
||||
fi
|
||||
|
||||
install_docs:
|
||||
|
|
|
@ -98,7 +98,7 @@ lib: $(LIBOBJ)
|
|||
|
||||
shared:
|
||||
if [ -n "$(SHARED_LIBS)" ]; then \
|
||||
(cd ..; make $(SHARED_LIB)); \
|
||||
(cd ..; $(MAKE) $(SHARED_LIB)); \
|
||||
fi
|
||||
|
||||
libs:
|
||||
|
|
|
@ -65,7 +65,7 @@ lib: $(LIBOBJ)
|
|||
|
||||
shared:
|
||||
if [ -n "$(SHARED_LIBS)" ]; then \
|
||||
(cd ..; make $(SHARED_LIB)); \
|
||||
(cd ..; $(MAKE) $(SHARED_LIB)); \
|
||||
fi
|
||||
|
||||
files:
|
||||
|
|
Loading…
Reference in a new issue