Trying to make the installation lighter, but the doc and the src

would not compile, with make doc or make src ...
This commit is contained in:
evomarc 2001-01-05 07:10:25 +00:00
commit 222f533a9e
2 changed files with 10 additions and 4 deletions

View file

@ -14,14 +14,15 @@ EXTRA_DIST=LICENSE
###############################################################################
lib:
lib: src/libeo.a src/utils/libeoutils.a
pushd src; $(MAKE) all; popd
test:
pushd test; $(MAKE) all; popd
doc:
pushd doc; $(MAKE) doc; popd
# so that make doc always compiles the doc ...
doc: doc/eo.cfg
pushd doc; $(MAKE) doc; touch doc/eo.cfg; popd
tutorial:
pushd tutorial; $(MAKE) all; popd

View file

@ -51,4 +51,9 @@ done
echo
echo "Now type 'make' to compile $PROG."
echo "And if you have Doxygen installed, type 'make doc' to generate EO documentation."
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 "and then go in your application dir (or in the tutorial dir)"
echo "and there type 'make'"