Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
typo3
qfq
Commits
0c53603f
Commit
0c53603f
authored
May 12, 2017
by
Carsten Rose
Browse files
Merge branch 'raos_work' into 'master'
Allow concurrent bootstrap See merge request
!3
parents
0dea9223
3da4c4da
Changes
2
Hide whitespace changes
Inline
Side-by-side
.gitignore
View file @
0c53603f
...
...
@@ -26,3 +26,5 @@
/extension/Resources/Public/Css
/doc/jsdoc
/dist/
.python_virtualenv/
.virtual_env
Makefile
View file @
0c53603f
PHPDOC
?=
support/pear/phpdoc
JSDOC
?=
jsdoc
PKG_VERSION
=
$(
shell
awk
'/version/ { print $$3
}
'
extension/ext_emconf.php |
sed
"s/'//g"
)
NIGHTLY_DATE
=
$(
shell
date
'+%Y%m%d'
)
RELEASE_DATE
=
$(
shell
date
'+%Y%m%d%H%M'
)
GIT_REVISION_SHORT
=
$(
shell
git rev-parse
--short
HEAD
||
true
)
GIT_REVISION_LONG
=
$(
shell
git rev-parse HEAD
||
true
)
EXTENSION_CONTENT
=
Classes Configuration Documentation qfq Resources ext_emconf.php ext_localconf.php ext_tables.php ext_icon.png config.qfq.example.ini RELEASE.txt
DISTDIR
=
dist
# Use by jenkins to separate temp directories used by pip in order to allow concurrent builds
PIP_TMP
?=
/tmp
all
:
archive t3sphinx
doc
:
phpdoc jsdoc plantuml
...
...
@@ -110,9 +118,12 @@ phpdoc: .phpdocinstall
mkdir
-p
doc/plantuml/php
touch
$@
.virtual_env
:
.virtual_env
:
pip-temp-directory
virtualenv .python_virtualenv
.
.python_virtualenv/bin/activate
;
pip
install
--upgrade
sphinx
==
1.5.5
.
.python_virtualenv/bin/activate
;
TMPDIR
=
"
$(PIP_TMP)
"
pip
install
--upgrade
sphinx
==
1.5.5
touch
$@
.PHONY
:
nightly maintainer-clean snapshot release git-revision t3sphinx build-dist make-dist-dir dist-move-doc dist-copy-extension
pip-temp-directory
:
test
-d
"
$(PIP_TMP)
"
||
mkdir
-p
"
$(PIP_TMP)
"
.PHONY
:
nightly maintainer-clean snapshot release git-revision t3sphinx build-dist make-dist-dir dist-move-doc dist-copy-extension pip-temp-directory
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment