File tree Expand file tree Collapse file tree 1 file changed +32
-0
lines changed Expand file tree Collapse file tree 1 file changed +32
-0
lines changed Original file line number Diff line number Diff line change
1
+ PHD_REPO =https://github.com/php/phd.git
2
+ DOC_BASE_REPO =https://github.com/php/doc-base.git
3
+ DOC_EN_REPO =https://github.com/php/doc-en.git
4
+ DOC_JA_REPO =https://github.com/php/doc-ja.git
5
+ OUTPUT_DIR =output/php-chunked-xhtml
6
+
7
+ setup :
8
+ @if [ ! -d " phd" ]; then \
9
+ echo " Cloning phd..." ; \
10
+ git clone $(PHD_REPO ) ; \
11
+ else \
12
+ echo " phd already cloned." ; \
13
+ fi
14
+ @if [ ! -d " doc-base" ]; then \
15
+ echo " Cloning doc-base..." ; \
16
+ git clone $(DOC_BASE_REPO ) ; \
17
+ else \
18
+ echo " doc-base already cloned." ; \
19
+ fi
20
+ @if [ ! -d " en" ]; then \
21
+ echo " Cloning doc-en..." ; \
22
+ git clone $(DOC_EN_REPO ) en; \
23
+ else \
24
+ echo " doc-en already cloned." ; \
25
+ fi
26
+ @if [ ! -d " ja" ]; then \
27
+ echo " Cloning doc-ja..." ; \
28
+ git clone $(DOC_JA_REPO ) ja; \
29
+ else \
30
+ echo " doc-ja already cloned." ; \
31
+ fi
32
+
1
33
build :
2
34
php doc-base/configure.php --with-lang=ja
3
35
You can’t perform that action at this time.
0 commit comments