Added the tutorial SUBDIR
It works fine ... for make clean But of course it would require some Makefile.am in each subdir of tutorial and I am not sure I know what to put there...
This commit is contained in:
parent
15c3588ac7
commit
5b26c61445
1 changed files with 4 additions and 1 deletions
|
|
@ -4,7 +4,7 @@
|
||||||
##
|
##
|
||||||
###############################################################################
|
###############################################################################
|
||||||
|
|
||||||
SUBDIRS = src test win doc app
|
SUBDIRS = src test win doc tutorial app
|
||||||
#Directory for documents
|
#Directory for documents
|
||||||
DOCDIR = ~/public_html/eodocs
|
DOCDIR = ~/public_html/eodocs
|
||||||
#Directory for indices -- not useful for the user
|
#Directory for indices -- not useful for the user
|
||||||
|
|
@ -23,6 +23,9 @@ test:
|
||||||
doc:
|
doc:
|
||||||
pushd doc; $(MAKE) doc; popd
|
pushd doc; $(MAKE) doc; popd
|
||||||
|
|
||||||
|
tutorial:
|
||||||
|
pushd tutorial; $(MAKE) all; popd
|
||||||
|
|
||||||
app:
|
app:
|
||||||
pushd app; $(MAKE) all; popd
|
pushd app; $(MAKE) all; popd
|
||||||
|
|
||||||
|
|
|
||||||
Reference in a new issue