Tagged Questions

4
votes
5answers
484 views

How can I ignore command line variable assignment in a recursive build?

I'm trying to glue two build systems together. Both are recursive (rules in the makefile use make to call other makefiles to build components of the project). I'll call them 'A' and 'B' where 'A' ...
3
votes
4answers
1k views

GNU make with many target directories

I have to integrate the generation of many HTML files in an existing Makefile. The problem is that the HTML files need to reside in many different directories. My idea is to write an implicit rule ...