I am trying to achieve something very specific with autotools - dynamic variable names. My goal is to create dynamic targets depending on a certain configuration file, similarly to the Linux kernel.
The Linux kernel can be configured using make menuconfig, which eventually generates a .config. The Makefiles of the Linux kernel contain targets such as obj-$(CONFIG_DMA) and depending on the value of CONFIG_DMA (y, n or m), the associated source file will be built in statically, as a module, or not at all. I am using kconfig-frontends which lets me generate a .config file which I can then include in a standard GNU Makefile and use successfully onwards. I would like to achieve the same level of functionality with automake, but unfortunately automake refuses to set variable names depending on an external environment variable. I can think of hacky ways to get around this issue, but I'm sure there must be a way to achieve this in a clear fashion. Can anyone think of a solution for this?
Any help is appreciated, and I'm open to using cmake if it solves my problem.
Thanks!