• Home
  • History
  • Annotate
  • only in this directory
NameDateSize

..22-Jun-202192

aclocal.m4H A D22-Jun-20211.9 KiB

arch.cH A D22-Jun-202139.4 KiB

bmake.1H A D22-Jun-202164.4 KiB

bmake.cat1H A D22-Jun-202179.1 KiB

boot-strapH A D22-Jun-202110.7 KiB

bsd.after-import.mkH A D22-Jun-20213.4 KiB

buf.cH A D22-Jun-20218 KiB

buf.hH A D22-Jun-20214.7 KiB

ChangeLogH A D22-Jun-202181.4 KiB

compat.cH A D22-Jun-202120.6 KiB

cond.cH A D22-Jun-202135.8 KiB

config.h.inH A D22-Jun-20218.8 KiB

configureH A D22-Jun-2021201.9 KiB

configure.inH A D22-Jun-202110.6 KiB

dir.cH A D22-Jun-202151 KiB

dir.hH A D22-Jun-20214.6 KiB

dirname.cH A D22-Jun-20213.1 KiB

filemon/H22-Jun-20215

FILESH A D22-Jun-20213.2 KiB

find_lib.shH A D22-Jun-2021138

for.cH A D22-Jun-202112.5 KiB

getopt.cH A D22-Jun-20214.8 KiB

hash.cH A D22-Jun-202112.3 KiB

hash.hH A D22-Jun-20215.6 KiB

install-shH A D22-Jun-20213.8 KiB

job.cH A D22-Jun-202184.3 KiB

job.hH A D22-Jun-202110.7 KiB

lst.hH A D22-Jun-20216.7 KiB

lst.lib/H22-Jun-202131

machine.shH A D22-Jun-20212.2 KiB

main.cH A D22-Jun-202152.4 KiB

make-bootstrap.sh.inH A D22-Jun-20212.3 KiB

make-conf.hH A D22-Jun-20216 KiB

make.1H A D22-Jun-202164.6 KiB

make.cH A D22-Jun-202145.5 KiB

make.hH A D22-Jun-202121.2 KiB

make_malloc.cH A D22-Jun-20212.7 KiB

make_malloc.hH A D22-Jun-20211.8 KiB

MakefileH A D22-Jun-20214.9 KiB

Makefile.config.inH A D22-Jun-2021485

makefile.inH A D22-Jun-2021282

meta.cH A D22-Jun-202140.2 KiB

meta.hH A D22-Jun-20212.4 KiB

metachar.cH A D22-Jun-20213.6 KiB

metachar.hH A D22-Jun-20212 KiB

mk/H22-Jun-202164

mkdeps.shH A D22-Jun-20217.3 KiB

nonints.hH A D22-Jun-20217.6 KiB

os.shH A D22-Jun-20215.5 KiB

parse.cH A D22-Jun-202185.8 KiB

pathnames.hH A D22-Jun-20212.4 KiB

PSD.doc/H22-Jun-20214

ranlib.hH A D22-Jun-20211,008

READMEH A D22-Jun-20211.5 KiB

realpath.cH A D22-Jun-20215.1 KiB

setenv.cH A D22-Jun-20214.6 KiB

sigcompat.cH A D22-Jun-20218.5 KiB

sprite.hH A D22-Jun-20214.4 KiB

str.cH A D22-Jun-202113.2 KiB

stresep.cH A D22-Jun-20212.9 KiB

strlcpy.cH A D22-Jun-20211.7 KiB

strlist.cH A D22-Jun-20212.8 KiB

strlist.hH A D22-Jun-20212.5 KiB

suff.cH A D22-Jun-202170.5 KiB

targ.cH A D22-Jun-202122.8 KiB

trace.cH A D22-Jun-20213 KiB

trace.hH A D22-Jun-20211.8 KiB

unit-tests/H22-Jun-202188

util.cH A D22-Jun-202112.7 KiB

var.cH A D22-Jun-2021106.5 KiB

VERSIONH A D22-Jun-202163

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 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