I've tried something like this:
VAR := $(echo \`find . -name ".txt"`)
but when I echo $VAR from inside a target, I get nothing...
Try
VAR := $(shell find . -name "*.txt")
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With