Imported healpix tree

This commit is contained in:
Guilhem Lavaux 2012-10-30 13:56:48 -04:00
parent 4182c30485
commit 4bfb62f177
136 changed files with 26534 additions and 0 deletions

18
external/healpix/docsrc/planck.make vendored Normal file
View file

@ -0,0 +1,18 @@
PKG:=docsrc
docsrc_idx: | $(DOCDIR)_mkdir
cp $(SRCROOT)/docsrc/index_code.html $(DOCDIR)/index.html
docsrc_code_doc: docsrc_idx
cd $(SRCROOT)/docsrc; \
for i in c_utils libfftpack libpsht cxxsupport Healpix_cxx; do \
doxygen $${i}.dox; \
mv htmldoc $(DOCDIR)/$${i}; \
done; \
rm *.tag; \
docsrc_clean:
cd $(SRCROOT)/docsrc; \
rm -rf htmldoc
doc: docsrc_code_doc