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 0afa0b9fa4 * TODO.html, README.html: Remove these old files.
* AUTHORS, COPYING, ForRelease, NEWS, ToDo: Update for release.

* eo.cfg (PROJECT_NUMBER): Bump version to 1.0
2006-12-18 11:17:55 +00:00

30 lines
602 B
Makefile

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