Release plat/al core v1.1.13
[platal.git] / Makefile
index 26b7352..818598a 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -1,66 +1,37 @@
-# $Id: Makefile,v 1.5 2004/11/25 20:18:39 x99laine Exp $
 ################################################################################
 # definitions
 
-VERSION := $(shell grep VERSION ChangeLog | head -1 | sed -e "s/VERSION //;s/\t.*//")
-
-PKG_NAME = platal
-PKG_DIST = $(PKG_NAME)-$(VERSION)
-PKG_FILES = AUTHORS ChangeLog COPYING README Makefile
-PKG_DIRS = configs htdocs include install.d plugins po scripts templates upgrade
-
-VCS_FILTER = ! -name .arch-ids ! -name CVS
+VERSNUM := $(shell grep VERSION ChangeLog | head -1 | sed -e "s/VERSION //;s/ .*//")
+VERSTAG := $(shell grep VERSION ChangeLog | head -1 | grep 'XX' > /dev/null 2> /dev/null && echo 'beta')
+VERSION = $(VERSNUM)$(VERSTAG)
 
 ################################################################################
 # global targets
 
 all: build
 
-devel: build htdocs/valid.html
+build: include/version.inc.php
 
-headers:
-       headache -c install.d/platal-dev/templates/header.conf -h install.d/platal-dev/templates/header \
-               `find templates -name '*.tpl' ! -path 'templates/xnet/skin.tpl' ! -path 'templates/skin/*.tpl' ! -name 'vcard.tpl' `
-
-build: spool/templates_c wiki
+test:
+       phpunit pltestsuite classes/pltestsuite.php
 
 clean:
-       rm -rf include/platal/globals.inc.php
+       -rm include/version.inc.php
 
-%: %.in Makefile
-       sed -e 's,@VERSION@,$(VERSION),g' $< > $@
+q:
+       @echo -e "Code statistics\n"
+       @sloccount $(wildcard */) 2> /dev/null | egrep '^[a-z]*:'
+
+doc:
+       @doxygen doc/doxygen.cfg
 
 ################################################################################
 # targets
-spool/templates_c spool/uploads spool/wiki.d::
-       mkdir -p $@
-       chmod o+w $@
-
-htdocs/valid.html:
-       touch templates_c/valid.html
-       cd htdocs && ln -sf ../templates_c/valid.html
-
-htdocs/uploads:
-       cd htdocs && ln -sf ../spool/uploads
-
-htdocs/wikipub:
-       cd htdocs && ln -sf ../wiki/pub wikipub
 
-wiki/local/pmwiki.config.php:
-       cd wiki/local/     && ln -sf ../../plugins/pmwiki.config.php
-
-wiki/pub/skins/empty:
-       cd wiki/pub/skins/ && ln -sf ../../../install.d/wiki/empty
-
-wiki: build-wiki spool/uploads htdocs/uploads htdocs/wikipub
-       @test -d wiki || wget http://www.pmwiki.org/pub/pmwiki/pmwiki-latest.tgz
-
-spool/wiki.d::
-       cd $@ && ln -s ../../install.d/wiki/wiki.d/* .
-
-build-wiki: wiki/local/pmwiki.config.php wiki/pub/skins/empty spool/wiki.d
-
-################################################################################
+%: %.in Makefile ChangeLog
+       sed -e 's,@VERSION@,$(VERSION),g' $< > $@
 
-.PHONY: build dist clean wiki build-wiki
+include/version.inc.php: Makefile ChangeLog
+       echo '<?php define("PLATAL_CORE_VERSION", "${VERSION}"); ?>' > $@
 
+.PHONY: build dist clean q test doc