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
The makefile tutorial suggested to use wildcard to get list of files in a directory. In your case, it means this :
wildcard
HEADERS=$(wildcard *.h)