freebsd-src/contrib/bmake
Simon J. Gerraty 9d3df31ec0 Merge bmake-20240520
Merge commit '29efb3dcaedd9cbabc6f96f35545baf2c8b28501'
2024-05-23 13:12:43 -07:00
..
filemon
missing/sys
mk Merge bmake-20240508 2024-05-13 22:19:20 -07:00
PSD.doc
unit-tests Merge bmake-20240520 2024-05-23 13:12:43 -07:00
_strtol.h
aclocal.m4
arch.c Merge bmake-20240430 2024-05-03 15:48:32 -07:00
bmake.1
bmake.cat1 Merge bmake-20240430 2024-05-03 15:48:32 -07:00
boot-strap
bsd.after-import.mk
buf.c Merge bmake-20240430 2024-05-03 15:48:32 -07:00
buf.h Merge bmake-20240430 2024-05-03 15:48:32 -07:00
ChangeLog Merge bmake-20240520 2024-05-23 13:12:43 -07:00
compat.c Merge bmake-20240430 2024-05-03 15:48:32 -07:00
cond.c Merge bmake-20240430 2024-05-03 15:48:32 -07:00
config.h.in
configure Merge bmake-20240430 2024-05-03 15:48:32 -07:00
configure.in Merge bmake-20240430 2024-05-03 15:48:32 -07:00
dir.c Merge bmake-20240520 2024-05-23 13:12:43 -07:00
dir.h Merge bmake-20240520 2024-05-23 13:12:43 -07:00
dirname.c
FILES
find_lib.sh
for.c Merge bmake-20240430 2024-05-03 15:48:32 -07:00
getopt.c Merge bmake-20240520 2024-05-23 13:12:43 -07:00
hash.c
hash.h
import.sh
install-sh
job.c Merge bmake-20240508 2024-05-13 22:19:20 -07:00
job.h
LICENSE
lst.c Merge bmake-20240430 2024-05-03 15:48:32 -07:00
lst.h Merge bmake-20240430 2024-05-03 15:48:32 -07:00
machine.sh
main.c Merge bmake-20240520 2024-05-23 13:12:43 -07:00
make-bootstrap.sh.in Merge bmake-20240430 2024-05-03 15:48:32 -07:00
make-conf.h
make.1
make.c
make.h Merge bmake-20240508 2024-05-13 22:19:20 -07:00
make_malloc.c
make_malloc.h
Makefile Merge bmake-20240430 2024-05-03 15:48:32 -07:00
Makefile.config.in Merge bmake-20240430 2024-05-03 15:48:32 -07:00
makefile.in
meta.c Merge bmake-20240430 2024-05-03 15:48:32 -07:00
meta.h
metachar.c
metachar.h
mkdeps.sh
os.sh Merge bmake-20240430 2024-05-03 15:48:32 -07:00
parse.c Merge bmake-20240520 2024-05-23 13:12:43 -07:00
pathnames.h
ranlib.h
README
realpath.c
setenv.c
sigact.h
sigaction.c
sigcompat.c
str.c Merge bmake-20240430 2024-05-03 15:48:32 -07:00
str.h
stresep.c
strlcpy.c
suff.c
targ.c Merge bmake-20240430 2024-05-03 15:48:32 -07:00
trace.c
trace.h
util.c
var.c Merge bmake-20240508 2024-05-13 22:19:20 -07:00
VERSION Merge bmake-20240520 2024-05-23 13:12:43 -07:00
wait.h

			       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>