1afb9da9ce
XML EZ_Out is a small set of packages intended to aid the creation of XML-formatted output from within Ada programs. It basically wraps the tags and data provided to it with XML syntax and writes them to a user-supplied medium. This medium can be any sort of writable entity, such as a file, a memory buffer, or even a communications link, such as a socket. The only functionality required of the medium is that it supply a meaningful "Put" (for writing a string) and "New_Line" procedure. WWW: http://www.mckae.com/xmlEz.html
17 lines
453 B
Bash
17 lines
453 B
Bash
#!/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.'
|