ECHO=echa RM=rm all: a.txt b.txt a.txt b.txt: c.txt echo bla > a.txt echo bla > b.txt c.txt: echo original > c.txt clean: -$(RM) *.txt