Check-in [a21de3133a]
Overview
Comment:Added buildinfo script and Makefile
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA1:a21de3133aef0d7f2b8fa0cedec8d6003b8719d1
User & Date: rkeene on 2009-04-18 03:33:20
Other Links: manifest | tags
Context
2009-04-18
03:34
Renamed teapot project to teaparty project to be less ambigious check-in: a1ae48180e user: rkeene tags: trunk
03:33
Added buildinfo script and Makefile check-in: a21de3133a user: rkeene tags: trunk
03:25
Built-in SDX and removed references to starkit2exe check-in: 5defb7723e user: rkeene tags: trunk
Changes

Added Makefile version [86357e8d20].

            1  +all: client/teapot-client.kit
            2  +
            3  +client/teapot-client.kit:
            4  +	make -C client teapot-client.kit
            5  +
            6  +clean:
            7  +	make -C client clean
            8  +
            9  +distclean:
           10  +	make -C client distclean
           11  +
           12  +.PHONY: all clean distclean

Added build/makearch.info version [ac986bb481].

            1  +# This is the name of the utility, it will be prefixed to the tarball name
            2  +UTIL="teapot"
            3  +
            4  +# This is the name of output files that should exist after configure 
            5  +# procedures.
            6  +BINS=""
            7  +
            8  +# This lists the name of files that are required to exist
            9  +REQS="client/teapot-client.kit"
           10  +
           11  +# Version of utility, if empty it will be guessed.
           12  +# If set to "auto" it will be maintained in a file called .version
           13  +# in the source directory and the revision will be incremented
           14  +# each time a "makearch" is done.
           15  +#
           16  +# If @@SVNLCR@@ is used anywhere in this version number, it will be
           17  +# replaced with the highest last-changed-rev from the output of
           18  +#   svn info -R    (or 0)
           19  +VERS="0.9.0.@@SVNLCR@@"
           20  +
           21  +# Space sperated list of documents, if they exist, they will be
           22  +# prefixed with the contents of the DOC_HDR file and substitution
           23  +# will occur:
           24  +#     @@UTIL@@ becomes the utility name ${UTIL}
           25  +#     @@VERS@@ becomes the utility version
           26  +#     @@DATE@@ becomes the current date
           27  +DOCS="README"
           28  +DOC_HDR="HEADER"
           29  +
           30  +# These files follow the same convention as DOCS, but don't have the header
           31  +# tacked onto them.
           32  +UPDATE_VARS=""
           33  +
           34  +# This script is executed immediately after copying the files
           35  +# to a temp directory to attempt to compile
           36  +BEFORE=""
           37  +
           38  +# This script is executed immediately prior to creation of the
           39  +# tarball
           40  +AFTER=""
           41  +
           42  +# Files matching these (space-seperated) patterns are deleted
           43  +TMPS="*.out HEADER"