NameDateSize

..19-Jan-201786

aclocal.m4H A D08-Mar-20151.9 KiB

arch.cH A D03-Aug-201739.4 KiB

bmake.1H A D03-Aug-201763.5 KiB

bmake.cat1H A D03-Aug-201780.7 KiB

boot-strapH A D03-Aug-201710.5 KiB

bsd.after-import.mkH A D08-Mar-20153.4 KiB

buf.cH A D08-Mar-20158 KiB

buf.hH A D03-Aug-20174.7 KiB

ChangeLogH A D03-Aug-201770.3 KiB

compat.cH A D03-Aug-201720.6 KiB

cond.cH A D03-Aug-201735.7 KiB

config.h.inH A D03-Aug-20178.8 KiB

configureH A D03-Aug-2017198.3 KiB

configure.inH A D03-Aug-20179.8 KiB

dir.cH A D03-Aug-201751.6 KiB

dir.hH A D03-Aug-20174.6 KiB

dirname.cH A D03-Aug-20173 KiB

FILESH A D11-Dec-20152.8 KiB

find_lib.shH A D08-Mar-2015138

for.cH A D03-Aug-201712.5 KiB

getopt.cH A D03-Aug-20174.8 KiB

hash.cH A D08-Mar-201512.1 KiB

hash.hH A D03-Aug-20175.6 KiB

install-shH A D08-Mar-20153.8 KiB

job.cH A D03-Aug-201783 KiB

job.hH A D08-Mar-201510.7 KiB

lst.hH A D11-Dec-20156.7 KiB

lst.lib/H20-Dec-201631

machine.shH A D11-Dec-20152 KiB

main.cH A D03-Aug-201751.9 KiB

make-bootstrap.sh.inH A D03-Aug-20172 KiB

make-conf.hH A D08-Mar-20156 KiB

make.1H A D03-Aug-201763.6 KiB

make.cH A D03-Aug-201745.6 KiB

make.hH A D03-Aug-201721.2 KiB

make_malloc.cH A D03-Aug-20172.7 KiB

make_malloc.hH A D08-Mar-20151.8 KiB

MakefileH A D03-Aug-20174.5 KiB

Makefile.config.inH A D08-Mar-2015417

makefile.inH A D08-Mar-2015282

meta.cH A D03-Aug-201738.1 KiB

meta.hH A D03-Aug-20172.3 KiB

metachar.cH A D11-Dec-20153.6 KiB

metachar.hH A D11-Dec-20152 KiB

mk/H03-Aug-201760

mkdeps.shH A D08-Mar-20157.3 KiB

nonints.hH A D03-Aug-20177.4 KiB

os.shH A D03-Aug-20175.3 KiB

parse.cH A D03-Aug-201784.6 KiB

pathnames.hH A D08-Mar-20152.4 KiB

PSD.doc/H03-Aug-20174

ranlib.hH A D08-Mar-20151,008

READMEH A D03-Aug-20171.5 KiB

realpath.cH A D08-Mar-20155.1 KiB

setenv.cH A D08-Mar-20154.6 KiB

sigcompat.cH A D08-Mar-20158.5 KiB

sprite.hH A D03-Aug-20174.4 KiB

str.cH A D03-Aug-201713.1 KiB

stresep.cH A D08-Mar-20152.9 KiB

strlcpy.cH A D08-Mar-20151.7 KiB

strlist.cH A D08-Mar-20152.8 KiB

strlist.hH A D08-Mar-20152.5 KiB

suff.cH A D03-Aug-201770.6 KiB

targ.cH A D03-Aug-201722.8 KiB

trace.cH A D08-Mar-20153 KiB

trace.hH A D08-Mar-20151.8 KiB

unit-tests/H03-Aug-201773

util.cH A D08-Mar-201513 KiB

var.cH A D03-Aug-2017109.7 KiB

wait.hH A D08-Mar-20152 KiB

README

1			       bmake
2			       *****
3
4This directory contains a port of the BSD make tool (from NetBSD).
5Since 1993 I have run it on AIX, BSDi, Darwin, FreeBSD, HP-UX, IRIX,
6Linux, Minix, OSF, Solaris, SunOS and even UTS.
7Others have run it on many more systems.
8
9Currently each release is tested on NetBSD, FreeBSD, Solaris and Linux.
10
11Since 2003 bmake switched to a date based version (first was 20030714)
12which generally represents the date it was last merged with NetBSD's
13make.  Since then, NetBSD's make is imported within a week of any
14interesting changes, so that bmake tracks it very closely.
15
16Building
17========
18
19The preferred way to bootstrap bmake is::
20
21	./bmake/boot-strap
22
23there are a number of args - most of which get passed to configure,
24eg.
25::
26
27	./bmake/boot-strap --prefix=/opt
28
29see the boot-strap script for details.
30
31For folk that hate to read anything, since 20121212 you can also use
32the GNU standard process of::
33
34	./configure; make; make install
35
36To make much use of bmake you will need the bsd.*.mk macros or my
37portable *.mk macros which are included with bmake since 20121212
38and separately available from
39http://www.crufty.net/ftp/pub/sjg/mk.tar.gz
40which will be links to the latest versions.
41
42Porting
43=======
44
45If you encounter a system that bmake does not build or work on *out of
46the box*, I welcome patches.
47If you can provide access to a suitable machine - even better.
48
49More info can be found at http://www.crufty.net/help/sjg/bmake.htm
50
51--sjg <sjg@crufty.net>
52
53