Makefile (108B)
1CFLAGS = -g 2 3.PHONY: all clean 4 5all: revhash 6 7clean: 8 rm revhash 9 10revhash: main.c 11 $(CC) -o $@ $< $(CFLAGS)