help-make
[Top][All Lists]
Advanced

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

using $eval to include other makefiles


From: Hiran Morar
Subject: using $eval to include other makefiles
Date: Wed, 22 Jul 2015 20:02:00 -0700

Hello,

I've noticed multiple ways of including a Makefile within another Makefile.
For example, one could directly include the Makefile:

     # Filename top.mk
     ...
     include /path/to/file.mk

One could also use the $eval function to include the Makefile:

     # Filename: top.mk
     ...
     $(eval include /path/to/file.mk)

Both work fine. What's the difference? Is there an optimal or preferred
method?

Thanks!
Hiran


reply via email to

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