diff options
Diffstat (limited to 'textproc/xml_ez_out/files')
-rw-r--r-- | textproc/xml_ez_out/files/example.gpr | 12 | ||||
-rw-r--r-- | textproc/xml_ez_out/files/runme.sh.in | 17 | ||||
-rw-r--r-- | textproc/xml_ez_out/files/xezo_bld.gpr | 14 | ||||
-rw-r--r-- | textproc/xml_ez_out/files/xml_ez_out.gpr | 7 |
4 files changed, 0 insertions, 50 deletions
diff --git a/textproc/xml_ez_out/files/example.gpr b/textproc/xml_ez_out/files/example.gpr deleted file mode 100644 index b68a07683b0b..000000000000 --- a/textproc/xml_ez_out/files/example.gpr +++ /dev/null @@ -1,12 +0,0 @@ -with "xml_ez_out"; -project Example is - - for Exec_Dir use "/tmp"; - for Object_Dir use "/tmp"; - for Main use ("tmeztf.adb"); - - package Compiler is - for Default_Switches ("ada") use ("-O2"); - end Compiler; - -end Example; diff --git a/textproc/xml_ez_out/files/runme.sh.in b/textproc/xml_ez_out/files/runme.sh.in deleted file mode 100644 index 4b81040f96ae..000000000000 --- a/textproc/xml_ez_out/files/runme.sh.in +++ /dev/null @@ -1,17 +0,0 @@ -#!/bin/sh - -# This script will: -# 1) Build the example executable in /tmp -# 2) Tell the user how to execute it - -GNATMAKE=@PREFIX@/gcc-aux/bin/gnatmake -ADA_PROJECT_PATH=@PREFIX@/lib/gnat -export ADA_PROJECT_PATH - -${GNATMAKE} -P example - -echo -echo "The source for the example is tmeztf.adb" -echo "The executable example is located in /tmp/tmeztf" -echo "It requires no optons; just run it" -echo 'You may want to execute "rm /tmp/tmeztf*" when you are done.' diff --git a/textproc/xml_ez_out/files/xezo_bld.gpr b/textproc/xml_ez_out/files/xezo_bld.gpr deleted file mode 100644 index a9a9c409cdd5..000000000000 --- a/textproc/xml_ez_out/files/xezo_bld.gpr +++ /dev/null @@ -1,14 +0,0 @@ -project XEZO_Bld is - - for Languages use ("ada"); - for Source_Dirs use ("mckae"); - for Object_Dir use "obj"; - for Library_Name use "xml_ez_out"; - for Library_Dir use "lib"; - for Library_Kind use "static"; - - package Builder is - for Default_Switches ("ada") use ("-gnatf", "-gnatws", "-O2"); - end Builder; - -end XEZO_Bld; diff --git a/textproc/xml_ez_out/files/xml_ez_out.gpr b/textproc/xml_ez_out/files/xml_ez_out.gpr deleted file mode 100644 index 800b178be503..000000000000 --- a/textproc/xml_ez_out/files/xml_ez_out.gpr +++ /dev/null @@ -1,7 +0,0 @@ -project XML_EZ_Out is - for Languages use ("ada"); - for Source_Dirs use ("../../include/xml_ez_out"); - for Library_Name use "xml_ez_out"; - for Library_Dir use "../../lib/xml_ez_out"; - for Externally_Built use "true"; -end XML_EZ_Out; |