Overview
Comment: | Added release engineering file |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: | aa77e716e8d204c3818a54c00b6e6c71d306ea06 |
User & Date: | rkeene on 2014-11-18 01:14:00 |
Other Links: | manifest | tags |
Context
2014-11-18
| ||
01:15 | Made default build release again check-in: 858edeb2b9 user: rkeene tags: trunk | |
01:14 | Added release engineering file check-in: aa77e716e8 user: rkeene tags: trunk | |
01:13 | Prettied up Makefile check-in: 48dd71800a user: rkeene tags: trunk | |
Changes
Added build/makearch.info version [f8e1286c14].
1 +# This is the name of the utility, it will be prefixed to the tarball name 2 +UTIL="appfs" 3 + 4 +# This is the name of output files that should exist after configure 5 +# procedures. 6 +BINS="appfsd" 7 + 8 +# This lists the name of files that are required to exist 9 +REQS="" 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="$(grep '^APPFS_VERSION.*=' Makefile | sed 's@.*= *@@')" 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 after updating variables 39 +UPDATED="" 40 + 41 +# This script is executed immediately prior to creation of the 42 +# tarball 43 +AFTER="" 44 + 45 +# Files matching these (space-seperated) patterns are deleted 46 +TMPS=".fossil-settings build"