Annotation of OpenXM_contrib/gnuplot/docs/Makefile.in, Revision 1.1.1.3
1.1 maekawa 1: # Makefile.in for GNUPLOT documentation
2: #
3: # Note that the top-level file for documentation is gnuplot.doc.
4: # See README.
5: #
6: # To print manual:
1.1.1.2 maekawa 7: #
8: # For LaTeX
9: # make gnuplot.dvi
10: # (print or view gnuplot.dvi)
11: # or (requires pdflatex)
12: # make pdf
13: # (print or view gnuplot.pdf)
14: # or
15: # make ps
16: # (print or view gnuplot.ps)
17: #
18: # For groff (GNU troff}
19: # make grotxt
20: # (print or view gnuplot.txt)
21: # or
22: # make grodvi
23: # (print or view gnuplot.dvi)
24: # or
25: # make grops
26: # (print or view gnuplot.ps)
27: #
28: # For nroff
29: # make gnuplot.nroff
30: # (print or view gnuplot.nroff)
31: #
32: # For troff
33: # make "TROFF=itroff" troff (use your troff here)
1.1 maekawa 34: #
35:
36: # default is what is needed for interactive gnuplot
1.1.1.3 ! ohara 37: all: gnuplot.gih gnuplot.info
1.1 maekawa 38:
39: # this tells GNU make not to export variables into the environment
40: # But other makes dont understand its significance, so it must
41: # not be the first target in the file. So it is here, before
42: # any variables are created, but after the default target
43: .NOEXPORT:
44:
45: SHELL = /bin/sh
46:
47: prefix = @prefix@
48: exec_prefix = @exec_prefix@
49: bindir = @bindir@
50: datadir = @datadir@
1.1.1.2 maekawa 51: infodir = @infodir@
1.1.1.3 ! ohara 52: mandir = @mandir@
1.1 maekawa 53: srcdir = @srcdir@
1.1.1.2 maekawa 54: top_builddir = ..
1.1 maekawa 55: top_srcdir = @top_srcdir@
56: VPATH = @srcdir@
57:
58: INSTALL = @INSTALL@
59: INSTALL_PROGRAM = @INSTALL_PROGRAM@
60: INSTALL_DATA = @INSTALL_DATA@
61:
62: CC = @CC@
1.1.1.2 maekawa 63: CPP = @CPP@
1.1 maekawa 64: DEFS = @DEFS@
1.1.1.2 maekawa 65: CPPFLAGS = @CPPFLAGS@
1.1 maekawa 66: CFLAGS = @CFLAGS@
1.1.1.2 maekawa 67: INCLUDES = -I.. -I$(top_srcdir) -I$(top_srcdir)/term -I.
1.1 maekawa 68: LDFLAGS = @LDFLAGS@
1.1.1.2 maekawa 69: LIBS = @LIBS@
1.1 maekawa 70:
1.1.1.2 maekawa 71: COMPILE = $(CC) $(DEFS) $(INCLUDES) $(CPPFLAGS) $(CFLAGS)
1.1 maekawa 72: LINK = $(CC) $(CFLAGS) $(LDFLAGS) -o $@
73:
1.1.1.2 maekawa 74: .c.o:
75: $(COMPILE) -c $<
76:
1.1 maekawa 77: # The makeinfo command from GNU texinfo
78: MAKEINFO = makeinfo
79:
1.1.1.2 maekawa 80: # If you want to try doc2texi.el
81: # EMACS = emacs
82:
1.1 maekawa 83: # substitute your troff command (and any flags) for this one
1.1.1.2 maekawa 84: TROFF = troff
85:
86: # LaTeX command, either latex or latex2e or no
87: LATEX = latex
88:
89: # PDFLaTeX command
90: PDFLATEX = pdflatex
1.1 maekawa 91:
92: # substitute your DVI to PostScript conversion program here
1.1.1.2 maekawa 93: DVIPS = dvips
1.1 maekawa 94:
1.1.1.2 maekawa 95: T = ${srcdir}/../term
96: CORETERM = $(T)/aed.trm $(T)/ai.trm $(T)/amiga.trm $(T)/apollo.trm \
97: $(T)/atariaes.trm $(T)/atarivdi.trm $(T)/be.trm $(T)/cgi.trm $(T)/cgm.trm \
98: $(T)/corel.trm $(T)/debug.trm $(T)/djsvga.trm $(T)/dumb.trm $(T)/dxf.trm \
1.1.1.3 ! ohara 99: $(T)/dxy.trm $(T)/eepic.trm $(T)/emf.trm $(T)/emxvga.trm $(T)/epslatex.trm \
! 100: $(T)/epson.trm $(T)/excl.trm $(T)/fg.trm $(T)/fig.trm $(T)/ggi.trm \
! 101: $(T)/gif.trm $(T)/gnugraph.trm $(T)/gpic.trm $(T)/gpr.trm $(T)/grass.trm \
! 102: $(T)/hp26.trm $(T)/hp2648.trm $(T)/hp500c.trm $(T)/hpgl.trm $(T)/hpljii.trm \
! 103: $(T)/hppj.trm $(T)/imagen.trm $(T)/iris4d.trm $(T)/kyo.trm $(T)/latex.trm \
! 104: $(T)/linux.trm $(T)/mac.trm $(T)/metafont.trm $(T)/metapost.trm $(T)/mgr.trm \
! 105: $(T)/mif.trm $(T)/multitos.trm $(T)/next.trm $(T)/openstep.trm $(T)/pbm.trm \
! 106: $(T)/pc.trm $(T)/pdf.trm $(T)/pm.trm $(T)/png.trm $(T)/post.trm \
! 107: $(T)/pslatex.trm $(T)/pstricks.trm $(T)/qms.trm $(T)/regis.trm $(T)/rgip.trm \
! 108: $(T)/svg.trm $(T)/sun.trm \
! 109: $(T)/t410x.trm $(T)/table.trm $(T)/tek.trm $(T)/texdraw.trm $(T)/tgif.trm \
! 110: $(T)/tkcanvas.trm $(T)/tpic.trm $(T)/unixpc.trm $(T)/unixplot.trm \
! 111: $(T)/v384.trm $(T)/vws.trm $(T)/win.trm $(T)/x11.trm $(T)/xlib.trm
1.1.1.2 maekawa 112:
113: DIST_COMMON = README Makefile.in
114:
115: SOURCES = checkdoc.c doc2gih.c doc2hlp.c doc2html.c doc2info.c \
116: doc2ipf.c doc2ms.c doc2rnh.c doc2rtf.c doc2tex.c termdoc.c xref.c
117:
118: HEADERS = doc2x.h xref.h
119:
120: EXTRA_DIST = doc2hlp.com doc2texi.el doc2texi.pl gnuplot.1 gnuplot.doc \
121: gnuplot.texi gpcard.tex lasergnu.1 makefile.ami makefile.dst titlepag.ms \
122: titlepag.tex toc_entr.sty latextut old psdoc
1.1 maekawa 123:
1.1.1.2 maekawa 124: DISTFILES = $(DIST_COMMON) $(SOURCES) $(HEADERS) $(EXTRA_DIST)
125:
126: allterm.h : $(CORETERM)
1.1 maekawa 127: @echo Building allterm.h
1.1.1.2 maekawa 128: @cat $(top_srcdir)/term/*.trm > allterm.c
129: $(CPP) -I$(top_srcdir)/term -DTERM_DRIVER_H -DTERM_HELP allterm.c | \
130: sed '/^ *$$/d;/^#/d' > allterm.h
131: @rm -f allterm.c
1.1 maekawa 132:
133: # for debugging
1.1.1.2 maekawa 134: alldoc: check dvi gih hlp html info ipf ms nroff pdf ps rnh rtf
1.1 maekawa 135:
136: ### [tn]roff documentation
137: troff: gnuplot.ms titlepag.ms
138: @if [ "$(srcdir)" = "$(top_builddir)" ] ; then \
139: tbl gnuplot.ms | eqn | $(TROFF) -ms ; \
140: else \
141: < gnuplot.ms sed "s,titlepag\.ms,$(srcdir)/titlepag\.ms," |\
142: tbl | eqn | $(TROFF) -ms ; \
143: fi
144:
145: nroff: gnuplot.nroff
146:
147: gnuplot.nroff: gnuplot.ms titlepag.ms
148: @if [ "$(srcdir)" = "$(top_builddir)" ] ; then \
149: tbl gnuplot.ms | neqn | nroff -ms | col > gnuplot.nroff ; \
150: else \
151: < gnuplot.ms sed "s,titlepag\.ms,$(srcdir)/titlepag\.ms," |\
152: tbl | neqn | nroff -ms | col > gnuplot.nroff ; \
153: fi
154:
1.1.1.2 maekawa 155: ### groff documentation
156:
157: groff: grotxt grodvi grops
158:
159: grotxt: gnuplot.ms titlepag.ms
160: @if [ "$(srcdir)" = "$(top_builddir)" ] ; then \
161: groff -s -p -t -e -ms -Tlatin1 gnuplot.ms > gnuplot.txt ; \
162: else \
163: sed "s,titlepag\.ms,$(srcdir)/titlepag\.ms," gnuplot.ms |\
164: groff -s -p -t -e -ms -Tlatin1 gnuplot.ms > gnuplot.txt ; \
165: fi
166:
167: grodvi: gnuplot.ms titlepag.ms
168: @if [ "$(srcdir)" = "$(top_builddir)" ] ; then \
169: groff -s -p -t -e -ms -Tdvi gnuplot.ms > gnuplot.dvi ; \
170: else \
171: sed "s,titlepag\.ms,$(srcdir)/titlepag\.ms," gnuplot.ms |\
172: groff -s -p -t -e -ms -Tdvi gnuplot.ms > gnuplot.dvi ; \
173: fi
174:
175: grops: gnuplot.ms titlepag.ms
176: @if [ "$(srcdir)" = "$(top_builddir)" ] ; then \
177: groff -s -p -t -e -ms -Tps gnuplot.ms > gnuplot.ps ; \
178: else \
179: sed "s,titlepag\.ms,$(srcdir)/titlepag\.ms," gnuplot.ms |\
180: groff -s -p -t -e -ms -Tps gnuplot.ms > gnuplot.ps ; \
181: fi
182:
1.1 maekawa 183: ### doc2xxx dependencies
184: ms: gnuplot.ms
185:
186: gnuplot.ms: doc2ms $(srcdir)/gnuplot.doc
187: ./doc2ms $(srcdir)/gnuplot.doc gnuplot.ms
188:
189: doc2ms: doc2ms.o termdoc.o
190: $(LINK) doc2ms.o termdoc.o $(LIBS)
191:
192: doc2ms.o: doc2ms.c allterm.h
193: $(COMPILE) -DALL_TERM_DOC -c $(srcdir)/doc2ms.c
194:
195: ### html
196: html : gnuplot.html
197:
198: gnuplot.html : doc2html $(srcdir)/gnuplot.doc
199: ./doc2html $(srcdir)/gnuplot.doc gnuplot.html
200:
201: doc2html : doc2html.o termdoc.o xref.o
202: $(LINK) doc2html.o termdoc.o xref.o $(LDFLAGS) $(LIBS)
203:
204: doc2html.o: doc2html.c allterm.h
205: $(COMPILE) -DALL_TERM_DOC -c $(srcdir)/doc2html.c
206:
1.1.1.2 maekawa 207: ### PDF documentation
208: pdf: gnuplot.pdf
209:
210: gnuplot.pdf: gnuplot.tex
211: @if test $(PDFLATEX) != no ; then \
212: TEXINPUTS=.:$(srcdir):${TEXINPUTS}: $(PDFLATEX) gnuplot ; \
213: TEXINPUTS=.:$(srcdir):${TEXINPUTS}: $(PDFLATEX) gnuplot ; \
214: else \
215: echo pdflatex not found - cannot build pdf file ; \
216: fi
217:
1.1 maekawa 218: ### LaTeX documentation
219: tex: gnuplot.tex
220:
221: gnuplot.tex: doc2tex $(srcdir)/gnuplot.doc
222: ./doc2tex $(srcdir)/gnuplot.doc gnuplot.tex
223:
224: doc2tex: doc2tex.o termdoc.o
225: $(LINK) doc2tex.o termdoc.o $(LIBS)
226:
227: doc2tex.o: doc2tex.c allterm.h
228: $(COMPILE) -DALL_TERM_DOC -c $(srcdir)/doc2tex.c
229:
230: # this is how to make DVI files
231: dvi: gnuplot.dvi gpcard.dvi
232:
233: gnuplot.dvi: gnuplot.tex titlepag.tex toc_entr.sty
1.1.1.2 maekawa 234: @if test $(LATEX) != no ; then \
235: TEXINPUTS=.:$(srcdir):${TEXINPUTS}: $(LATEX) gnuplot ; \
236: TEXINPUTS=.:$(srcdir):${TEXINPUTS}: $(LATEX) gnuplot ; \
237: else \
238: echo latex not found - cannot build dvi file ; \
239: fi
1.1 maekawa 240:
241: gpcard.dvi: gpcard.tex
242: TEXINPUTS=.:$(srcdir): tex gpcard
243:
1.1.1.2 maekawa 244: ### Postscript format
1.1 maekawa 245: # if pslatex has been installed, add "times" to titlepage.tex
246: ps: gnuplot.ps gpcard.ps
247:
248: gnuplot.ps: gnuplot.dvi
249: $(DVIPS) gnuplot.dvi -o gnuplot.ps
250:
251: gpcard.ps: gpcard.dvi
252: $(DVIPS) gpcard.dvi -o gpcard.ps
253:
254:
255: # this is how to make gnuplot.hlp
256: hlp: gnuplot.hlp
257:
258: gnuplot.hlp: doc2hlp $(srcdir)/gnuplot.doc
259: ./doc2hlp $(srcdir)/gnuplot.doc gnuplot.hlp
260:
261: doc2hlp: doc2hlp.o termdoc.o
262: $(LINK) doc2hlp.o termdoc.o $(LIBS)
263:
1.1.1.2 maekawa 264: ### gnuplot interactive help format
1.1 maekawa 265: gih: gnuplot.gih
266:
267: gnuplot.gih: doc2gih $(srcdir)/gnuplot.doc
268: @rm -f alldoc2gih
269: ./doc2gih $(srcdir)/gnuplot.doc gnuplot.gih
270:
271: doc2gih: doc2gih.o termdoc.o
272: $(LINK) doc2gih.o termdoc.o $(LIBS)
273:
274: # To include all terminals in the .gih file
275: allgih: alldoc2gih $(srcdir)/gnuplot.doc
276: @rm -f doc2gih
277: ./alldoc2gih $(srcdir)/gnuplot.doc gnuplot.gih
278:
279: alldoc2gih: alldoc2gih.o termdoc.o
280: $(LINK) alldoc2gih.o termdoc.o $(LIBS)
281:
282: alldoc2gih.o: doc2gih.c allterm.h
283: $(COMPILE) -DALL_TERM_DOC -c $(srcdir)/doc2gih.c
284: @mv doc2gih.o alldoc2gih.o
285:
1.1.1.2 maekawa 286: ### GNU info format
1.1 maekawa 287: info: gnuplot.info
288:
289: gnuplot.info: doc2info $(srcdir)/gnuplot.doc
290: ./doc2info $(srcdir)/gnuplot.doc gnuplot.info
291:
292: doc2info: doc2info.o termdoc.o xref.o
293: $(LINK) doc2info.o termdoc.o xref.o $(LIBS)
294:
1.1.1.2 maekawa 295: ## An alternative to doc2info.c, Thanks to Bruce Ravel
296: #gnuplot.info: $(srcdir)/gnuplot.texi $(srcdir)/gnuplot.doc
297: # $(MAKEINFO) -I$(srcdir) $(srcdir)/gnuplot.texi --no-split --output=$@
298: #gnuplot.texi: $(srcdir)/doc2info.el $(srcdir)/gnuplot.doc
299: # @if test "$(EMACS)" != no; then \
300: # $(EMACS) -batch -l $(srcdir)/doc2texi.el -f d2t-doc-to-texi; \
301: # else \
302: # @echo No emacs found - cannot create texinfo file; \
303: # fi
304:
1.1 maekawa 305: # this is how to make OS/2 ipfc documentation
306: ipf: gnuplot.ipf
307:
308: gnuplot.ipf: doc2ipf $(srcdir)/gnuplot.doc
309: ./doc2ipf $(srcdir)/gnuplot.doc gnuplot.ipf
310:
311: doc2ipf: doc2ipf.o termdoc.o xref.o
312: $(LINK) doc2ipf.o termdoc.o xref.o $(LIBS)
313:
1.1.1.2 maekawa 314: ### Rich Text Format
1.1 maekawa 315: rtf: gnuplot.rtf
316:
317: gnuplot.rtf: doc2rtf $(srcdir)/gnuplot.doc
318: ./doc2rtf $(srcdir)/gnuplot.doc gnuplot.rtf
319:
320: doc2rtf: doc2rtf.o termdoc.o xref.o
321: $(LINK) doc2rtf.o termdoc.o xref.o $(LIBS)
322:
323: # this is how to make rnh documentation (VMS help format)
324: rnh: gnuplot.rnh
325:
326: gnuplot.rnh: doc2rnh $(srcdir)/gnuplot.doc
327: ./doc2rnh $(srcdir)/gnuplot.doc gnuplot.rnh
328:
329: doc2rnh: doc2rnh.o termdoc.o
330: $(LINK) doc2rnh.o termdoc.o $(LIBS)
331:
332: # end doc2xxx section
333:
334: tutorial: latextut/tutorial.tex
335: ( cd latextut; $(MAKE) )
336:
337: # this is how to check the gnuplot.doc file
1.1.1.2 maekawa 338: check: all checkdoc
339: @./checkdoc < $(srcdir)/gnuplot.doc; \
340: if test $$? -eq 0; then \
341: echo "PASS: gnuplot.doc"; \
342: else \
343: :; \
344: fi
1.1 maekawa 345:
1.1.1.2 maekawa 346: checkdoc: checkdoc.o termdoc.o $(srcdir)/gnuplot.doc
1.1 maekawa 347: $(LINK) checkdoc.o termdoc.o $(LIBS)
348:
349: checkdoc.o: checkdoc.c allterm.h
350: $(COMPILE) -DALL_TERM_DOC -c $(srcdir)/checkdoc.c
351:
352: # For Unix and MSDOS only
1.1.1.3 ! ohara 353: install: install-gih install-info install-man
1.1 maekawa 354:
1.1.1.3 ! ohara 355: install-gih: gnuplot.gih
! 356: $(top_srcdir)/mkinstalldirs $(DESTDIR)$(datadir)
! 357: $(INSTALL_DATA) gnuplot.gih $(DESTDIR)$(datadir)/gnuplot.gih
! 358:
! 359: install-info: gnuplot.info
! 360: $(top_srcdir)/mkinstalldirs $(DESTDIR)$(infodir)
! 361: $(INSTALL_DATA) gnuplot.info $(DESTDIR)$(infodir)/gnuplot.info
! 362: @if (install-info --version && \
! 363: install-info --version | fgrep -i -v debian) >/dev/null 2>&1; then \
! 364: echo "install-info --info-dir=$(DESTDIR)$(infodir) $(DESTDIR)$(infodir)/gnuplot.info";\
! 365: install-info --info-dir=$(DESTDIR)$(infodir) $(DESTDIR)$(infodir)/gnuplot.info || :;\
! 366: else : ; fi
! 367:
! 368: install-man: gnuplot.1
! 369: $(top_srcdir)/mkinstalldirs $(DESTDIR)$(mandir)/man1
! 370: $(INSTALL_DATA) gnuplot.1 $(DESTDIR)$(mandir)/man1/gnuplot.1
! 371:
! 372: uninstall: uninstall-gih uninstall-info uninstall-man
! 373:
! 374: uninstall-gih:
! 375: rm -f $(DESTDIR)$(datadir)/gnuplot.gih
! 376:
! 377: uninstall-info:
! 378: @if (install-info --version && \
! 379: install-info --version | fgrep -i -v debian) >/dev/null 2>&1; then \
! 380: install-info --info-dir=$(DESTDIR)$(infodir) --remove $(DESTDIR)$(infodir)/gnuplot.info; \
! 381: else : ; fi
! 382: rm -f $(DESTDIR)$(infodir)/gnuplot.info
! 383:
! 384: uninstall-man:
! 385: rm -f $(DESTDIR)$(mandir)/man1/gnuplot.1
1.1 maekawa 386:
387: # for VMS only
388: install-vms: gnuplot.hlp
389: $(INSTALL_DATA) gnuplot.hlp $(datadir)/gnuplot.hlp
390:
1.1.1.2 maekawa 391: distdir = $(top_builddir)/$(PACKAGE)-$(VERSION)/$(subdir)
392:
393: subdir = docs
394:
395:
396: distdir: $(DISTFILES)
397: distdir=`cd $(distdir) && pwd`
398: @for file in $(DISTFILES); do \
399: d=$(srcdir); \
400: if test -d $$d/$$file; then \
401: cp -pr $$d/$$file $(distdir)/$$file; \
402: else \
403: test -f $(distdir)/$$file \
404: || ln $$d/$$file $(distdir)/$$file 2> /dev/null \
405: || cp -p $$d/$$file $(distdir)/$$file || :; \
406: fi; \
407: done
408:
1.1 maekawa 409: clean:
1.1.1.2 maekawa 410: -rm -f doc2tex gnuplot.tex gnuplot.dvi \
1.1 maekawa 411: gnuplot.aux gnuplot.log gnuplot.toc \
412: gnuplot.ps gpcard.dvi gpcard.log gpcard.ps \
1.1.1.3 ! ohara 413: alldoc2gih doc2gih gnuplot.gih gnuplot.pdf \
1.1 maekawa 414: doc2hlp gnuplot.hlp \
415: doc2html gnuplot.html \
416: doc2info gnuplot.info* gpltinfo.tex \
417: doc2ipf gnuplot.ipf \
418: doc2ms gnuplot.ms \
419: doc2rnh gnuplot.rnh \
420: doc2rtf gnuplot.rtf \
421: gnuplot.nroff checkdoc *.o core a.out allterm.h
422: ( cd latextut; $(MAKE) clean )
1.1.1.2 maekawa 423: rm -f *.exe
1.1 maekawa 424:
425: mostlyclean: clean
426:
427: distclean: clean
1.1.1.2 maekawa 428: -rm -f Makefile
1.1 maekawa 429:
430: realclean: distclean
1.1.1.2 maekawa 431: -rm -f TAGS
1.1 maekawa 432:
1.1.1.2 maekawa 433: Makefile: Makefile.in ../config.status
434: cd .. \
435: && CONFIG_FILES=$(subdir)/$@ CONFIG_HEADERS= $(SHELL) ./config.status
1.1 maekawa 436:
437: ### Dependencies - do not edit!
438:
439: # all doc2somethings depend on termdoc and either ../term.h or
440: # allterm.h, maybe this would be better as separate object file
441: # (but then we have to change all the other makefiles). Plus then
442: # we cannot make some doc2* filters use allterm.h and others use term.h
443:
1.1.1.2 maekawa 444: TERM_H = $(top_srcdir)/term.h
1.1 maekawa 445:
1.1.1.2 maekawa 446: checkdoc.o: checkdoc.c ../config.h $(top_srcdir)/ansichek.h \
447: $(top_srcdir)/stdfn.h doc2x.h allterm.h
448: alldoc2gih.o: doc2gih.c ../config.h $(top_srcdir)/ansichek.h \
449: $(top_srcdir)/stdfn.h doc2x.h allterm.h
450: doc2gih.o: doc2gih.c ../config.h $(top_srcdir)/ansichek.h \
451: $(top_srcdir)/stdfn.h doc2x.h $(TERM_H)
452: doc2hlp.o: doc2hlp.c ../config.h $(top_srcdir)/ansichek.h \
453: $(top_srcdir)/stdfn.h doc2x.h $(TERM_H)
454: doc2html.o: doc2html.c ../config.h $(top_srcdir)/ansichek.h \
455: $(top_srcdir)/stdfn.h doc2x.h allterm.h
456: doc2info.o: doc2info.c ../config.h $(top_srcdir)/ansichek.h \
457: $(top_srcdir)/stdfn.h doc2x.h $(TERM_H)
458: doc2ipf.o: doc2ipf.c ../config.h $(top_srcdir)/ansichek.h \
459: $(top_srcdir)/stdfn.h doc2x.h $(TERM_H)
460: doc2ms.o: doc2ms.c ../config.h $(top_srcdir)/ansichek.h \
461: $(top_srcdir)/stdfn.h doc2x.h allterm.h
462: doc2rnh.o: doc2rnh.c ../config.h $(top_srcdir)/ansichek.h \
463: $(top_srcdir)/stdfn.h doc2x.h $(TERM_H)
464: doc2rtf.o: doc2rtf.c ../config.h $(top_srcdir)/ansichek.h \
465: $(top_srcdir)/stdfn.h doc2x.h $(TERM_H)
466: doc2tex.o: doc2tex.c ../config.h $(top_srcdir)/ansichek.h \
467: $(top_srcdir)/stdfn.h doc2x.h allterm.h
468: termdoc.o: termdoc.c ../config.h $(top_srcdir)/ansichek.h \
469: $(top_srcdir)/stdfn.h doc2x.h
470: xref.o: xref.c ../config.h $(top_srcdir)/ansichek.h \
471: $(top_srcdir)/stdfn.h doc2x.h xref.h
1.1 maekawa 472:
473: #the end
FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>