From 85684a0b798915ac6bec28222545244db4674854 Mon Sep 17 00:00:00 2001 From: david parsons Date: Sat, 18 Jun 2022 02:23:01 -0700 Subject: [PATCH] bitten by a GNUism; I was using `make -C` to build the exercisers, which isn't portable --- Makefile.in | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile.in b/Makefile.in index 8edec0e..364f9c2 100644 --- a/Makefile.in +++ b/Makefile.in @@ -38,7 +38,7 @@ COMMON=pgm_options.o gethopt.o notspecial.o MAN3PAGES=mkd-callbacks.3 mkd-functions.3 markdown.3 mkd-line.3 all: $(PGMS) $(SAMPLE_PGMS) $(TESTFRAMEWORK) - @BUILD="$(BUILD)" TOPDIR=`pwd` LINK="$(LINK)" make -C tests/exercisers programs + cd tests/exercisers; BUILD="$(BUILD)" TOPDIR=`pwd` LINK="$(LINK)" make programs install: $(PGMS) $(DESTDIR)$(BINDIR) $(DESTDIR)$(LIBDIR) $(DESTDIR)$(INCDIR) $(DESTDIR)$(PKGDIR) $(INSTALL_PROGRAM) $(PGMS) $(DESTDIR)$(BINDIR) @@ -168,7 +168,7 @@ echo: echo.o clean: rm -f $(PGMS) $(TESTFRAMEWORK) $(SAMPLE_PGMS) *.o rm -f $(MKDLIB) `./librarian.sh files $(MKDLIB) VERSION` - @make -C tests/exercisers clean + @cd tests/exercisers; make clean distclean spotless: clean @DISTCLEAN@ @GENERATED_FILES@ @CONFIGURE_FILES@ ./mktags ./blocktags