aboutsummaryrefslogtreecommitdiffstats
path: root/checker/src/revhash/Makefile
diff options
context:
space:
mode:
authorLouis Burda <quent.burda@gmail.com>2021-05-27 21:58:17 +0200
committerLouis Burda <quent.burda@gmail.com>2021-05-27 21:58:17 +0200
commit8057ab1167b3c0c19f8212c86c7a849ca3997d47 (patch)
treeff772afba37149dbfd2cab0e28b39fe2e81c61fa /checker/src/revhash/Makefile
parent002a422e321971d2c6d4c54ffe40288252299cf8 (diff)
downloadenowars5-service-stldoctor-8057ab1167b3c0c19f8212c86c7a849ca3997d47.tar.gz
enowars5-service-stldoctor-8057ab1167b3c0c19f8212c86c7a849ca3997d47.zip
bumped enochecker and implemented exploits with minor tweaks to source
Diffstat (limited to 'checker/src/revhash/Makefile')
-rw-r--r--checker/src/revhash/Makefile11
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)