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