X-Git-Url: http://git.polytechnique.org/?a=blobdiff_plain;f=Makefile;h=958a9b1e6471e90afe2e740806abd11ee28221c5;hb=e7b9396258bff20ea5ca4836ff82c2e2d44710e9;hp=6b18c746929c6324a459a3c6a502a84556ff636d;hpb=301e3543efce642475e428cfab02a8a38b4ed3f8;p=platal.git diff --git a/Makefile b/Makefile index 6b18c74..958a9b1 100644 --- a/Makefile +++ b/Makefile @@ -26,7 +26,10 @@ endef all: build -build: core conf banana wiki medals jquery +build: core conf banana wiki openid medals jquery + +check: + @find . -name '*.php' -exec php -l {} ";" | grep -v 'No syntax errors detected' q: @echo -e "Code statistics\n" @@ -103,12 +106,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 ## @@ -156,5 +180,5 @@ $(JQUERY_PLUGINS_PATHES): ################################################################################ -.PHONY: build dist clean core wiki build-wiki banana htdocs/images/banana htdocs/css/banana.css include/banana/banana.inc.php http* +.PHONY: build dist clean core wiki build-wiki banana htdocs/images/banana htdocs/css/banana.css include/banana/banana.inc.php http* check