freebsd-src/contrib/bmake
Simon J. Gerraty c60f6422ff Update to bmake-20251111
Merge commit '638c66de4a0faa4c2e815e81cd4021c2387c7e0f'
2025-12-03 10:15:46 -08:00
..
filemon
missing/sys
mk Update to bmake-20251111 2025-12-03 10:15:46 -08:00
PSD.doc
unit-tests Update to bmake-20251111 2025-12-03 10:15:46 -08:00
_strtol.h
aclocal.m4
arch.c Merge bmake-20250707 2025-07-19 10:41:12 -07:00
bmake.1 Update to bmake-20251111 2025-12-03 10:15:46 -08:00
bmake.cat1 Update to bmake-20251111 2025-12-03 10:15:46 -08:00
boot-strap Update to bmake-20251111 2025-12-03 10:15:46 -08:00
bsd.after-import.mk
buf.c
buf.h
ChangeLog Update to bmake-20251111 2025-12-03 10:15:46 -08:00
compat.c Merge bmake-20250707 2025-07-19 10:41:12 -07:00
cond.c Merge bmake-20250707 2025-07-19 10:41:12 -07:00
config.h.in
configure Update to bmake-20251111 2025-12-03 10:15:46 -08:00
configure.in Update to bmake-20251111 2025-12-03 10:15:46 -08:00
dir.c Merge bmake-20250618 2025-06-27 19:49:16 -07:00
dir.h
dirname.c
FILES Update to bmake-20251111 2025-12-03 10:15:46 -08:00
find_lib.sh
for.c Merge bmake-20250707 2025-07-19 10:41:12 -07:00
getopt.c
hash.c Merge bmake-20250618 2025-06-27 19:49:16 -07:00
hash.h Merge bmake-20250618 2025-06-27 19:49:16 -07:00
import.sh
install-sh Update to bmake-20251111 2025-12-03 10:15:46 -08:00
job.c Merge bmake-20250804 2025-08-05 15:57:12 -07:00
job.h Merge bmake-20250707 2025-07-19 10:41:12 -07:00
LICENSE Update to bmake-20251111 2025-12-03 10:15:46 -08:00
lst.c
lst.h
machine.sh
main.c Update to bmake-20251111 2025-12-03 10:15:46 -08:00
make-bootstrap.sh.in
make-conf.h
make.1 Update to bmake-20251111 2025-12-03 10:15:46 -08:00
make.c Merge bmake-20250707 2025-07-19 10:41:12 -07:00
make.h Merge bmake-20250707 2025-07-19 10:41:12 -07:00
make_malloc.c Merge bmake-20250707 2025-07-19 10:41:12 -07:00
make_malloc.h
Makefile
Makefile.config.in
makefile.in
meta.c Merge bmake-20250804 2025-08-05 15:57:12 -07:00
meta.h Merge bmake-20250804 2025-08-05 15:57:12 -07:00
metachar.c
metachar.h
mkdeps.sh
os.sh Update to bmake-20251111 2025-12-03 10:15:46 -08:00
parse.c Merge bmake-20250707 2025-07-19 10:41:12 -07:00
pathnames.h
ranlib.h
README
realpath.c
setenv.c
sigact.h
sigaction.c Update to bmake-20251111 2025-12-03 10:15:46 -08:00
sigcompat.c Update to bmake-20251111 2025-12-03 10:15:46 -08:00
str.c Merge bmake-20250707 2025-07-19 10:41:12 -07:00
str.h
stresep.c
strlcpy.c
suff.c Merge bmake-20250618 2025-06-27 19:49:16 -07:00
targ.c Merge bmake-20250618 2025-06-27 19:49:16 -07:00
trace.c Merge bmake-20250618 2025-06-27 19:49:16 -07:00
trace.h
util.c
var.c Update to bmake-20251111 2025-12-03 10:15:46 -08:00
VERSION Update to bmake-20251111 2025-12-03 10:15:46 -08:00
wait.h Update to bmake-20251111 2025-12-03 10:15:46 -08:00

			       bmake
			       *****

This directory contains a port of the BSD make tool (from NetBSD).
Since 1993 I have run it on AIX, BSDi, Darwin, FreeBSD, HP-UX, IRIX,
Linux, Minix, OSF, Solaris, SunOS and even UTS.
Others have run it on many more systems.

Currently each release is tested on Darwin, NetBSD, FreeBSD and Linux.

Since 2003 bmake switched to a date based version (first was 20030714)
which generally represents the date it was last merged with NetBSD's
make.  Since then, NetBSD's make is imported within a week of any
*interesting* changes, so that bmake tracks it very closely.

Building
========

The preferred way to bootstrap bmake is::

	./bmake/boot-strap

there are a number of args - most of which get passed to configure,
eg.
::

	./bmake/boot-strap --prefix=/opt

see the boot-strap script for details.

For folk that hate to read anything, since 20121212 you can also use
the GNU standard process of::

	./configure; make; make install

This will *not* work on Darwin or any other system with a case
insensitive filesystem.  It depends on a generated ``makefile`` which
is disabled by default on Darwin.

To make much use of bmake you will need the bsd.*.mk macros or my
portable *.mk macros which are included with bmake since 20121212
and separately available from
https://www.crufty.net/ftp/pub/sjg/mk.tar.gz
both that and
https://www.crufty.net/ftp/pub/sjg/bmake.tar.gz
will be links to the latest versions.

Porting
=======

If you encounter a system that bmake does not build or work on *out of
the box*, I welcome patches.
Even a report of unit tests which fail is appreciated.
If you can provide access to a suitable machine - even better.

More info can be found at https://www.crufty.net/help/sjg/bmake.htm

--sjg <sjg@crufty.net>