diff options
author | Thomas E. Dickey <dickey@invisible-island.net> | 2021-02-28 19:58:23 +0000 |
---|---|---|
committer | Thomas E. Dickey <dickey@invisible-island.net> | 2021-02-28 19:58:23 +0000 |
commit | d8fb38a2094a590e09976390a8f5af61e2dacaaf (patch) | |
tree | ca86f3a3b847a7af6535f2d47dc783462d399d47 /src | |
parent | 7a1331d963675f18ad2a5c47944bfe5a67d6972a (diff) | |
download | lynx-snapshots-d8fb38a2094a590e09976390a8f5af61e2dacaaf.tar.gz |
snapshot of project "lynx", label v2-9-0dev_6e
Diffstat (limited to 'src')
-rw-r--r-- | src/makefile.in | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/makefile.in b/src/makefile.in index d81003ba..52462265 100644 --- a/src/makefile.in +++ b/src/makefile.in @@ -1,4 +1,4 @@ -# $LynxId: makefile.in,v 1.76 2020/08/28 18:45:56 tom Exp $ +# $LynxId: makefile.in,v 1.77 2021/02/28 15:56:53 tom Exp $ # template-makefile for Lynx src directory SHELL = @CONFIG_SHELL@ @@ -117,20 +117,20 @@ message: @echo "Compiling Lynx sources" do_chartrans_stuff: - -cd chrtrans && $(MAKE_RECUR) \ + -( cd chrtrans && $(MAKE_RECUR) \ SITE_DEFS="$(SITE_DEFS)" \ BUILD_CFLAGS="$(BUILD_CFLAGS)" \ BUILD_CPPFLAGS="$(BUILD_CPPFLAGS)" \ BUILD_LDFLAGS="$(BUILD_LDFLAGS)" \ BUILD_LIBS="$(BUILD_LIBS)" \ - BUILD_CC="$(BUILD_CC)" tables + BUILD_CC="$(BUILD_CC)" tables ) lint: $(LINT) $(LINTOPTS) $(CPP_OPTS) $(C_SRC) 2>&1 |tee $(top_builddir)/lint.lynx clean: rm -f lynx$x core *.core *.leaks *.i *$o *.bak tags TAGS test_* - cd chrtrans && $(MAKE_RECUR) clean + ( cd chrtrans && $(MAKE_RECUR) clean ) tags: $(CTAGS) *.[ch] @@ -209,7 +209,7 @@ TABLES= \ $(CHRTR)viscii_uni.h $(TABLES): - -cd chrtrans && $(MAKE_RECUR) tables + -( cd chrtrans && $(MAKE_RECUR) tables ) UCdomap$o : UCdomap.c \ chrtrans/UCkd.h \ @@ -218,7 +218,7 @@ UCdomap$o : UCdomap.c \ UCdomap.h $(CMN)UCMap.h $(TABLES) $(top_srcdir)/userdefs.h chrtrans/makeuctb$(BUILD_EXEEXT): - cd chrtrans && $(MAKE_RECUR) makeuctb$(BUILD_EXEEXT) + ( cd chrtrans && $(MAKE_RECUR) makeuctb$(BUILD_EXEEXT) ) UCAux$o : UCAux.c $(CMN)UCAux.h $(CMN)UCDefs.h LYCookie$o : $(top_srcdir)/userdefs.h |