Sync up with NetBSD:
authorbriggs <briggs@openbsd.org>
Mon, 2 Sep 1996 16:04:06 +0000 (16:04 +0000)
committerbriggs <briggs@openbsd.org>
Mon, 2 Sep 1996 16:04:06 +0000 (16:04 +0000)
commit5f0754b16ef8deb70690410975269e6431c098e5
treea9dbae78c74657591f5bcba71af2f729366c3841
parentf94c92c615dec45eb32018c1bec06a65a7ffac32
Sync up with NetBSD:
(christos)
Fix bug reported by Greg Hudson where leaf (source only) nodes were
referenced only by their basename and not by their full pathname. This
breaks when .PATH or MAKEOBJDIR are used. There might be Makefiles
around that try to work around this bug by prepending ${.CURDIR} to
the sources, and they should be found and fixed. Also a lot of the gunk
in suff.c that was attempting to work around the same problem could be
removed.
(christos)
- Move -D flags from Makefile to config.h and explain what they do. Add
  -Wall -Wno-unused to CFLAGS. Add new define SYSVVARSUB to enable SysV
  style variable substitutions and enable them.
- Add SunOS style command substitutions via SUNSHCMD
- Fix core dump with '{variable = value'
(christos)
Fix bug where make will always exit with 0, even when one or more
parallel jobs failed. (Only affects parallel make code)
(christos)
Protect __P from being multiply defined (for systems that already
define it)
(christos) Add strdup() since ultrix is missing it.
From Larry Schwimmer <rosebud@cyclone.Stanford.EDU>
(christos) Add estrdup(), a checked version of strdup and use it.
(christos) Recognize SVR4 style long filename entries in archives.
(thorpej) Tidy up some RCS ids a bit.
17 files changed:
usr.bin/make/Makefile
usr.bin/make/arch.c
usr.bin/make/config.h
usr.bin/make/dir.c
usr.bin/make/extern.h
usr.bin/make/job.c
usr.bin/make/main.c
usr.bin/make/make.1
usr.bin/make/make.c
usr.bin/make/make.h
usr.bin/make/nonints.h
usr.bin/make/parse.c
usr.bin/make/pathnames.h
usr.bin/make/suff.c
usr.bin/make/targ.c
usr.bin/make/util.c
usr.bin/make/var.c