Link to home
Start Free TrialLog in
Avatar of sanjay_thakur
sanjay_thakur

asked on

Multiple make files

Hi,
A simple question

I have a.make
in which I want to also include and execute b.make.

how do I do this.
Basically b.make creates symlinks to some directory that I want to make use of in a.make.

Any simple solutions?





ASKER CERTIFIED SOLUTION
Avatar of brettmjohnson
brettmjohnson
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of joju
joju

if you want to execute b.make, insert the following line at the appropriate location in a.make:

cd <PATH> && Make -f b.make