From 5b26c61445b2332d0a04d0e27cf6a0a7db8d2576 Mon Sep 17 00:00:00 2001 From: evomarc Date: Thu, 30 Nov 2000 04:44:32 +0000 Subject: [PATCH] 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... --- eo/Makefile.am | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/eo/Makefile.am b/eo/Makefile.am index 4b7941a2..66603e9d 100644 --- a/eo/Makefile.am +++ b/eo/Makefile.am @@ -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