paradiseo/eo/Makefile.am
evomarc 26481ab36b Modified the Makefile.am in main dir, and Makefile in tutorial dir to remove
all pushd/popd as they don't exist in Windows/bash
2001-10-18 04:34:58 +00:00

36 lines
888 B
Makefile

###############################################################################
##
## Makefile.am for eo
##
###############################################################################
SUBDIRS = src test win app tutorial
#Directory for documents
DOCDIR = ~/public_html/eodocs
#Directory for indices -- not useful for the user
IDXDIR = ~/index
EXTRA_DIST=LICENSE
###############################################################################
lib:
cd src; $(MAKE) all; cd ..
# so that make doc always compiles the doc ...
doc: doc/eo.cfg
cd doc; $(MAKE) doc; touch eo.cfg; cd ..
tutorial:
cd tutorial; $(MAKE) all; cd ..
app:
cd app; $(MAKE) all; cd ..
all:
for i in $(SUBDIRS); do cd $$i && $(MAKE) all; cd ..; done
clean:
for i in $(SUBDIRS); do cd $$i && $(MAKE) clean; cd ..; done
###############################################################################