Is this possible at all and how?
Update: I need this because I create a file both from dynamic and static data.
Use case:
Another GNU Make solution.
You can do it using the define
and export
commands as follows:
define GITIGNOREDS
*.o
depend
endef
SRCS = $(wildcard [a-z]*.c)
EXES = $(SRCS:.c=)
export GITIGNOREDS
.gitignore: $(SRCS)
echo $(EXES) | sed 's/ /\n/g' > $@
echo "$$GITIGNOREDS" >> $@
You have to be careful of make expansions (i.e. $(x)
) inside the define block though.