I\'m trying to assign the output of this command ( that is in my makefile ) to the makefile HEADER var like in this following line of code:
HEADER = $(shell
Why not simply do
HEADER = $(shell find . -name '*.h')