diff options
author | Denis 'GNUtoo' Carikli <GNUtoo@cyberdimension.org> | 2020-03-08 00:21:44 +0100 |
---|---|---|
committer | Denis 'GNUtoo' Carikli <GNUtoo@cyberdimension.org> | 2020-03-08 00:30:29 +0100 |
commit | 69cb526686bf6cd9620574451f0fca3fac426cf8 (patch) | |
tree | f7c0778a604e487b13965243e2e6901c6b860386 | |
parent | 367688693d0e09139dfcf28f802bbb89847477c6 (diff) | |
download | towelroot-69cb526686bf6cd9620574451f0fca3fac426cf8.tar.gz towelroot-69cb526686bf6cd9620574451f0fca3fac426cf8.tar.bz2 towelroot-69cb526686bf6cd9620574451f0fca3fac426cf8.zip |
Add Makefile
Signed-off-by: Denis 'GNUtoo' Carikli <GNUtoo@cyberdimension.org>
-rw-r--r-- | Makefile | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..ba6d3e8 --- /dev/null +++ b/Makefile @@ -0,0 +1,5 @@ +poc: + $(CC) $(CFLAGS) $@.c -lpthread -o $@ + +clean: + rm -f poc |