Correcting my previous errors ...
This commit is contained in:
parent
222f533a9e
commit
39521b2b68
2 changed files with 7 additions and 3 deletions
|
|
@ -14,7 +14,7 @@ EXTRA_DIST=LICENSE
|
||||||
|
|
||||||
###############################################################################
|
###############################################################################
|
||||||
|
|
||||||
lib: src/libeo.a src/utils/libeoutils.a
|
lib:
|
||||||
pushd src; $(MAKE) all; popd
|
pushd src; $(MAKE) all; popd
|
||||||
|
|
||||||
test:
|
test:
|
||||||
|
|
@ -22,7 +22,7 @@ test:
|
||||||
|
|
||||||
# so that make doc always compiles the doc ...
|
# so that make doc always compiles the doc ...
|
||||||
doc: doc/eo.cfg
|
doc: doc/eo.cfg
|
||||||
pushd doc; $(MAKE) doc; touch doc/eo.cfg; popd
|
pushd doc; $(MAKE) doc; touch eo.cfg; popd
|
||||||
|
|
||||||
tutorial:
|
tutorial:
|
||||||
pushd tutorial; $(MAKE) all; popd
|
pushd tutorial; $(MAKE) all; popd
|
||||||
|
|
|
||||||
|
|
@ -49,11 +49,15 @@ done
|
||||||
|
|
||||||
./configure "$@"
|
./configure "$@"
|
||||||
|
|
||||||
|
# we want doc to be recompiled - and it keeps saying it's up to date!!!
|
||||||
|
touch doc/eo.cfg
|
||||||
|
|
||||||
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 $PROG documentation."
|
echo "And if you have Doxygen installed, type 'make doc' to generate $PROG documentation."
|
||||||
echo
|
echo
|
||||||
echo "WARNING: Compiling all test programs can take some time."
|
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 then go in your application dir (or in the tutorial dir)"
|
||||||
echo "and there type 'make'"
|
echo "and there type 'make'"
|
||||||
|
|
|
||||||
Reference in a new issue