NameDateSize

..06-May-202087

aclocal.m4H A D01-Apr-20181.9 KiB

arch.cH A D13-Jun-201739.4 KiB

bmake.1H A D29-Jul-201763.5 KiB

bmake.cat1H A D01-Apr-201878 KiB

boot-strapH A D18-Aug-201610.5 KiB

bsd.after-import.mkH A D01-Apr-20183.4 KiB

buf.cH A D18-Aug-20168 KiB

buf.hH A D29-Jul-20174.7 KiB

ChangeLogH A D01-Apr-201872.4 KiB

compat.cH A D29-Jul-201720.6 KiB

cond.cH A D13-Jun-201735.7 KiB

config.h.inH A D18-Aug-20168.8 KiB

configureH A D01-Apr-2018198.4 KiB

configure.inH A D01-Apr-20189.9 KiB

dir.cH A D13-Jun-201751.6 KiB

dir.hH A D29-Jul-20174.6 KiB

dirname.cH A D18-Aug-20163 KiB

FILESH A D01-Apr-20182.8 KiB

find_lib.shH A D18-Aug-2016138

for.cH A D13-Jun-201712.5 KiB

getopt.cH A D18-Aug-20164.8 KiB

hash.cH A D18-Aug-201612.1 KiB

hash.hH A D29-Jul-20175.6 KiB

install-shH A D18-Aug-20163.8 KiB

job.cH A D01-Apr-201883 KiB

job.hH A D18-Aug-201610.7 KiB

lst.hH A D18-Aug-20166.7 KiB

lst.lib/H20-Dec-201631

machine.shH A D01-Apr-20182.2 KiB

main.cH A D10-Apr-202051.9 KiB

make-bootstrap.sh.inH A D01-Apr-20181.9 KiB

make-conf.hH A D18-Aug-20166 KiB

make.1H A D29-Jul-201763.6 KiB

make.cH A D13-Jun-201745.6 KiB

make.hH A D10-Apr-202021.2 KiB

make_malloc.cH A D13-Jun-20172.7 KiB

make_malloc.hH A D18-Aug-20161.8 KiB

MakefileH A D01-Apr-20184.5 KiB

Makefile.config.inH A D01-Apr-2018452

makefile.inH A D18-Aug-2016282

meta.cH A D01-Apr-201838.3 KiB

meta.hH A D18-Aug-20162.3 KiB

metachar.cH A D18-Aug-20163.6 KiB

metachar.hH A D18-Aug-20162 KiB

mk/H01-Apr-201861

mkdeps.shH A D18-Aug-20167.3 KiB

nonints.hH A D29-Jul-20177.4 KiB

os.shH A D01-Apr-20185.5 KiB

parse.cH A D01-Apr-201884.7 KiB

pathnames.hH A D18-Aug-20162.4 KiB

PSD.doc/H13-Jun-20174

ranlib.hH A D18-Aug-20161,008

READMEH A D18-Aug-20161.5 KiB

realpath.cH A D18-Aug-20165.1 KiB

setenv.cH A D18-Aug-20164.6 KiB

sigcompat.cH A D18-Aug-20168.5 KiB

sprite.hH A D29-Jul-20174.4 KiB

str.cH A D13-Jun-201713.1 KiB

stresep.cH A D01-Apr-20182.9 KiB

strlcpy.cH A D18-Aug-20161.7 KiB

strlist.cH A D18-Aug-20162.8 KiB

strlist.hH A D18-Aug-20162.5 KiB

suff.cH A D13-Jun-201770.6 KiB

targ.cH A D13-Jun-201722.8 KiB

trace.cH A D18-Aug-20163 KiB

trace.hH A D18-Aug-20161.8 KiB

unit-tests/H01-Apr-201873

util.cH A D18-Aug-201613 KiB

var.cH A D01-Apr-2018109.8 KiB

VERSIONH A D01-Apr-201863

wait.hH A D18-Aug-20162 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