X-Git-Url: http://git.polytechnique.org/?a=blobdiff_plain;f=Makefile;h=3fb1921d911878c0fa605596d80821f0f798383d;hb=761f1bcb9547d5b3b0f5e4b96a2054e8a0f6d376;hp=6b18c746929c6324a459a3c6a502a84556ff636d;hpb=dbbfabe9138005367547465c13e50b98f121bc36;p=platal.git diff --git a/Makefile b/Makefile index 6b18c74..3fb1921 100644 --- a/Makefile +++ b/Makefile @@ -26,7 +26,7 @@ endef all: build -build: core conf banana wiki medals jquery +build: core conf banana wiki openid medals jquery q: @echo -e "Code statistics\n" @@ -43,7 +43,7 @@ q: ## core: - [ -d core ] || ( git submodule init && git submodule update ) + [ -d core/.git ] || ( git submodule init && git submodule update ) make -C core all ## @@ -103,12 +103,33 @@ wiki/pub/skins/empty: get-wiki: @if ! test -d wiki; then \ wget http://www.pmwiki.org/pub/pmwiki/pmwiki-latest.tgz; \ - tar -xzvf pmwiki-latest.tgz; \ - rm pmwiki-latest.tgz; \ - mv pmwiki-* wiki; \ + tar -xzvf pmwiki-latest.tgz; \ + rm pmwiki-latest.tgz; \ + mv pmwiki-* wiki; \ fi ## +## openid +## + +openid: get-openid spool/openid/store + +# There is no obvious way to automatically use the latest version +get-openid: + @if ! test -d include/Auth; then \ + wget http://openidenabled.com/files/php-openid/packages/php-openid-2.1.2.tar.bz2; \ + tar -xjf php-openid-2.1.2.tar.bz2; \ + mv php-openid-2.1.2/Auth include/; \ + rm php-openid-2.1.2.tar.bz2; \ + rm -r php-openid-2.1.2; \ + fi + +spool/openid/store: + mkdir -p $@ + chmod o+w $@ + + +## ## banana ##