aboutsummaryrefslogtreecommitdiffstats
path: root/tools/targets/deprecated/scratchpad.xtarget
diff options
context:
space:
mode:
Diffstat (limited to 'tools/targets/deprecated/scratchpad.xtarget')
-rw-r--r--tools/targets/deprecated/scratchpad.xtarget32
1 files changed, 32 insertions, 0 deletions
diff --git a/tools/targets/deprecated/scratchpad.xtarget b/tools/targets/deprecated/scratchpad.xtarget
new file mode 100644
index 0000000000..cb995c273c
--- /dev/null
+++ b/tools/targets/deprecated/scratchpad.xtarget
@@ -0,0 +1,32 @@
+ <!-- =================================================================== -->
+ <!-- Interactive scratchpad builds -->
+ <!-- =================================================================== -->
+ <target name="scratchpad" depends="init" description="Interactive Scratchpad Build">
+ <echo message="--------------------------------------------------------------"/>
+ <echo message=" "/>
+ <echo message=" ${fullname} ${version} SCRATCHPAD "/>
+ <echo message=" "/>
+ <echo message="--------------------------------------------------------------"/>
+ <echo message="Building with ${ant.version}"/>
+ <echo message="using build file ${ant.file}"/>
+ <echo message="--------------------------------------------------------------"/>
+ <echo message=" "/>
+ <echo message=" These are SCRATCHPAD BUILDS. They are not guaranteed to work."/>
+ <echo message=" You have been warned. "/>
+ <echo message=" "/>
+ <echo message=" --------------"/>
+ <echo message=" --------------"/>
+ <echo message=" --------------"/>
+ <echo message=" --------------"/>
+ <echo message=" --------------"/>
+ <echo message=" --------------"/>
+ <echo message=" "/>
+ <taskdef name="user-input" classname="UserInput"
+ classpath="./tools/anttasks"/>
+
+ <property name="input.selection" value=""/>
+ <user-input name="input.selection">Please select a target </user-input>
+
+ <ant antfile="src/scratchpad/${input.selection}/build.xml"/>
+
+ </target>