pkgsrc/devel/bmake/files
rillig 36dc3053df When a path is specified with --with-defshell, a casual user would
expect that the path is actually used by the configure script, which had
not been the case. Now it is finally possible to select a different
shell for use by bmake.
2007-09-21 10:36:34 +00:00
..
lst.lib What xlC really wanted to tell me was to use int instead of short... 2007-07-31 13:28:57 +00:00
missing/sys Add QNX support. Don't redefine __BEGIN_DECLS and __END_DECLS if 2007-09-06 20:25:21 +00:00
PSD.doc
unit-tests
aclocal.m4
arch.c
bmake.1
bmake.cat1
boot-strap
buf.c
buf.h
ChangeLog
compat.c Backed out the latest change (the "arg list too long" fix for IRIX). As 2007-03-16 00:51:12 +00:00
cond.c
config.h.in Try to force a proper shell on Solaris by extending bmake to 2007-09-06 19:23:25 +00:00
configure Remove stray : that could break a substitutions as hinted by Sean 2007-09-11 14:13:51 +00:00
configure.in When a path is specified with --with-defshell, a casual user would 2007-09-21 10:36:34 +00:00
dir.c
dir.h
FILES
find_lib.sh
for.c
getenv.c
getopt.c
hash.c
hash.h
install-sh
job.c Try to force a proper shell on Solaris by extending bmake to 2007-09-06 19:23:25 +00:00
job.h Try to force a proper shell on Solaris by extending bmake to 2007-09-06 19:23:25 +00:00
lst.h
machine.sh
main.c Try to force a proper shell on Solaris by extending bmake to 2007-09-06 19:23:25 +00:00
make-conf.h
make.1
make.c
make.h
makefile.boot.in Try to force a proper shell on Solaris by extending bmake to 2007-09-06 19:23:25 +00:00
Makefile.in Try to force a proper shell on Solaris by extending bmake to 2007-09-06 19:23:25 +00:00
mkdeps.sh
nonints.h
os.sh Add QNX support. Don't redefine __BEGIN_DECLS and __END_DECLS if 2007-09-06 20:25:21 +00:00
parse.c
pathnames.h Try to force a proper shell on Solaris by extending bmake to 2007-09-06 19:23:25 +00:00
ranlib.h
README
setenv.c
sigcompat.c Correct hpux ifdefs. hpux 11 and up doesn't define __HPUX_VERSION. 2007-04-15 11:23:07 +00:00
sprite.h
str.c
suff.c
targ.c
trace.c
trace.h
util.c
var.c
wait.h

			       bmake

This directory contains a port of the BSD make tool (from NetBSD)
I have run it on SunOS,Solaris,HP-UX,AIX,IRIX,FreeBSD and Linux.

Version 3 was re-worked from scratch to better facilitate
importing newer make(1) versions from NetBSD.  The original code base
was NetBSD-1.0, so version 3 was built by doing a fresh import of the
NetBSD-1.0 usr.bin/make, adding the autoconf and other portability
patches to sync it with bmake v2, and then NetBSD's make 
of Feb 20, 2000 was imported and conflicts dealt with.
NetBSD's make was again imported on June 6 and December 15, 2000.

In 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 prefered 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.

To make much use of bmake you will need the bsd.*.mk macros or my
portable *.mk macros.  See 
http://www.crufty.net/ftp/pub/sjg/bsd-mk.tar.gz
http://www.crufty.net/ftp/pub/sjg/mk.tar.gz
which will be links to the latest versions.

On a non-BSD system, you would want to unpack mk[-YYYYmmdd].tar.gz in
the same directory as bmake (so ./mk and ./bmake exist), and
./bmake/boot-strap will do the rest.

If you want to do it all by hand then read boot-strap first to get the
idea.

Even if you have an earlier version of bmake installed, use boot-strap
to ensure that all goes well.

--sjg