prog = prog2

.PHONY:	all clean

all: $(prog)

$(prog): defs2.h
	cat /dev/null > $@

clean:
	-rm $(prog)
