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:
parent
8c82c8aa56
commit
222f533a9e
2 changed files with 10 additions and 4 deletions
|
|
@ -14,14 +14,15 @@ EXTRA_DIST=LICENSE
|
||||||
|
|
||||||
###############################################################################
|
###############################################################################
|
||||||
|
|
||||||
lib:
|
lib: src/libeo.a src/utils/libeoutils.a
|
||||||
pushd src; $(MAKE) all; popd
|
pushd src; $(MAKE) all; popd
|
||||||
|
|
||||||
test:
|
test:
|
||||||
pushd test; $(MAKE) all; popd
|
pushd test; $(MAKE) all; popd
|
||||||
|
|
||||||
doc:
|
# so that make doc always compiles the doc ...
|
||||||
pushd doc; $(MAKE) doc; popd
|
doc: doc/eo.cfg
|
||||||
|
pushd doc; $(MAKE) doc; touch doc/eo.cfg; popd
|
||||||
|
|
||||||
tutorial:
|
tutorial:
|
||||||
pushd tutorial; $(MAKE) all; popd
|
pushd tutorial; $(MAKE) all; popd
|
||||||
|
|
|
||||||
|
|
@ -51,4 +51,9 @@ done
|
||||||
|
|
||||||
echo
|
echo
|
||||||
echo "Now type 'make' to compile $PROG."
|
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'"
|
||||||
|
|
|
||||||
Reference in a new issue