summaryrefslogtreecommitdiff
path: root/Master/texmf-dist/scripts/arara/rules/tikzmake.yaml
diff options
context:
space:
mode:
Diffstat (limited to 'Master/texmf-dist/scripts/arara/rules/tikzmake.yaml')
-rw-r--r--Master/texmf-dist/scripts/arara/rules/tikzmake.yaml39
1 files changed, 39 insertions, 0 deletions
diff --git a/Master/texmf-dist/scripts/arara/rules/tikzmake.yaml b/Master/texmf-dist/scripts/arara/rules/tikzmake.yaml
new file mode 100644
index 00000000000..e6cb809a54e
--- /dev/null
+++ b/Master/texmf-dist/scripts/arara/rules/tikzmake.yaml
@@ -0,0 +1,39 @@
+!config
+# Arara, the cool TeX automation tool
+# Copyright (c) 2018, Paulo Roberto Massa Cereda
+# All rights reserved.
+#
+# This rule is part of arara.
+identifier: tikzmake
+name: TikZmake
+authors:
+- Robbie Smith
+- Paulo Cereda
+commands:
+- name: TikZ list-and-make engine
+ command: >
+ @{
+ makefile = getBasename(file).concat('.makefile');
+ return getCommand('make', force, jobs, options, '-f', makefile);
+ }
+arguments:
+- identifier: force
+ flag: >
+ @{
+ isTrue(parameters.force, '--always-make')
+ }
+- identifier: jobs
+ flag: >
+ @{
+ return '-j'.concat(parameters.jobs)
+ }
+- identifier: options
+ flag: >
+ @{
+ if (isList(parameters.options)) {
+ return parameters.options;
+ }
+ else {
+ throwError('I was expecting a list of options.');
+ }
+ }