christos
a9e7fd9028
don't attempt to free varNoError too.
2000-08-13 22:47:01 +00:00
christos
e8b09532bb
PR/10714: SUNAGAWA Keiki: Add newer hpux support, but without removing the
...
old hpux support.
2000-08-03 15:53:24 +00:00
mycroft
d53a63dfff
Use a lower threshold for rebuilding hash tables.
2000-06-11 07:54:32 +00:00
mycroft
796fb2ec8c
Readd optimization last night. Problems earlier were partially due to the
...
arguments names on one function being swapped (by a previous author).
Do not do any duplicate suppression when a source list is created. Instead:
* OP_MADE protects against trying to make the source multiple times.
* A new OP_MARK flag is introduced to suppress duplicates while expanding
the .ALLSRC variable and .USE targets.
This turns the O(n^2) insertion into O(n) in most cases.
This is tested with a `make build' and some special test cases.
2000-06-11 07:39:52 +00:00
mycroft
83660a50d9
Back out last night's optimization for now.
2000-06-10 22:28:33 +00:00
mycroft
04af209e45
Don't use OP_MARK when attaching suffix transformations.
2000-06-10 22:24:21 +00:00
mycroft
edfd0106e2
Introduce an OP_MARK bit, and use it to suppress duplicates during .ALLSRC
...
and .USE expansion. Also, remove some more Lst_Member() checks that are now
redundant.
2000-06-10 21:44:08 +00:00
mycroft
83f22c12ea
Nuke an `optimization' that made source list creation O(n^2). This may cause
...
more memory to be used with stupid Makefiles, but it saves a fair amount of
time (~13% just for libc) with sane ones.
2000-06-10 13:48:48 +00:00
sjg
70fc6bfcaf
no need for v->name-- on JUNK vars anymore
2000-06-10 05:54:29 +00:00
mycroft
b0d51d4783
For VAR_JUNK variables, defer freeing of the name string until the bottom of
...
Var_Parse(), as it may be used (strdup()ed) by some modifiers.
2000-06-10 04:51:00 +00:00
sjg
5d93c6ecfd
Don't free v until after the last use.
2000-06-10 04:17:58 +00:00
mycroft
6bf47769cb
Do some evil with VAR_KEEP to make it happier. This seems... wrong.
2000-06-06 09:00:49 +00:00
mycroft
39bf056eb6
Allow further patterns after a :D or :U, as in ODE make. (Copied some code
...
from VarGetPattern. It should become more flexible instead.)
2000-06-06 08:44:57 +00:00
mycroft
123757193a
Roll back my for-expansion changes. Doing this right is just too hard to be
...
worth it.
2000-06-06 04:56:52 +00:00
sjg
3d93bb57a6
Check_Cwd_av: Ensure that word after a '(', '{' etc is considered a command,
...
so that we spot the cd/chdir and don't put one in.
2000-06-06 03:00:11 +00:00
sjg
2293fdd17b
Make ::= work again with the VAR_FOR context changes.
2000-06-01 09:39:02 +00:00
mycroft
ea218bb6e9
Create a `for' context, and substitute iteration variable from it using the
...
normal Var_Parse() path. This allows :R, etc. to work on iteration variables.
2000-06-01 04:16:39 +00:00
sjg
cd8908a299
Rats! ${FOO:=bar} is a common usage of the SysV = modifier.
...
To avoid that, we now do ::[+?!]*= but the SysV = modifier can
conflict with any new modifier. At there are currently no Makefiles
in our tree that use ${FOO::=bar}
2000-06-01 02:29:21 +00:00
sjg
339f702f71
Implemented a set of assignment modifiers. These solve obscure
...
problems such as using modifiers on .for loop iterators derived from
local variables (eg .TARGET).
Unless the variable already exists in a global context, these assignments are
local to the current context (this is usually what is wanted).
2000-05-30 02:32:21 +00:00
sjg
489a59f8c6
Expand variables that appear in a [No]Match pattern. Allows
...
[ x${DONE:M${.TARGET}} != x ] || blah
2000-05-14 15:14:41 +00:00
sjg
214b560694
allow .POSIX to define %POSIX as in FreeBSD
2000-05-11 08:22:40 +00:00
sjg
edfc5b4270
Expand variables in variable name passed to Var_Set and Var_Append.
...
This allows ${FOO}.bar=fubar etc to work.
This does not impact any Makefiles in the current tree but allows
some cool magic (which I need elsewhere).
2000-05-11 07:43:42 +00:00
sjg
0051977fda
Pass ctxt along to VarLoopExpand so that local variables such as .TARGET
...
can be expanded.
2000-05-11 03:32:56 +00:00
sjg
82abb388a6
Revert to the original behaviour wrt sysIncPath, ie if sysIncPath
...
is an empty list, use DEFSYSPATH.
The current behaviour may have been useful when DEFSYSMK was an
absolute path (hasn't been the case since 1996), but right now
make -m /no/such/dir will fail to find sys.mk and die.
2000-05-10 07:49:35 +00:00
drochner
df45d3b6cf
support OSF/1
2000-05-04 18:29:53 +00:00
drochner
6d10baf050
conditionalize prototypes for REMOTE support
...
(seems that REMOTE support is incomplete anyway)
2000-05-04 18:29:12 +00:00
drochner
e1710a32d6
make cleaner C for more picky compilers
2000-05-04 18:27:53 +00:00
sjg
5fe132c5cb
Added the :U :D :L :P :! and :@ modifiers as used by ODE make.
...
These allow some very useful magic in the makefiles.
The comment in var.c describing their behaviour is mostly lifted
from ODE make, but the implementation of the modifiers themselves
is quite different (much simpler) due to divergence of our code base.
2000-04-29 12:18:52 +00:00
sjg
6f4163b60c
Allow MAKESYSPATH in the environment to override the default syspath.
2000-04-29 12:15:16 +00:00
sjg
0828d668af
Changes to make MAKEOBJDIRPREFIX useful.
...
Firstly, we ignore getenv("PWD") if MAKEOBJDIRPREFIX is set so that we always
get the same value for .CURDIR regardless of how make was invoked.
Second, when executing a command we check if it is ${.MAKE} or ${.MAKE:T}
without a preceeding chdir, if so we insert a chdir(${.CURDIR}) so that
the Makefile will be found by the child make. Note that this behaviour is
dissabled if MAKEOBJDIRPREFIX is not set or if NOCHECKMAKECHDIR is set.
See the comments in main.c for more detail.
With these two changes, one can successfully build usr/src using MAKEOBJDIRPREFIX
allowing the src to be mounted from a CD-ROM.
2000-04-20 11:23:25 +00:00
simonb
ae62335eb5
Buf_GetAll() takes an int *, not a size_t *.
...
Build failure on alpha reported by Tim Rightnour on current-users.
2000-04-18 03:46:41 +00:00
christos
94c2d86134
Don't type && when you mean || (pointed out by David Holland)
2000-04-17 14:59:02 +00:00
christos
13a6d6acf1
PR/9898: David Holland: small glitch in var substitution for single letter
...
variables.
2000-04-16 23:35:16 +00:00
christos
a4760ab7d0
prefix errors with the program name.
2000-04-16 23:24:23 +00:00
christos
c097e3c5c2
Don't core-dump when the current working directory is not readable
2000-04-16 23:24:04 +00:00
christos
c407ec1982
PR/9899: David A. Holland: multi-variable .for constructs in make
2000-04-16 22:08:06 +00:00
simonb
d88dfea295
Don't declare 'extern opt*' getopt variables.
2000-04-14 06:11:07 +00:00
soren
89c5a767f8
Fix doubled 'the's.
2000-03-13 22:55:05 +00:00
sjg
90c80377e5
Fixed the oodate test to include the check of gn->cmtime == 0 without
...
breaking the original intent.
PR: 9503
2000-02-29 22:00:02 +00:00
sjg
14fcc9e86c
Non-existent libs are always out of date.
...
This was not handled correctly on ELF where libs do not have T.O.C.
PR: 9393
Reviewed by: christos
2000-02-15 04:41:45 +00:00
sjg
448f091254
Mention MAKEOBJDIRPREFIX and explain how it or MAKEOBJDIR are used.
...
Also fixed a typo in the .SUFFIXES bit.
2000-02-08 12:56:28 +00:00
sjg
49984c2f37
Make chdir_verify_path() do variable expansion on path in case
...
someone wants to do freaky stuff with $MAKEOBJDIR.
Initialize the Var system and set .CURDIR, MACHINE and MACHINE_ARCH
before chdir_verify_path() is called.
2000-02-08 12:43:25 +00:00
sjg
f618973b5f
You cannot meaningfully test if a non-existent file has a correct
...
archive header, so don't try - just believe gn->type & OP_LIB.
2000-01-31 13:21:20 +00:00
mycroft
4e558e01fa
Don't apply suffix rules for .PHONY targets. (gmake doesn't do this either.)
2000-01-22 19:28:11 +00:00
mycroft
f5d7100e26
Nuke `extern int errno;' in code we compile with -Wstrict-prototypes. We get
...
the correct definition from errno.h.
2000-01-21 17:08:33 +00:00
christos
4cd25afac7
Create temporary files carefully, to avoid security problems. Idea borrowed
...
from the botched FreeBSD implementation...
2000-01-19 23:39:37 +00:00
wrstuden
f21e998aad
Add a few little changes needed to get this to compile on IRIX 6.4.
2000-01-06 22:23:20 +00:00
mrg
f22d12ed49
back out rev 1.23 (don't stat PHONY targets). it broken the libcrypto
...
build by causing everything to be remade everytime. this fixes PR#8419.
1999-11-25 22:34:16 +00:00
kristerw
e71aea426d
Typos (from OpenBSD)
1999-11-19 22:29:24 +00:00
msaitoh
0fcbe067c6
s/ the the / the /
1999-10-08 20:13:42 +00:00