prog = prog1

.PHONY:	all clean

all: $(prog)

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

clean:
	-rm $(prog)
