Skip to content

Commit

Permalink
Make the syntax for compound command lines more portable (nmake, CygW…
Browse files Browse the repository at this point in the history
…in).

This is probably not sufficient by itself for the info generation, and is
being done mostly to keep the style consistent with additional patches
that will be applied to Doc/Makefile.
  • Loading branch information
freddrake committed Jul 17, 2001
1 parent 3cae66b commit 16649a8
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions Doc/info/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -49,25 +49,25 @@ clobber: clean
# in case we haven't already built the HTML:

$(HTMLDIR)/api/api.html:
(cd $(HTMLDIR); $(MAKE) api)
cd $(HTMLDIR) && $(MAKE) api

$(HTMLDIR)/ext/ext.html:
(cd $(HTMLDIR); $(MAKE) ext)
cd $(HTMLDIR) && $(MAKE) ext

$(HTMLDIR)/lib/lib.html:
(cd $(HTMLDIR); $(MAKE) lib)
cd $(HTMLDIR) && $(MAKE) lib

$(HTMLDIR)/mac/mac.html:
(cd $(HTMLDIR); $(MAKE) mac)
cd $(HTMLDIR) && $(MAKE) mac

$(HTMLDIR)/ref/ref.html:
(cd $(HTMLDIR); $(MAKE) ref)
cd $(HTMLDIR) && $(MAKE) ref

$(HTMLDIR)/tut/tut.html:
(cd $(HTMLDIR); $(MAKE) tut)
cd $(HTMLDIR) && $(MAKE) tut

$(HTMLDIR)/dist/dist.html:
(cd $(HTMLDIR); $(MAKE) dist)
cd $(HTMLDIR) && $(MAKE) dist

$(HTMLDIR)/inst/inst.html:
(cd $(HTMLDIR); $(MAKE) inst)
cd $(HTMLDIR) && $(MAKE) inst

0 comments on commit 16649a8

Please sign in to comment.