]> git.donarmstrong.com Git - neurodebian.git/blobdiff - Makefile
Move on to repository config files.
[neurodebian.git] / Makefile
index a903a1b1ec9474ea13c5ef47982354c615b3d3ba..a65b6d16e54c97b9b3553e867036032c8fec3677 100644 (file)
--- a/Makefile
+++ b/Makefile
-# Makefile for Sphinx documentation
-#
-
-# You can set these variables from the command line.
-SPHINXOPTS    =
-SPHINXBUILD   = sphinx-build
-PAPER         =
-
-# Internal variables.
-SRCDIR = build/src
-PAPEROPT_a4     = -D latex_paper_size=a4
-PAPEROPT_letter = -D latex_paper_size=letter
-ALLSPHINXOPTS   = -d build/doctrees $(PAPEROPT_$(PAPER)) $(SPHINXOPTS) $(SRCDIR)
-
 
 WWW_UPLOAD_URI = elrond:/home/hanke/public_html/archive
 WWW_DIR = build/html
 
 
-.PHONY: help clean html web pickle htmlhelp latex changes linkcheck
+prep:
+       mkdir -p build/src
+       cp -r sphinx/* build/src
 
 
-prep:
-       mkdir -p build
-       cp -r source/* build/src
+html: prep source
+       cd build/src && $(MAKE) html BUILDDIR=$(CURDIR)/build
 
 
 clean:
        -rm -rf build
 
-html: prep
-       mkdir -p build/html build/doctrees
-       $(SPHINXBUILD) -b html $(ALLSPHINXOPTS) build/html
-       @echo
-       @echo "Build finished. The HTML pages are in build/html."
-
-pickle: prep
-       mkdir -p build/pickle build/doctrees
-       $(SPHINXBUILD) -b pickle $(ALLSPHINXOPTS) build/pickle
-       @echo
-       @echo "Build finished; now you can process the pickle files."
-
-web: pickle
 
-json: prep
-       mkdir -p build/json build/doctrees
-       $(SPHINXBUILD) -b json $(ALLSPHINXOPTS) build/json
-       @echo
-       @echo "Build finished; now you can process the JSON files."
+distclean: clean
+       -rm -rf cache
 
-htmlhelp: prep
-       mkdir -p build/htmlhelp build/doctrees
-       $(SPHINXBUILD) -b htmlhelp $(ALLSPHINXOPTS) build/htmlhelp
-       @echo
-       @echo "Build finished; now you can run HTML Help Workshop with the" \
-             ".hhp project file in build/htmlhelp."
 
-latex: prep
-       mkdir -p build/latex build/doctrees
-       $(SPHINXBUILD) -b latex $(ALLSPHINXOPTS) build/latex
-       @echo
-       @echo "Build finished; the LaTeX files are in build/latex."
-       @echo "Run \`make all-pdf' or \`make all-ps' in that directory to" \
-             "run these through (pdf)latex."
-
-changes: prep
-       mkdir -p build/changes build/doctrees
-       $(SPHINXBUILD) -b changes $(ALLSPHINXOPTS) build/changes
-       @echo
-       @echo "The overview file is in build/changes."
-
-linkcheck: prep
-       mkdir -p build/linkcheck build/doctrees
-       $(SPHINXBUILD) -b linkcheck $(ALLSPHINXOPTS) build/linkcheck
-       @echo
-       @echo "Link check complete; look for any errors in the above output " \
-       "or in build/linkcheck/output.txt."
-
-
-update-db:
-       rm -f build/db.db
-       ./reblender \
+source:
+       ./reblender generate \
+               --cfg debneuro.cfg \
                --db build/db.db \
                --outdir build/src \
-               -r http://apsy.gse.uni-magdeburg.de/debian/dists/dapper/Release \
-               -r http://apsy.gse.uni-magdeburg.de/debian/dists/gutsy/Release \
-               -r http://apsy.gse.uni-magdeburg.de/debian/dists/hardy/Release \
-               -r http://apsy.gse.uni-magdeburg.de/debian/dists/intrepid/Release \
-               -r http://apsy.gse.uni-magdeburg.de/debian/dists/etch/Release \
-               -r http://apsy.gse.uni-magdeburg.de/debian/dists/lenny/Release \
-               -r http://apsy.gse.uni-magdeburg.de/debian/dists/squeeze/Release \
-               -r http://apsy.gse.uni-magdeburg.de/debian/dists/sid/Release \
-               -t svn://svn.debian.org/blends/projects/med/trunk/debian-med/tasks/imaging \
-               -t svn://svn.debian.org/blends/projects/med/trunk/debian-med/tasks/imaging-dev \
-               -t svn://svn.debian.org/blends/projects/science/trunk/debian-science/tasks/neuroscience-cognitive \
-               -f fsl-doc -f fslview-doc -f fsl-atlases -f fsl-possum-data \
-               -f fsl-first-data -f fsl-feeds \
-               -p svn://svn.debian.org/blends/projects/science/trunk/debian-science/tasks/neuroscience-cognitive
+               --pkgaddenum pkgs
+
+
+refresh-db:
+       mkdir -p build
+#      rm -f build/db.db
+       ./reblender refreshdb \
+               --cfg debneuro.cfg \
+               --db build/db.db
 
 
 upload-website: html