Dec 192017
 
Poor man's MAKE program from Sydex. Allows one to automatically execute complex compilation commands based on if the source code was modified.
File SYBUILD.ZIP from The Programmer’s Corner in
Category C Source Code
Poor man’s MAKE program from Sydex. Allows one to automatically execute complex compilation commands based on if the source code was modified.
File Name File Size Zip Size Zip Type
BUILD.DOC 2618 1187 deflated
BUILD.EXE 15737 9496 deflated

Download File SYBUILD.ZIP Here

Contents of the BUILD.DOC file



BUILD - BUILD A PROGRAM

Copyright 1988
Sydex
153 North Murphy Ave.
Sunnyvale, CA 94086
(408) 739-4866

BUILD constructs a program or filefrom a series of definitions,
similar to, but more simply than UNIX "make".

An ASCII text file containing instructions on how to build the
result(s) must be created using some sort of text editor. Any
file name may be used, but its extension must be ".BF".

The rules for writing a BUILD instruction file are simple:

(1) A keyword is one of the following words in uppercase
letters -

MAKE
BUILD
NOTE
FROM
BY

MAKE and BUILD are taken as synonyms.

(2) Words and names in a build file must be separated by
spaces, tabs or line boundaries.

(3) NOTE begins a comment; all text is ignored until another
keyword is found.

The general form of a BUILD statement is:

BUILD result-file FROM source-file1 source-file2...source-file3
BY
DOS-command1
DOS-command2
DOS-command3

BUILD examines each source file and compares the date of its last
modification with the date on the result file. If the result file
is older than any of the source files, the list of DOS commands is
executed. Otherwise (the result is younger than its sources), the
DOS commands are skipped.

There is no practical limit to the number of BUILD statements in a
BUILD instruction file.

If the word FROM and the list of source files is omitted, the list
of DOS commands is always executed. Each DOS command must be on a
line by itself.

The source file names may contain * and ? "wild-card" specifications.

BUILD is invoked from DOS by -

BUILD build-file

or -

BUILD build-file result-file

The first form looks at the entire BUILD file and brings all of the
result files up to date. The second form brings only the indicated
result file up to date.

If, during BUILD execution, a DOS command returns an error code, BUILD
terminates and exits to DOS.

As an example, suppose an "ARC"-type archive file needs to be maintained
from the file in the subdirectory "\MYCODE". The BUILD instuction file
might look like this:

NOTE
This file builds the archive \ARCS\MYARC.ARC from the files
in \MYCODE.
BUILD \arcs\myarc.arc FROM \mycode\*.* BY
pkarc a \arcs\myarc.arc \mycode\*.*

BUILD is an utterly simple tool featuring simple syntax and straight-
forward operation.It gets used all the time at Sydex.


 December 19, 2017  Add comments

 Leave a Reply

You may use these HTML tags and attributes: <a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime=""> <em> <i> <q cite=""> <s> <strike> <strong>

(required)

(required)