d1ba9a9c79
Only change to bmake is man page - document .OBJDIR target. We also get latest dirdeps.mk and friends. > Description of fields to fill in above: 76 columns --| > PR: If a GNATS PR is affected by the change. > Differential Revision: https://reviews.freebsd.org/D### (*full* phabric URL needed). > Submitted by: If someone else sent in the change. > Reviewed by: If someone else reviewed your modification. > Approved by: If you needed approval for this commit. > Obtained from: If the change is from a third party. > MFC after: N [day[s]|week[s]|month[s]]. Request a reminder email. > MFH: Ports tree branch name. Request approval for merge. > Relnotes: Set to 'yes' for mention in release notes. > Security: Vulnerability reference (one per line) or description. > Sponsored by: If the change was sponsored by an organization. > Empty fields above will be automatically removed. _M contrib/bmake M contrib/bmake/ChangeLog M contrib/bmake/Makefile M contrib/bmake/bmake.1 M contrib/bmake/bmake.cat1 M contrib/bmake/make.1 M contrib/bmake/mk/ChangeLog M contrib/bmake/mk/dirdeps.mk M contrib/bmake/mk/gendirdeps.mk M contrib/bmake/mk/install-mk M contrib/bmake/mk/meta.stage.mk M contrib/bmake/mk/meta.sys.mk M contrib/bmake/mk/mkopt.sh M contrib/bmake/targ.c M usr.bin/bmake/Makefile |
||
---|---|---|
.. | ||
lst.lib | ||
mk | ||
PSD.doc | ||
unit-tests | ||
aclocal.m4 | ||
arch.c | ||
bmake.1 | ||
bmake.cat1 | ||
boot-strap | ||
bsd.after-import.mk | ||
buf.c | ||
buf.h | ||
ChangeLog | ||
compat.c | ||
cond.c | ||
config.h.in | ||
configure | ||
configure.in | ||
dir.c | ||
dir.h | ||
dirname.c | ||
FILES | ||
find_lib.sh | ||
for.c | ||
getopt.c | ||
hash.c | ||
hash.h | ||
install-sh | ||
job.c | ||
job.h | ||
lst.h | ||
machine.sh | ||
main.c | ||
make_malloc.c | ||
make_malloc.h | ||
make-bootstrap.sh.in | ||
make-conf.h | ||
make.1 | ||
make.c | ||
make.h | ||
Makefile | ||
Makefile.config.in | ||
makefile.in | ||
meta.c | ||
meta.h | ||
mkdeps.sh | ||
nonints.h | ||
os.sh | ||
parse.c | ||
pathnames.h | ||
ranlib.h | ||
README | ||
realpath.c | ||
setenv.c | ||
sigcompat.c | ||
sprite.h | ||
str.c | ||
stresep.c | ||
strlcpy.c | ||
strlist.c | ||
strlist.h | ||
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 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. 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/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