vote up 0 vote down star

I have a Makefile in:

project/all_app/myapp/src/Makefile

I also have a master Depend.mk in

project/Depend.mk

Can I include the main Makefile by using the relative path?

include ../../../../Depend.mk
flag

63% accept rate

2 Answers

vote up 0 vote down

The rules for include in make are a little bit complex - see this section of the GNU make manual. But yes - you can do what you asked.

link|flag
vote up 0 vote down

Be warned that make's include starts at pwd, not the path to the Makefile. (so make -f will probably cause problems)

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.