diff options
author | Thomas E. Dickey <dickey@invisible-island.net> | 1999-08-13 13:40:41 -0400 |
---|---|---|
committer | Thomas E. Dickey <dickey@invisible-island.net> | 1999-08-13 13:40:41 -0400 |
commit | fde43024bd6579b609526faf94dcdbcb6f2bc5e1 (patch) | |
tree | 1d4accd9602108b3cc2693d6c0093469274cc332 /makefile.in | |
parent | 9c512bbadc47a7de000f53f11a7620d83ca0ddba (diff) | |
download | lynx-snapshots-fde43024bd6579b609526faf94dcdbcb6f2bc5e1.tar.gz |
snapshot of project "lynx", label v2-8-3dev_6
Diffstat (limited to 'makefile.in')
-rw-r--r-- | makefile.in | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/makefile.in b/makefile.in index d9079b22..28116f50 100644 --- a/makefile.in +++ b/makefile.in @@ -119,6 +119,7 @@ SITE_DEFS = # Your defines here # -DNO_RULES Disables CERN-style access rules (see lynx.cfg). # -DSHORTENED_RBIND For a SOCKSified lynx with the short version of Rbind. # -DSLANG_MBCS_HACK prevent cutoff lines when using UTF8 console (slang only) +# -DUSE_SCROLLBAR supports scrollbar when built with ncurses # # if you are linking to freeWAIS-0.202 or older, you should define this # in SITE_DEFS @@ -317,16 +318,19 @@ install-bin: $(BINDIR) install-man : $(MANDIR) $(INSTALL_DATA) $(srcdir)/lynx.man $(MANDIR)/lynx.1 -install-doc : $(DOCDIR) +install-doc : $(DOCDIR) $(HELPDIR) @echo Copying sample files (cd $(srcdir) && tar cf - C[HO]* PROBLEMS README samples test ) | \ ( cd $(DOCDIR) && tar xf - ) + $(SHELL) -c 'for name in COPYING COPYHEADER; do \ + cd $(HELPDIR) && ( $(LN_S) $(DOCDIR)/$$name . || cp $(DOCDIR)/$$name . );\ + done' # HPUX 'sed' does not seem to like '=' as pattern delimiter. FIX_SED = tr '=' '%' #FIX_SED = cat -install-help : $(DOCDIR) $(HELPDIR) +install-help : $(HELPDIR) (cd $(HELPDIR) && WD=`pwd` && HEAD=`echo $$WD|sed -e 's@/lynx_help$$@@'` && test $$WD != $$HEAD && rm -rf *) @echo Constructing sed-script @ECHO_CC@sed -e '/^#/d' -e '/^$$/d' \ @@ -373,9 +377,6 @@ install-help : $(DOCDIR) $(HELPDIR) $(LIBDIR)/lynx.tmp >$(LIBDIR)/lynx.cfg chmod 644 $(LIBDIR)/lynx.cfg -rm -f $(LIBDIR)/lynx.tmp - $(SHELL) -c 'for name in COPYING COPYHEADER; do \ - cd $(DOCDIR) && ( $(LN_S) $$name $(HELPDIR)/ || cp $$name $(HELPDIR)/ );\ - done' LYHelp.h : LYHelp.hin @echo Constructing sed-script |