1
2_orig := $(wildcard ./*)
3$(shell echo > anewfile)
4_new := $(wildcard ./*)
5$(info diff=$(filter-out $(_orig),$(_new)))
6all:;@:
1
2_orig := $(wildcard ./*)
3$(shell echo > anewfile)
4_new := $(wildcard ./*)
5$(info diff=$(filter-out $(_orig),$(_new)))
6all:;@: