default: all

thing:
	@echo "thing rule fired!"

.DEFAULT: thing
	@echo ".DEFAULT rule fired!!"
	@echo ".DEFAULT's dependencies are: $^"
	@echo "The target which triggered it is: $@"
