This repository has been archived on 2026-03-28. You can view files and clone it, but you cannot make any changes to its state, such as pushing and creating new issues, pull requests or comments.
eodev/eo/Makefile.am
kuepper c5a9348dd9 Fix doc-target.
Fix inclusion of documentation in dist.
2004-09-24 15:00:48 +00:00

28 lines
504 B
Makefile

## Makefile.am for eo
if USE_APPLICATIONS
SUBDIRS_APP = app
endif
if USE_TUTORIAL
SUBDIRS_TUT = tutorial
endif
SUBDIRS = src test doc contrib win $(SUBDIRS_APP) $(SUBDIRS_TUT)
# Directory for documents
DOCDIR = ~/public_html/eodocs
#Directory for indices -- not useful for the user
IDXDIR = ~/index
dist-hook:
$(MAKE) documentation
cp -p -r $(srcdir)/doc/html $(srcdir)/doc/latex $(srcdir)/doc/man $(distdir)/doc/
documentation:
cd doc && $(MAKE) doc && cd ..
doc: documentation