Changeset e3663f1 in git for doc/Makefile.in


Ignore:
Timestamp:
Nov 26, 1999, 2:26:58 PM (24 years ago)
Author:
Olaf Bachmann <obachman@…>
Branches:
(u'spielwiese', '17f1d200f27c5bd38f5dfc6e8a0879242279d1d8')
Children:
a89a22ce7744ac91b8406062c921c8beb8c652a0
Parents:
eafea962f93f83bf5e7f3f7080a9b839fb4b3b00
Message:
* Emacs stuff


git-svn-id: file:///usr/local/Singular/svn/trunk@3928 2c84dea3-7e68-4137-9b89-c4e89433aadc
File:
1 edited

Legend:

Unmodified
Added
Removed
  • doc/Makefile.in

    reafea9 re3663f1  
    22###
    33### Makefile for Singular documentation
    4 ### $Id: Makefile.in,v 1.41 1999-11-24 18:50:40 obachman Exp $
     4### $Id: Makefile.in,v 1.42 1999-11-26 13:26:54 obachman Exp $
    55#####################################################################
    66SHELL=/bin/sh
     
    7373# File sets
    7474#
    75 TEX_FILES       = copyright.tex
     75STANDALONE_TEXI_FILES   = COPYING.texi
     76
    7677DOC2TEX_FILES   = \
    7778                examples.tex general.tex math.tex reference.tex \
     
    163164        ${PERL5} doc2idx.pl singular.hlp ${HTML_SUBDIR}/${HTML_MANUAL_PREFIX}_cp.idx ${CHKSUM_DB} > singular.idx
    164165
     166###########################################################
     167# stand-alone targest
     168#
     169
     170STANDALONE_TXT_FILES := $(STANDALONE_TEXI_FILES:.texi=.txt)
     171STANDALONE_HTML_FILES := $(STANDALONE_TEXI_FILES:.texi=.html)
     172STANDALONE_FILES      := $(STANDALONE_TEXI_FILES:.texi=)
     173
    165174# targets which produce stand-alone documents
    166 COPYING: copyright.tex
    167         ${MAKEINFO} --no-header --paragraph-indent none -o COPYING copyright.tex
     175%.txt :  %.texi
     176        ${MAKEINFO} --no-header --paragraph-indent none -o $@ $<
     177
     178%.html : %.texi
     179        ${TEXI2HTML} -init_file t2h_standalone.init -verbose -split none -o $@ $<
     180
     181% : %.txt
     182        cp $< $@
     183
     184standalone: standalone-txt standalone-html ${STANDALONE_FILES}
     185
     186standalone-html: ${STANDALONE_HTML_FILES}
     187standalone-txt:  ${STANDALONE_TXT_FILES}
     188
    168189
    169190###########################################################
     
    244265        /bin/rm -f singular.hlp manual.hlp  ${DOC2TEX_FILES} singular.idx
    245266        /bin/rm -f ${HTML_SUBDIR}/${HTML_MANUAL_TOP} ${HTML_SUBDIR}/${HTML_TUTOR_TOP}
     267        /bin/rm -rf ${STANDALONE_HTML_FILES} ${STANDALONE_FILES} ${STANDALONE_TXT_FILES}
    246268
    247269distclean: clean
Note: See TracChangeset for help on using the changeset viewer.