|
Revision 418, 1.1 kB
(checked in by laurentj, 2 years ago)
|
changed some build options
prepared beta2 release
|
| Line | |
|---|
| 1 |
jBuildTools: |
|---|
| 2 |
============= |
|---|
| 3 |
|
|---|
| 4 |
These are scripts |
|---|
| 5 |
|
|---|
| 6 |
- to generate final source file from source file which needs a preprocessing step. |
|---|
| 7 |
- to generate package to distribute sources |
|---|
| 8 |
- to create "makefile" like in PHP |
|---|
| 9 |
|
|---|
| 10 |
|
|---|
| 11 |
preprocess.php |
|---|
| 12 |
This is a tool to preprocess source file. It generates source file from other source file which |
|---|
| 13 |
contain preprocessing instruction. So you can generate source file according to parameters |
|---|
| 14 |
(environment variables). |
|---|
| 15 |
see http://developer.jelix.org/wiki/en/preprocessor |
|---|
| 16 |
|
|---|
| 17 |
usage : |
|---|
| 18 |
php preprocess.php source_file target_file |
|---|
| 19 |
|
|---|
| 20 |
mkdist.php |
|---|
| 21 |
Copy some source file from a directory to another, according to a "manifest" file. |
|---|
| 22 |
So it can be used to generate packages. |
|---|
| 23 |
In the manifest, you write the list of files, and indicates where it should be copied, |
|---|
| 24 |
if a preprocessor should be applied etc.. |
|---|
| 25 |
see http://developer.jelix.org/wiki/en/mkdist |
|---|
| 26 |
usage : |
|---|
| 27 |
php mkdist.php [-v] manifest_file.mn source_dir target_dir |
|---|
| 28 |
|
|---|
| 29 |
mkmanifest.php |
|---|
| 30 |
generate a manifest file |
|---|
| 31 |
php mkmanifest.php [-v] source_dir [base_path] file.mn |
|---|
| 32 |
|
|---|
| 33 |
jBuild.inc.php |
|---|
| 34 |
library to use in a script, to create a build file (a makefile like) |
|---|