diff options
Diffstat (limited to 'checker/src/revhash/Makefile')
| -rw-r--r-- | checker/src/revhash/Makefile | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/checker/src/revhash/Makefile b/checker/src/revhash/Makefile new file mode 100644 index 0000000..b1c17df --- /dev/null +++ b/checker/src/revhash/Makefile @@ -0,0 +1,11 @@ +CFLAGS = -g + +.PHONY: all clean + +all: revhash + +clean: + rm revhash + +revhash: main.c + $(CC) -o $@ $< $(CFLAGS) |
