This file looks large and may slow your browser down if we attempt
to syntax highlight it, so we are showing it without any
pretty colors.
Highlight
it anyway.
| 1 |
ACLOCAL_AMFLAGS = -I m4 |
| 2 |
|
| 3 |
SUBDIRS = build tools data |
| 4 |
|
| 5 |
EXTRA_DIST = \ |
| 6 |
$(top_srcdir)/gen_lists.sh \ |
| 7 |
$(top_srcdir)/doc/doxygen.conf \ |
| 8 |
$(top_srcdir)/doc/doxygen.conf.in \ |
| 9 |
$(top_srcdir)/doc/doxygen_webservices.conf \ |
| 10 |
$(top_srcdir)/doc/doxygen_webservices.conf.in \ |
| 11 |
$(top_srcdir)/doc/doc.css \ |
| 12 |
$(top_srcdir)/doc/images/block.eps \ |
| 13 |
$(top_srcdir)/doc/images/block.png \ |
| 14 |
$(top_srcdir)/doc/images/digitalSTROM.png |
| 15 |
|
| 16 |
if HAVE_DOXYGEN |
| 17 |
doxygen-doc: |
| 18 |
$(DOXYGEN) $(top_srcdir)/doc/doxygen.conf |
| 19 |
$(DOXYGEN) $(top_srcdir)/doc/doxygen_webservices.conf |
| 20 |
else |
| 21 |
doxygen-doc: |
| 22 |
@echo |
| 23 |
@echo "Not generating documentation: doxygen is not available!" |
| 24 |
@echo |
| 25 |
endif |
| 26 |
|
| 27 |
clean-local: clean-doc |
| 28 |
|
| 29 |
clean-doc: |
| 30 |
rm -rf $(top_srcdir)/doc/inetrnal |
| 31 |
rm -rf $(top_srcdir)/doc/webservices |
| 32 |
|
| 33 |
if WITH_CURL |
| 34 |
gencurlheader: |
| 35 |
python src/scripting/curl-js-constants.py < /usr/include/curl/curl.h > src/scripting/jscurl-constants.h |
| 36 |
endif |