25 lines
403 B
Makefile
25 lines
403 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) doc
|
|
|
|
doc: $(srcdir)/doc/eo.cfg
|
|
cd doc && $(MAKE) doc && cd ..
|