# simple Makefile demonstrating the use of variables
# call: make -f Makefile-vars <rule>

# Defining a variable
FILELIST	:= $(shell find ./ -type f) 


# Accessing a variable ... as a list and then entry by entry
all: 
	@echo
	@echo files: 
	@echo $(FILELIST)
	@echo
	@echo files: 
	@for i in $(FILELIST); do echo $$i; done
