
#does not sort lexically like expected
LIST = $(sort widget.c main.c ad.c Buzzer.c) 

#target
all:	list

list:
	@echo $(LIST)

.PHONY: all list
