From 39521b2b687fbffa608e1c9c4db9e82ccb1ddecc Mon Sep 17 00:00:00 2001 From: evomarc Date: Fri, 5 Jan 2001 07:20:45 +0000 Subject: [PATCH] Correcting my previous errors ... --- eo/Makefile.am | 4 ++-- eo/autogen.sh | 6 +++++- 2 files changed, 7 insertions(+), 3 deletions(-) diff --git a/eo/Makefile.am b/eo/Makefile.am index 28e429f58..bd90204d7 100644 --- a/eo/Makefile.am +++ b/eo/Makefile.am @@ -14,7 +14,7 @@ EXTRA_DIST=LICENSE ############################################################################### -lib: src/libeo.a src/utils/libeoutils.a +lib: pushd src; $(MAKE) all; popd test: @@ -22,7 +22,7 @@ test: # so that make doc always compiles the doc ... doc: doc/eo.cfg - pushd doc; $(MAKE) doc; touch doc/eo.cfg; popd + pushd doc; $(MAKE) doc; touch eo.cfg; popd tutorial: pushd tutorial; $(MAKE) all; popd diff --git a/eo/autogen.sh b/eo/autogen.sh index 58ad1681c..6c0e11529 100755 --- a/eo/autogen.sh +++ b/eo/autogen.sh @@ -49,11 +49,15 @@ done ./configure "$@" +# we want doc to be recompiled - and it keeps saying it's up to date!!! +touch doc/eo.cfg + echo echo "Now type 'make' to compile $PROG." echo "And if you have Doxygen installed, type 'make doc' to generate $PROG documentation." echo echo "WARNING: Compiling all test programs can take some time." -echo "But you don't have to: you can simply type 'make src'" +echo "But you don't have to: you can simply type" +echo " 'make lib'" echo "and then go in your application dir (or in the tutorial dir)" echo "and there type 'make'"