X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=Makefile;h=f3d0e1dea76718829370338b53c5835fbcaf5f5d;hb=d6fefb1316a5a1eb55aaac2a4f3f54b3fb2ee482;hp=849e4a3e2deceedc3c7a5d5764cc61b5cf924c2a;hpb=357e7775bf11bcc1f21e9b91f390cf217a2e8d84;p=neurodebian.git diff --git a/Makefile b/Makefile index 849e4a3..f3d0e1d 100644 --- a/Makefile +++ b/Makefile @@ -4,6 +4,10 @@ WWW_DIR = build/html/ WWW_UPLOAD_URI_STATIC=$(WWW_UPLOAD_URI)/_static +BIGMESS_OPTS = -c neurodebian_repo.cfg +BIGMESS_CMD = PYTHONPATH=.:../bigmess:$(PYTHONPATH) ../bigmess/bin/bigmess +BIGMESS = $(BIGMESS_CMD) $(BIGMESS_OPTS) + # Lentghy one due to updatedb all: updatedb upload-website mirmon # Quick one -- just rebuilds html if new changes and adjusts the status of the mirrors @@ -40,11 +44,10 @@ source-stamp: mkdir -p build/src/pkgs/ mkdir -p build/src/lists/ mkdir -p build/src/pkglists/ - PYTHONPATH=.:../bigmess:$(PYTHONPATH) ../bigmess/bin/bigmess genpkgs -d build/src/pkgs/ - PYTHONPATH=.:../bigmess:$(PYTHONPATH) ../bigmess/bin/bigmess genaptlists -d build/src/lists/ - PYTHONPATH=.:../bigmess:$(PYTHONPATH) ../bigmess/bin/bigmess genmirrorselect > build/src/sources_lists - PYTHONPATH=.:../bigmess:$(PYTHONPATH) ../bigmess/bin/bigmess genpkglists \ - -d build/src/pkglists > build/src/pkgs.rst + $(BIGMESS) mkpkgs -d build/src/pkgs/ + $(BIGMESS) mkaptcfgs -d build/src/lists/ + $(BIGMESS) mkrepocfg > build/src/sources_lists + $(BIGMESS) mkpkgtocs -d build/src/pkglists > build/src/pkgs.rst touch $@