bug-make
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Why call is not calling like native primitives? even when var is otherwi


From: Garreau\, Alexandre
Subject: Why call is not calling like native primitives? even when var is otherwise undef?
Date: Mon, 21 May 2018 08:20:15 +0200
User-agent: Gnus (5.13), GNU Emacs 25.1.1 (x86_64-pc-linux-gnu)

Why not, like in shell, when some function/variable is undefined, call
an internal one when defined? What’s the historic reason of this?

For instance, if there’s an occurence of $(several words) in the
makefile, and the variable “several words” isn’t defined (that’s not a
natural thing to do anyway), taking its firstword, and being equivalent
to $(call several,words) might improve readability, be simpler,
etc. then why not?

And then I asked myself, if some functions weren’t deemed useful enough
to get integrated as native primitives implemented in C, why do we still
need to use the $(call fun,args) syntax when it could be done like shell
and decide that any multi-word undefined reference could take its
firstword and use it as call does? like if in “$(fun args)”, the
variable “fun args” being if not undefinable, at least inaccessible, if
the "fun" variable exists, make it equivalent to “$(call fun,args)”?

Thank you for your time, hoping my message isn’t too much confuse or
disrelevant…



reply via email to

[Prev in Thread] Current Thread [Next in Thread]