Changeset 02911f


Ignore:
Timestamp:
Dec 16, 2009, 10:12:03 AM (16 years ago)
Author:
Frederik Heber <heber@…>
Children:
ef87ee
Parents:
246a3c
Message:

'make doc' target added (credits to Till Crueger for the patch)

  • Basically dives into each subdir, trying 'make doc' there and subsequently performs 'make doxygen-docs' in doc
File:
1 edited

Legend:

Unmodified
Added
Removed
  • Makefile.am

    r246a3c r02911f  
    1616pseudopots.tar.gz:
    1717        $(TAR) -zcvf $(srcdir)/pseudopots.tar.gz `find  $(srcdir) -name 'pseudo.??'`
     18
     19doc:
     20        list='$(SUBDIRS)'; for subdir in $$list; do \
     21        echo "Making doc in $$subdir"; \
     22        (cd $$subdir && make doc) \
     23        || eval $$failcom; \
     24        (cd  $$subdir/doc && make doxygen-docs); \
     25        done;
     26
     27.PHONY: doc
     28
Note: See TracChangeset for help on using the changeset viewer.