-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
6 changed files
with
123 additions
and
19 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
############################################################################## | ||
# proxy targets | ||
############################################################################## | ||
|
||
{% for target in targets %} | ||
.PHONY: {{ target["folder"] }}-{{ target["name"] }} | ||
{{ target["folder"] }}-{{ target["name"] }}: | ||
$(MAKE) -C "./{{ target["folder"] }}/" {{ target["name"] }} | ||
|
||
{% endfor %} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
#:[proxy] | ||
#:title = Proxy targets | ||
#:description = This domain includes proxy targets which are configured in | ||
#: `mx.ini`. I is expected that defined folder(s) contains a Makefile which | ||
#: is generated by `mxmake` and this Makefile contains the domains for which | ||
#: proxy targets are created. The proxy configuration in the `mx.ini` file | ||
#: looks as follows: | ||
#: | ||
#: ```ini | ||
#: mxmake-templates = proxy | ||
#: | ||
#: [mxmake-proxy] | ||
#: foldername = | ||
#: applications:plone,zest-releaser | ||
#: i18n:* | ||
#: ``` | ||
#: | ||
#: Each setting in the `mxmake-proxy` section defines a child folder. The | ||
#: value contains the topic name and the desired domains as comma | ||
#: separated list. Wildcard `*` means to include all domains of this topic. | ||
#: Topic and domains are colon separated. | ||
#: | ||
#:depends = core.mxfiles | ||
|
||
############################################################################## | ||
# proxy | ||
############################################################################## | ||
|
||
-include $(MXMAKE_FILES)/proxy.mk |