NameDateSize

..11-Mar-202490

_strtol.hH A D19-Dec-20216.1 KiB

aclocal.m4H A D22-Jun-20211.9 KiB

arch.cH A DToday27 KiB

bmake.1H A D15-Mar-202472.9 KiB

bmake.cat1H A DToday89.3 KiB

boot-strapH A D15-Mar-202411.2 KiB

bsd.after-import.mkH A D15-Jan-20244.1 KiB

buf.cH A DToday5.8 KiB

buf.hH A DToday5 KiB

ChangeLogH A DToday154 KiB

compat.cH A DToday19.1 KiB

cond.cH A DToday30 KiB

config.h.inH A D15-Mar-202412.1 KiB

configureH A DToday225.1 KiB

configure.inH A DToday14.5 KiB

dir.cH A D15-Jan-202441 KiB

dir.hH A D28-Jan-20234.7 KiB

dirname.cH A D22-Jun-20213.1 KiB

filemon/H04-Apr-20225

FILESH A D29-Jun-202324.5 KiB

find_lib.shH A D28-Jan-2023321

for.cH A DToday12.9 KiB

getopt.cH A D22-Jun-20214.8 KiB

hash.cH A D15-Jan-20249.3 KiB

hash.hH A D15-Jan-20246.2 KiB

import.shH A D15-Mar-20243.2 KiB

install-shH A D15-Mar-20244.2 KiB

job.cH A DToday77 KiB

job.hH A D15-Jan-20247.1 KiB

LICENSEH A D22-Jun-20212.6 KiB

lst.cH A DToday6 KiB

lst.hH A DToday6.5 KiB

machine.shH A D28-Jan-20231,008

main.cH A DToday50.6 KiB

make-bootstrap.sh.inH A DToday2.1 KiB

make-conf.hH A D15-Mar-20244.5 KiB

make.1H A D15-Mar-202473.1 KiB

make.cH A D15-Jan-202440 KiB

make.hH A DToday34.9 KiB

make_malloc.cH A D06-Feb-20222.5 KiB

make_malloc.hH A D06-Feb-20221.9 KiB

MakefileH A DToday5.2 KiB

Makefile.config.inH A DToday570

makefile.inH A D22-Jun-2021282

meta.cH A DToday41.2 KiB

meta.hH A D06-Feb-20222.4 KiB

metachar.cH A D19-Dec-20213.6 KiB

metachar.hH A D06-Feb-20221.9 KiB

missing/H22-Jun-20213

mk/HToday73

mkdeps.shH A D28-Jan-20237.5 KiB

os.shH A DToday6 KiB

parse.cH A DToday72.5 KiB

pathnames.hH A D22-Jun-20212.4 KiB

PSD.doc/H22-Jun-20214

ranlib.hH A D22-Jun-20211,008

READMEH A D15-Jan-20241.7 KiB

realpath.cH A D22-Jun-20215.1 KiB

setenv.cH A D22-Jun-20214.6 KiB

sigact.hH A D19-Dec-20212.5 KiB

sigaction.cH A D19-Dec-20218.9 KiB

sigcompat.cH A D28-Jan-20238.5 KiB

str.cH A DToday10.9 KiB

str.hH A D15-Jan-20247 KiB

stresep.cH A D22-Jun-20212.9 KiB

strlcpy.cH A D28-Jan-20231.7 KiB

suff.cH A D15-Mar-202454.2 KiB

targ.cH A DToday15.6 KiB

trace.cH A D25-Apr-20233.2 KiB

trace.hH A D22-Jun-20211.8 KiB

unit-tests/HToday799

util.cH A D15-Jan-202415.1 KiB

var.cH A DToday113.6 KiB

VERSIONH A DToday63

wait.hH A D22-Jun-20212 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 Darwin, NetBSD, FreeBSD 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
14*interesting* 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
36This will *not* work on Darwin or any other system with a case
37insensitive filesystem.  It depends on a generated ``makefile`` which
38is disabled by default on Darwin.
39
40To make much use of bmake you will need the bsd.*.mk macros or my
41portable *.mk macros which are included with bmake since 20121212
42and separately available from
43https://www.crufty.net/ftp/pub/sjg/mk.tar.gz
44both that and
45https://www.crufty.net/ftp/pub/sjg/bmake.tar.gz
46will be links to the latest versions.
47
48Porting
49=======
50
51If you encounter a system that bmake does not build or work on *out of
52the box*, I welcome patches.
53Even a report of unit tests which fail is appreciated.
54If you can provide access to a suitable machine - even better.
55
56More info can be found at https://www.crufty.net/help/sjg/bmake.htm
57
58--sjg <sjg@crufty.net>
59
60