1# ===========================================================================
2#      http://www.gnu.org/software/autoconf-archive/ax_prog_doxygen.html
3# ===========================================================================
4#
5# SYNOPSIS
6#
7#   DX_INIT_DOXYGEN(PROJECT-NAME, DOXYFILE-PATH, [OUTPUT-DIR])
8#   DX_DOXYGEN_FEATURE(ON|OFF)
9#   DX_DOT_FEATURE(ON|OFF)
10#   DX_HTML_FEATURE(ON|OFF)
11#   DX_CHM_FEATURE(ON|OFF)
12#   DX_CHI_FEATURE(ON|OFF)
13#   DX_MAN_FEATURE(ON|OFF)
14#   DX_RTF_FEATURE(ON|OFF)
15#   DX_XML_FEATURE(ON|OFF)
16#   DX_PDF_FEATURE(ON|OFF)
17#   DX_PS_FEATURE(ON|OFF)
18#
19# DESCRIPTION
20#
21#   The DX_*_FEATURE macros control the default setting for the given
22#   Doxygen feature. Supported features are 'DOXYGEN' itself, 'DOT' for
23#   generating graphics, 'HTML' for plain HTML, 'CHM' for compressed HTML
24#   help (for MS users), 'CHI' for generating a seperate .chi file by the
25#   .chm file, and 'MAN', 'RTF', 'XML', 'PDF' and 'PS' for the appropriate
26#   output formats. The environment variable DOXYGEN_PAPER_SIZE may be
27#   specified to override the default 'a4wide' paper size.
28#
29#   By default, HTML, PDF and PS documentation is generated as this seems to
30#   be the most popular and portable combination. MAN pages created by
31#   Doxygen are usually problematic, though by picking an appropriate subset
32#   and doing some massaging they might be better than nothing. CHM and RTF
33#   are specific for MS (note that you can't generate both HTML and CHM at
34#   the same time). The XML is rather useless unless you apply specialized
35#   post-processing to it.
36#
37#   The macros mainly control the default state of the feature. The use can
38#   override the default by specifying --enable or --disable. The macros
39#   ensure that contradictory flags are not given (e.g.,
40#   --enable-doxygen-html and --enable-doxygen-chm,
41#   --enable-doxygen-anything with --disable-doxygen, etc.) Finally, each
42#   feature will be automatically disabled (with a warning) if the required
43#   programs are missing.
44#
45#   Once all the feature defaults have been specified, call DX_INIT_DOXYGEN
46#   with the following parameters: a one-word name for the project for use
47#   as a filename base etc., an optional configuration file name (the
48#   default is 'Doxyfile', the same as Doxygen's default), and an optional
49#   output directory name (the default is 'doxygen-doc').
50#
51#   Automake Support
52#
53#   The following is a template aminclude.am file for use with Automake.
54#   Make targets and variables values are controlled by the various
55#   DX_COND_* conditionals set by autoconf.
56#
57#   The provided targets are:
58#
59#     doxygen-doc: Generate all doxygen documentation.
60#
61#     doxygen-run: Run doxygen, which will generate some of the
62#                  documentation (HTML, CHM, CHI, MAN, RTF, XML)
63#                  but will not do the post processing required
64#                  for the rest of it (PS, PDF, and some MAN).
65#
66#     doxygen-man: Rename some doxygen generated man pages.
67#
68#     doxygen-ps:  Generate doxygen PostScript documentation.
69#
70#     doxygen-pdf: Generate doxygen PDF documentation.
71#
72#   Note that by default these are not integrated into the automake targets.
73#   If doxygen is used to generate man pages, you can achieve this
74#   integration by setting man3_MANS to the list of man pages generated and
75#   then adding the dependency:
76#
77#     $(man3_MANS): doxygen-doc
78#
79#   This will cause make to run doxygen and generate all the documentation.
80#
81#   The following variable is intended for use in Makefile.am:
82#
83#     DX_CLEANFILES = everything to clean.
84#
85#   Then add this variable to MOSTLYCLEANFILES.
86#
87#     ----- begin aminclude.am -------------------------------------
88#
89#     ## --------------------------------- ##
90#     ## Format-independent Doxygen rules. ##
91#     ## --------------------------------- ##
92#
93#     if DX_COND_doc
94#
95#     ## ------------------------------- ##
96#     ## Rules specific for HTML output. ##
97#     ## ------------------------------- ##
98#
99#     if DX_COND_html
100#
101#     DX_CLEAN_HTML = @DX_DOCDIR@/html
102#
103#     endif DX_COND_html
104#
105#     ## ------------------------------ ##
106#     ## Rules specific for CHM output. ##
107#     ## ------------------------------ ##
108#
109#     if DX_COND_chm
110#
111#     DX_CLEAN_CHM = @DX_DOCDIR@/chm
112#
113#     if DX_COND_chi
114#
115#     DX_CLEAN_CHI = @DX_DOCDIR@/@PACKAGE@.chi
116#
117#     endif DX_COND_chi
118#
119#     endif DX_COND_chm
120#
121#     ## ------------------------------ ##
122#     ## Rules specific for MAN output. ##
123#     ## ------------------------------ ##
124#
125#     if DX_COND_man
126#
127#     DX_CLEAN_MAN = @DX_DOCDIR@/man
128#
129#     endif DX_COND_man
130#
131#     ## ------------------------------ ##
132#     ## Rules specific for RTF output. ##
133#     ## ------------------------------ ##
134#
135#     if DX_COND_rtf
136#
137#     DX_CLEAN_RTF = @DX_DOCDIR@/rtf
138#
139#     endif DX_COND_rtf
140#
141#     ## ------------------------------ ##
142#     ## Rules specific for XML output. ##
143#     ## ------------------------------ ##
144#
145#     if DX_COND_xml
146#
147#     DX_CLEAN_XML = @DX_DOCDIR@/xml
148#
149#     endif DX_COND_xml
150#
151#     ## ----------------------------- ##
152#     ## Rules specific for PS output. ##
153#     ## ----------------------------- ##
154#
155#     if DX_COND_ps
156#
157#     DX_CLEAN_PS = @DX_DOCDIR@/@PACKAGE@.ps
158#
159#     DX_PS_GOAL = doxygen-ps
160#
161#     doxygen-ps: @DX_DOCDIR@/@PACKAGE@.ps
162#
163#     @DX_DOCDIR@/@PACKAGE@.ps: @DX_DOCDIR@/@PACKAGE@.tag
164#         cd @DX_DOCDIR@/latex; \
165#         rm -f *.aux *.toc *.idx *.ind *.ilg *.log *.out; \
166#         $(DX_LATEX) refman.tex; \
167#         $(MAKEINDEX_PATH) refman.idx; \
168#         $(DX_LATEX) refman.tex; \
169#         countdown=5; \
170#         while $(DX_EGREP) 'Rerun (LaTeX|to get cross-references right)' \
171#                           refman.log > /dev/null 2>&1 \
172#            && test $$countdown -gt 0; do \
173#             $(DX_LATEX) refman.tex; \
174#             countdown=`expr $$countdown - 1`; \
175#         done; \
176#         $(DX_DVIPS) -o ../@PACKAGE@.ps refman.dvi
177#
178#     endif DX_COND_ps
179#
180#     ## ------------------------------ ##
181#     ## Rules specific for PDF output. ##
182#     ## ------------------------------ ##
183#
184#     if DX_COND_pdf
185#
186#     DX_CLEAN_PDF = @DX_DOCDIR@/@PACKAGE@.pdf
187#
188#     DX_PDF_GOAL = doxygen-pdf
189#
190#     doxygen-pdf: @DX_DOCDIR@/@PACKAGE@.pdf
191#
192#     @DX_DOCDIR@/@PACKAGE@.pdf: @DX_DOCDIR@/@PACKAGE@.tag
193#         cd @DX_DOCDIR@/latex; \
194#         rm -f *.aux *.toc *.idx *.ind *.ilg *.log *.out; \
195#         $(DX_PDFLATEX) refman.tex; \
196#         $(DX_MAKEINDEX) refman.idx; \
197#         $(DX_PDFLATEX) refman.tex; \
198#         countdown=5; \
199#         while $(DX_EGREP) 'Rerun (LaTeX|to get cross-references right)' \
200#                           refman.log > /dev/null 2>&1 \
201#            && test $$countdown -gt 0; do \
202#             $(DX_PDFLATEX) refman.tex; \
203#             countdown=`expr $$countdown - 1`; \
204#         done; \
205#         mv refman.pdf ../@PACKAGE@.pdf
206#
207#     endif DX_COND_pdf
208#
209#     ## ------------------------------------------------- ##
210#     ## Rules specific for LaTeX (shared for PS and PDF). ##
211#     ## ------------------------------------------------- ##
212#
213#     if DX_COND_latex
214#
215#     DX_CLEAN_LATEX = @DX_DOCDIR@/latex
216#
217#     endif DX_COND_latex
218#
219#     .PHONY: doxygen-run doxygen-doc $(DX_PS_GOAL) $(DX_PDF_GOAL)
220#
221#     .INTERMEDIATE: doxygen-run $(DX_PS_GOAL) $(DX_PDF_GOAL)
222#
223#     doxygen-run: @DX_DOCDIR@/@PACKAGE@.tag
224#
225#     doxygen-doc: doxygen-run $(DX_PS_GOAL) $(DX_PDF_GOAL)
226#
227#     @DX_DOCDIR@/@PACKAGE@.tag: $(DX_CONFIG) $(pkginclude_HEADERS)
228#         rm -rf @DX_DOCDIR@
229#         $(DX_ENV) $(DX_DOXYGEN) $(srcdir)/$(DX_CONFIG)
230#         echo Timestamp >$@
231#
232#     DX_CLEANFILES = \
233#         @DX_DOCDIR@/@PACKAGE@.tag \
234#         -r \
235#         $(DX_CLEAN_HTML) \
236#         $(DX_CLEAN_CHM) \
237#         $(DX_CLEAN_CHI) \
238#         $(DX_CLEAN_MAN) \
239#         $(DX_CLEAN_RTF) \
240#         $(DX_CLEAN_XML) \
241#         $(DX_CLEAN_PS) \
242#         $(DX_CLEAN_PDF) \
243#         $(DX_CLEAN_LATEX)
244#
245#     endif DX_COND_doc
246#
247#     ----- end aminclude.am ---------------------------------------
248#
249# LICENSE
250#
251#   Copyright (c) 2009 Oren Ben-Kiki <oren@ben-kiki.org>
252#
253#   Copying and distribution of this file, with or without modification, are
254#   permitted in any medium without royalty provided the copyright notice
255#   and this notice are preserved. This file is offered as-is, without any
256#   warranty.
257
258#serial 13
259
260## ----------##
261## Defaults. ##
262## ----------##
263
264DX_ENV=""
265AC_DEFUN([DX_FEATURE_doc],  ON)
266AC_DEFUN([DX_FEATURE_dot],  OFF)
267AC_DEFUN([DX_FEATURE_man],  OFF)
268AC_DEFUN([DX_FEATURE_html], ON)
269AC_DEFUN([DX_FEATURE_chm],  OFF)
270AC_DEFUN([DX_FEATURE_chi],  OFF)
271AC_DEFUN([DX_FEATURE_rtf],  OFF)
272AC_DEFUN([DX_FEATURE_xml],  OFF)
273AC_DEFUN([DX_FEATURE_pdf],  ON)
274AC_DEFUN([DX_FEATURE_ps],   ON)
275
276## --------------- ##
277## Private macros. ##
278## --------------- ##
279
280# DX_ENV_APPEND(VARIABLE, VALUE)
281# ------------------------------
282# Append VARIABLE="VALUE" to DX_ENV for invoking doxygen.
283AC_DEFUN([DX_ENV_APPEND], [AC_SUBST([DX_ENV], ["$DX_ENV $1='$2'"])])
284
285# DX_DIRNAME_EXPR
286# ---------------
287# Expand into a shell expression prints the directory part of a path.
288AC_DEFUN([DX_DIRNAME_EXPR],
289         [[expr ".$1" : '\(\.\)[^/]*$' \| "x$1" : 'x\(.*\)/[^/]*$']])
290
291# DX_IF_FEATURE(FEATURE, IF-ON, IF-OFF)
292# -------------------------------------
293# Expands according to the M4 (static) status of the feature.
294AC_DEFUN([DX_IF_FEATURE], [ifelse(DX_FEATURE_$1, ON, [$2], [$3])])
295
296# DX_REQUIRE_PROG(VARIABLE, PROGRAM)
297# ----------------------------------
298# Require the specified program to be found for the DX_CURRENT_FEATURE to work.
299AC_DEFUN([DX_REQUIRE_PROG], [
300AC_PATH_TOOL([$1], [$2])
301if test "$DX_FLAG_[]DX_CURRENT_FEATURE$$1" = 1; then
302    AC_MSG_WARN([$2 not found - will not DX_CURRENT_DESCRIPTION])
303    AC_SUBST(DX_FLAG_[]DX_CURRENT_FEATURE, 0)
304fi
305])
306
307# DX_TEST_FEATURE(FEATURE)
308# ------------------------
309# Expand to a shell expression testing whether the feature is active.
310AC_DEFUN([DX_TEST_FEATURE], [test "$DX_FLAG_$1" = 1])
311
312# DX_CHECK_DEPEND(REQUIRED_FEATURE, REQUIRED_STATE)
313# -------------------------------------------------
314# Verify that a required features has the right state before trying to turn on
315# the DX_CURRENT_FEATURE.
316AC_DEFUN([DX_CHECK_DEPEND], [
317test "$DX_FLAG_$1" = "$2" \
318|| AC_MSG_ERROR([doxygen-DX_CURRENT_FEATURE ifelse([$2], 1,
319                            requires, contradicts) doxygen-DX_CURRENT_FEATURE])
320])
321
322# DX_CLEAR_DEPEND(FEATURE, REQUIRED_FEATURE, REQUIRED_STATE)
323# ----------------------------------------------------------
324# Turn off the DX_CURRENT_FEATURE if the required feature is off.
325AC_DEFUN([DX_CLEAR_DEPEND], [
326test "$DX_FLAG_$1" = "$2" || AC_SUBST(DX_FLAG_[]DX_CURRENT_FEATURE, 0)
327])
328
329# DX_FEATURE_ARG(FEATURE, DESCRIPTION,
330#                CHECK_DEPEND, CLEAR_DEPEND,
331#                REQUIRE, DO-IF-ON, DO-IF-OFF)
332# --------------------------------------------
333# Parse the command-line option controlling a feature. CHECK_DEPEND is called
334# if the user explicitly turns the feature on (and invokes DX_CHECK_DEPEND),
335# otherwise CLEAR_DEPEND is called to turn off the default state if a required
336# feature is disabled (using DX_CLEAR_DEPEND). REQUIRE performs additional
337# requirement tests (DX_REQUIRE_PROG). Finally, an automake flag is set and
338# DO-IF-ON or DO-IF-OFF are called according to the final state of the feature.
339AC_DEFUN([DX_ARG_ABLE], [
340    AC_DEFUN([DX_CURRENT_FEATURE], [$1])
341    AC_DEFUN([DX_CURRENT_DESCRIPTION], [$2])
342    AC_ARG_ENABLE(doxygen-$1,
343                  [AS_HELP_STRING(DX_IF_FEATURE([$1], [--disable-doxygen-$1],
344                                                      [--enable-doxygen-$1]),
345                                  DX_IF_FEATURE([$1], [don't $2], [$2]))],
346                  [
347case "$enableval" in
348#(
349y|Y|yes|Yes|YES)
350    AC_SUBST([DX_FLAG_$1], 1)
351    $3
352;; #(
353n|N|no|No|NO)
354    AC_SUBST([DX_FLAG_$1], 0)
355;; #(
356*)
357    AC_MSG_ERROR([invalid value '$enableval' given to doxygen-$1])
358;;
359esac
360], [
361AC_SUBST([DX_FLAG_$1], [DX_IF_FEATURE([$1], 1, 0)])
362$4
363])
364if DX_TEST_FEATURE([$1]); then
365    $5
366    :
367fi
368AM_CONDITIONAL(DX_COND_$1, DX_TEST_FEATURE([$1]))
369if DX_TEST_FEATURE([$1]); then
370    $6
371    :
372else
373    $7
374    :
375fi
376])
377
378## -------------- ##
379## Public macros. ##
380## -------------- ##
381
382# DX_XXX_FEATURE(DEFAULT_STATE)
383# -----------------------------
384AC_DEFUN([DX_DOXYGEN_FEATURE], [AC_DEFUN([DX_FEATURE_doc],  [$1])])
385AC_DEFUN([DX_DOT_FEATURE],     [AC_DEFUN([DX_FEATURE_dot], [$1])])
386AC_DEFUN([DX_MAN_FEATURE],     [AC_DEFUN([DX_FEATURE_man],  [$1])])
387AC_DEFUN([DX_HTML_FEATURE],    [AC_DEFUN([DX_FEATURE_html], [$1])])
388AC_DEFUN([DX_CHM_FEATURE],     [AC_DEFUN([DX_FEATURE_chm],  [$1])])
389AC_DEFUN([DX_CHI_FEATURE],     [AC_DEFUN([DX_FEATURE_chi],  [$1])])
390AC_DEFUN([DX_RTF_FEATURE],     [AC_DEFUN([DX_FEATURE_rtf],  [$1])])
391AC_DEFUN([DX_XML_FEATURE],     [AC_DEFUN([DX_FEATURE_xml],  [$1])])
392AC_DEFUN([DX_XML_FEATURE],     [AC_DEFUN([DX_FEATURE_xml],  [$1])])
393AC_DEFUN([DX_PDF_FEATURE],     [AC_DEFUN([DX_FEATURE_pdf],  [$1])])
394AC_DEFUN([DX_PS_FEATURE],      [AC_DEFUN([DX_FEATURE_ps],   [$1])])
395
396# DX_INIT_DOXYGEN(PROJECT, [CONFIG-FILE], [OUTPUT-DOC-DIR])
397# ---------------------------------------------------------
398# PROJECT also serves as the base name for the documentation files.
399# The default CONFIG-FILE is "Doxyfile" and OUTPUT-DOC-DIR is "doxygen-doc".
400AC_DEFUN([DX_INIT_DOXYGEN], [
401
402# Files:
403AC_SUBST([DX_PROJECT], [$1])
404AC_SUBST([DX_CONFIG], [ifelse([$2], [], Doxyfile, [$2])])
405AC_SUBST([DX_DOCDIR], [ifelse([$3], [], doxygen-doc, [$3])])
406
407# Environment variables used inside doxygen.cfg:
408DX_ENV_APPEND(SRCDIR, $srcdir)
409DX_ENV_APPEND(PROJECT, $DX_PROJECT)
410DX_ENV_APPEND(DOCDIR, $DX_DOCDIR)
411DX_ENV_APPEND(VERSION, $PACKAGE_VERSION)
412
413# Doxygen itself:
414DX_ARG_ABLE(doc, [generate any doxygen documentation],
415            [],
416            [],
417            [DX_REQUIRE_PROG([DX_DOXYGEN], doxygen)
418             DX_REQUIRE_PROG([DX_PERL], perl)],
419            [DX_ENV_APPEND(PERL_PATH, $DX_PERL)])
420
421# Dot for graphics:
422DX_ARG_ABLE(dot, [generate graphics for doxygen documentation],
423            [DX_CHECK_DEPEND(doc, 1)],
424            [DX_CLEAR_DEPEND(doc, 1)],
425            [DX_REQUIRE_PROG([DX_DOT], dot)],
426            [DX_ENV_APPEND(HAVE_DOT, YES)
427             DX_ENV_APPEND(DOT_PATH, [`DX_DIRNAME_EXPR($DX_DOT)`])],
428            [DX_ENV_APPEND(HAVE_DOT, NO)])
429
430# Man pages generation:
431DX_ARG_ABLE(man, [generate doxygen manual pages],
432            [DX_CHECK_DEPEND(doc, 1)],
433            [DX_CLEAR_DEPEND(doc, 1)],
434            [],
435            [DX_ENV_APPEND(GENERATE_MAN, YES)],
436            [DX_ENV_APPEND(GENERATE_MAN, NO)])
437
438# RTF file generation:
439DX_ARG_ABLE(rtf, [generate doxygen RTF documentation],
440            [DX_CHECK_DEPEND(doc, 1)],
441            [DX_CLEAR_DEPEND(doc, 1)],
442            [],
443            [DX_ENV_APPEND(GENERATE_RTF, YES)],
444            [DX_ENV_APPEND(GENERATE_RTF, NO)])
445
446# XML file generation:
447DX_ARG_ABLE(xml, [generate doxygen XML documentation],
448            [DX_CHECK_DEPEND(doc, 1)],
449            [DX_CLEAR_DEPEND(doc, 1)],
450            [],
451            [DX_ENV_APPEND(GENERATE_XML, YES)],
452            [DX_ENV_APPEND(GENERATE_XML, NO)])
453
454# (Compressed) HTML help generation:
455DX_ARG_ABLE(chm, [generate doxygen compressed HTML help documentation],
456            [DX_CHECK_DEPEND(doc, 1)],
457            [DX_CLEAR_DEPEND(doc, 1)],
458            [DX_REQUIRE_PROG([DX_HHC], hhc)],
459            [DX_ENV_APPEND(HHC_PATH, $DX_HHC)
460             DX_ENV_APPEND(GENERATE_HTML, YES)
461             DX_ENV_APPEND(GENERATE_HTMLHELP, YES)],
462            [DX_ENV_APPEND(GENERATE_HTMLHELP, NO)])
463
464# Seperate CHI file generation.
465DX_ARG_ABLE(chi, [generate doxygen seperate compressed HTML help index file],
466            [DX_CHECK_DEPEND(chm, 1)],
467            [DX_CLEAR_DEPEND(chm, 1)],
468            [],
469            [DX_ENV_APPEND(GENERATE_CHI, YES)],
470            [DX_ENV_APPEND(GENERATE_CHI, NO)])
471
472# Plain HTML pages generation:
473DX_ARG_ABLE(html, [generate doxygen plain HTML documentation],
474            [DX_CHECK_DEPEND(doc, 1) DX_CHECK_DEPEND(chm, 0)],
475            [DX_CLEAR_DEPEND(doc, 1) DX_CLEAR_DEPEND(chm, 0)],
476            [],
477            [DX_ENV_APPEND(GENERATE_HTML, YES)],
478            [DX_TEST_FEATURE(chm) || DX_ENV_APPEND(GENERATE_HTML, NO)])
479
480# PostScript file generation:
481DX_ARG_ABLE(ps, [generate doxygen PostScript documentation],
482            [DX_CHECK_DEPEND(doc, 1)],
483            [DX_CLEAR_DEPEND(doc, 1)],
484            [DX_REQUIRE_PROG([DX_LATEX], latex)
485             DX_REQUIRE_PROG([DX_MAKEINDEX], makeindex)
486             DX_REQUIRE_PROG([DX_DVIPS], dvips)
487             DX_REQUIRE_PROG([DX_EGREP], egrep)])
488
489# PDF file generation:
490DX_ARG_ABLE(pdf, [generate doxygen PDF documentation],
491            [DX_CHECK_DEPEND(doc, 1)],
492            [DX_CLEAR_DEPEND(doc, 1)],
493            [DX_REQUIRE_PROG([DX_PDFLATEX], pdflatex)
494             DX_REQUIRE_PROG([DX_MAKEINDEX], makeindex)
495             DX_REQUIRE_PROG([DX_EGREP], egrep)])
496
497# LaTeX generation for PS and/or PDF:
498AM_CONDITIONAL(DX_COND_latex, DX_TEST_FEATURE(ps) || DX_TEST_FEATURE(pdf))
499if DX_TEST_FEATURE(ps) || DX_TEST_FEATURE(pdf); then
500    DX_ENV_APPEND(GENERATE_LATEX, YES)
501else
502    DX_ENV_APPEND(GENERATE_LATEX, NO)
503fi
504
505# Paper size for PS and/or PDF:
506AC_ARG_VAR(DOXYGEN_PAPER_SIZE,
507           [a4wide (default), a4, letter, legal or executive])
508case "$DOXYGEN_PAPER_SIZE" in
509#(
510"")
511    AC_SUBST(DOXYGEN_PAPER_SIZE, "")
512;; #(
513a4wide|a4|letter|legal|executive)
514    DX_ENV_APPEND(PAPER_SIZE, $DOXYGEN_PAPER_SIZE)
515;; #(
516*)
517    AC_MSG_ERROR([unknown DOXYGEN_PAPER_SIZE='$DOXYGEN_PAPER_SIZE'])
518;;
519esac
520
521#For debugging:
522#echo DX_FLAG_doc=$DX_FLAG_doc
523#echo DX_FLAG_dot=$DX_FLAG_dot
524#echo DX_FLAG_man=$DX_FLAG_man
525#echo DX_FLAG_html=$DX_FLAG_html
526#echo DX_FLAG_chm=$DX_FLAG_chm
527#echo DX_FLAG_chi=$DX_FLAG_chi
528#echo DX_FLAG_rtf=$DX_FLAG_rtf
529#echo DX_FLAG_xml=$DX_FLAG_xml
530#echo DX_FLAG_pdf=$DX_FLAG_pdf
531#echo DX_FLAG_ps=$DX_FLAG_ps
532#echo DX_ENV=$DX_ENV
533])
534