Changeset 89

Show
Ignore:
Timestamp:
02/17/06 12:49:54 (3 years ago)
Author:
laurentj
Message:

fin de preparation des scripts de build pour la nouvelle version

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/build/mkmanifest.php

    r84 r89  
    1111*/ 
    1212 
    13 // arguments :  repertoire1 [repertoire2] fichier.fld 
     13// arguments :  repertoire1 [repertoire2] fichier.mn 
    1414// repertoire1 : le chemin du repertoire duquel on veut la liste 
    1515// repertoire2 : si on veut une base de chemin diff�nte de repertoire1 dans le fichier de sortie 
  • trunk/Makefile

    r85 r89  
    1515endif 
    1616 
    17 LIBPATH="$(DIST)/jelix-$(LIB_VERSION)" 
    18  
     17DISTJELIX="$(DIST)/jelix-$(LIB_VERSION)" 
     18DISTHACKER="$(DIST)/jelix-svn" 
    1919 
    2020 
    2121default: 
    22         @echo "target:  jelix-lib
     22        @echo "target:  dist-all dist-jelix dist-testapp dist-myapp dev-all dev-jelix dev-myapp dev-testapp
    2323 
    24 jelix-lib: common 
    25         if [ ! -d "$(LIBPATH)" ] ; then mkdir $(LIBPATH) ; else rm -rf $(LIBPATH)/* ; fi 
     24dist-all: dist-jelix dist-testapp dist-myapp 
     25 
     26dev-all: dev-jelix dev-myapp dev-testapp 
     27 
     28dist-jelix: common 
    2629        export LIB_VERSION=$(LIB_VERSION) \ 
    27         && $(PHP) build/mkdist.php build/fld/jelix-lib.fld . $(LIBPATH) \ 
    28         && $(PHP) build/mkdist.php build/fld/jelix-dev.fld . $(LIBPATH) \ 
    29         && echo "$(LIB_VERSION)" > "$(LIBPATH)/lib/jelix/VERSION" 
     30        && $(PHP) build/mkdist.php build/manifests/jelix-lib.mn . $(DISTJELIX) \ 
     31        && $(PHP) build/mkdist.php build/manifests/jelix-dev.mn . $(DISTJELIX) \ 
     32        && echo "$(LIB_VERSION)" > "$(DISTJELIX)/lib/jelix/VERSION" 
     33        if [ ! -d "$(DISTJELIX)/temp" ] ; then mkdir $(DISTJELIX)/temp ; fi 
     34        tar czf $(DIST)/jelix-lib-$(LIB_VERSION).tar.gz  -C $(DISTJELIX) lib/ temp/ 
    3035 
     36dist-testapp: common 
     37        $(PHP) build/mkdist.php build/manifests/testapp.mn . $(DISTJELIX) 
     38        tar czf $(DIST)/testapp-$(LIB_VERSION).tar.gz  -C $(DISTJELIX) testapp/ 
    3139 
     40dist-myapp: common 
     41        $(PHP) build/mkdist.php build/manifests/myapp.mn . $(DISTJELIX) 
     42        tar czf $(DIST)/myapp-$(LIB_VERSION).tar.gz  -C $(DISTJELIX) myapp/ 
    3243 
     44dev-jelix: common 
     45        export LIB_VERSION=$(LIB_VERSION) \ 
     46        && $(PHP) build/mkdist.php build/manifests/jelix-lib.mn . $(DISTHACKER) \ 
     47        && $(PHP) build/mkdist.php build/manifests/jelix-dev.mn . $(DISTHACKER) \ 
     48        && echo "$(LIB_VERSION)" > "$(DISTHACKER)/lib/jelix/VERSION" 
     49 
     50dev-testapp: common 
     51        $(PHP) build/mkdist.php build/manifests/testapp.mn . $(DISTHACKER) 
     52 
     53dev-myapp: common 
     54        $(PHP) build/mkdist.php build/manifests/myapp.mn . $(DISTHACKER) 
    3355 
    3456common: 
    3557        if [ ! -d "$(DIST)" ] ; then mkdir $(DIST) ; fi 
     58        if [ ! -d "$(DISTJELIX)" ] ; then mkdir $(DISTJELIX) ; fi 
     59        if [ ! -d "$(DISTHACKER)" ] ; then mkdir $(DISTHACKER) ; fi 
    3660         
    3761 
  • trunk/README

    r45 r89  
    1 This package contains the Jelix Framework and a sample application myapp 
     1lib/ directory contains libraries of Jelix Framework. 
     2 
     3You should create a new application by using the lib/jelix-scripts/jelix.php script on the command line. 
     4 
     5Or you can install an application by downloading one on the jelix web site. 
    26 
    37http://www.jelix.org 
Download in other formats: Unified Diff Zip Archive