Changeset e3663f1 in git for doc/Makefile.in
- Timestamp:
- Nov 26, 1999, 2:26:58 PM (23 years ago)
- Branches:
- (u'jengelh-datetime', 'ceac47cbc86fe4a15902392bdbb9bd2ae0ea02c6')(u'spielwiese', 'f875bbaccd0831e36aaed09ff6adeb3eb45aeb94')
- Children:
- a89a22ce7744ac91b8406062c921c8beb8c652a0
- Parents:
- eafea962f93f83bf5e7f3f7080a9b839fb4b3b00
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
doc/Makefile.in
reafea9 re3663f1 2 2 ### 3 3 ### Makefile for Singular documentation 4 ### $Id: Makefile.in,v 1.4 1 1999-11-24 18:50:40obachman Exp $4 ### $Id: Makefile.in,v 1.42 1999-11-26 13:26:54 obachman Exp $ 5 5 ##################################################################### 6 6 SHELL=/bin/sh … … 73 73 # File sets 74 74 # 75 TEX_FILES = copyright.tex 75 STANDALONE_TEXI_FILES = COPYING.texi 76 76 77 DOC2TEX_FILES = \ 77 78 examples.tex general.tex math.tex reference.tex \ … … 163 164 ${PERL5} doc2idx.pl singular.hlp ${HTML_SUBDIR}/${HTML_MANUAL_PREFIX}_cp.idx ${CHKSUM_DB} > singular.idx 164 165 166 ########################################################### 167 # stand-alone targest 168 # 169 170 STANDALONE_TXT_FILES := $(STANDALONE_TEXI_FILES:.texi=.txt) 171 STANDALONE_HTML_FILES := $(STANDALONE_TEXI_FILES:.texi=.html) 172 STANDALONE_FILES := $(STANDALONE_TEXI_FILES:.texi=) 173 165 174 # 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 184 standalone: standalone-txt standalone-html ${STANDALONE_FILES} 185 186 standalone-html: ${STANDALONE_HTML_FILES} 187 standalone-txt: ${STANDALONE_TXT_FILES} 188 168 189 169 190 ########################################################### … … 244 265 /bin/rm -f singular.hlp manual.hlp ${DOC2TEX_FILES} singular.idx 245 266 /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} 246 268 247 269 distclean: clean
Note: See TracChangeset
for help on using the changeset viewer.