YS
CONF += $(shell cat path_to_file)
Size: a a a
YS
CONF += $(shell cat path_to_file)
YS
YS
cat .. | tr '\n'
' 'C
YS
AA
AA
AA
AA
AA
AA
AA
YS
$ cat testfile
BOO=BAR
BAZ=TOO
$ cat Makefile
CONF = $(shell cat testfile)
all:
@echo "config is:"
@echo $(CONF)
$ make
config is:
BOO=BAR BAZ=TOO
AA
YS
AA
YS
AA
AA
AA