# $Id$ .PHONY: all clean .SUFFIXES: .c .o all: ./gendat ./gendat: gendat.o cc -o $@ gendat.o .c.o: cc -c -o $@ $< clean: rm -f *.o ./gendat