Added the tutorial SUBDIR

It works fine ... for make clean
But of course it would require some Makefile.am in each subdir of tutorial
and I am not sure I know what to put there...
This commit is contained in:
evomarc 2000-11-30 04:44:32 +00:00
commit 5b26c61445

View file

@ -4,7 +4,7 @@
##
###############################################################################
SUBDIRS = src test win doc app
SUBDIRS = src test win doc tutorial app
#Directory for documents
DOCDIR = ~/public_html/eodocs
#Directory for indices -- not useful for the user
@ -23,6 +23,9 @@ test:
doc:
pushd doc; $(MAKE) doc; popd
tutorial:
pushd tutorial; $(MAKE) all; popd
app:
pushd app; $(MAKE) all; popd