* config.make.in, GNUmakefile.in

Do not hardcode "make". It already gets detected via configure,
          so use the found name, especially on *BSD systems where its called
          gmake



git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/tools/make/trunk@37578 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Sebastian Reitenbach 2014-01-12 07:19:13 +00:00
parent f32e15f0bf
commit 8149f13934
3 changed files with 11 additions and 3 deletions

View file

@ -1,6 +1,13 @@
2014-01-12 Sebastian Reitenbach <sebastia@l00-bugdead-prods.de>
* config.make.in, GNUmakefile.in
Do not hardcode "make". It already gets detected via configure,
so use the found name, especially on *BSD systems where its called
gmake
2014-01-10 Richard Frith-Macdonald <rfm@gnu.org>
* GNUmakefile.in: Implement Sebastien's suggestions for make targets
* GNUmakefile.in: Implement Sebastian's suggestions for make targets
to build/install documentation with or without gnustep-make as a
convenience for packagers.
* Documentation/GNUmakefile: Use uninstalled gnustep-make from

View file

@ -336,10 +336,10 @@ distclean: clean
rm -f config-precomp-test.out config-precomp-test.h.gch config-precomp-test.log
docs:
(cd Documentation; make)
(cd Documentation; $(MAKE))
install-docs:
(cd Documentation; make install)
(cd Documentation; $(MAKE) install)
install-all: install install-docs

View file

@ -162,6 +162,7 @@ INSTALL = @HOST_INSTALL@
INSTALL_PROGRAM = @INSTALL_PROGRAM@
INSTALL_DATA = @INSTALL_DATA@
TAR = @TAR@
MAKE = @GNUMAKE@
MKDIRS = $(GNUSTEP_MAKEFILES)/mkinstalldirs
LATEX2HTML = @LATEX2HTML@