summaryrefslogtreecommitdiff
path: root/xnt/build
diff options
context:
space:
mode:
authorkennyballou <kballou@onyx.boisestate.edu>2012-10-10 13:41:06 -0600
committerkballou <kballou@onyx.boisestate.edu>2012-10-10 13:41:06 -0600
commit95bac9b4705e58afad3eb083dc65892d5b0cba27 (patch)
tree170e9d361cf883a965a1246f83ab950278a95b77 /xnt/build
parent4d12c72c7550a0fb72cd6fcd4d4dde3492cacf0e (diff)
downloadxnt-95bac9b4705e58afad3eb083dc65892d5b0cba27.tar.gz
xnt-95bac9b4705e58afad3eb083dc65892d5b0cba27.tar.xz
Update tasks: allow for different build tools
Update the xnt.tasks module to allow tasks' make to use different build tools. Add modules to define the accepted build tools (currently, ant, nant, and make)
Diffstat (limited to 'xnt/build')
-rw-r--r--xnt/build/__init__.py0
-rw-r--r--xnt/build/ant.py3
-rw-r--r--xnt/build/make.py3
-rw-r--r--xnt/build/nant.py3
4 files changed, 9 insertions, 0 deletions
diff --git a/xnt/build/__init__.py b/xnt/build/__init__.py
new file mode 100644
index 0000000..e69de29
--- /dev/null
+++ b/xnt/build/__init__.py
diff --git a/xnt/build/ant.py b/xnt/build/ant.py
new file mode 100644
index 0000000..b5d06d5
--- /dev/null
+++ b/xnt/build/ant.py
@@ -0,0 +1,3 @@
+#!/usr/bin/env python
+
+cmd = 'ant'
diff --git a/xnt/build/make.py b/xnt/build/make.py
new file mode 100644
index 0000000..7c1d9b0
--- /dev/null
+++ b/xnt/build/make.py
@@ -0,0 +1,3 @@
+#!/usr/bin/env python
+
+cmd = 'make'
diff --git a/xnt/build/nant.py b/xnt/build/nant.py
new file mode 100644
index 0000000..5627f95
--- /dev/null
+++ b/xnt/build/nant.py
@@ -0,0 +1,3 @@
+#!/usr/bin/env python
+
+cmd = 'nant'