01 Concatenating Files - HammerBS Examples

This project simply concatenates a set of files called `alpha`, `beta`, and `delta` together to create the target file `combined`. As a super minimal example, no cleaning or installation rules are provided (see 02 Simple C Project).

.all : combined;

combined : alpha beta delta {
    cat alpha beta delta > combined
}