summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorAaron Ball <nullspoon@oper.io>2022-10-31 10:10:27 -0600
committerAaron Ball <nullspoon@oper.io>2022-10-31 10:10:27 -0600
commit0c7882aab7869730680dc6d4c99a8f17dccf7d0c (patch)
tree4d8af3b82454d4eeb153150c54c3a9654e0594a1 /Makefile
downloadleak-utils-0c7882aab7869730680dc6d4c99a8f17dccf7d0c.tar.gz
leak-utils-0c7882aab7869730680dc6d4c99a8f17dccf7d0c.tar.xz
Initial commit
This adds the memleak source, which leaks memory at the specified rate per second. This also includes the GPLv3 license.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile7
1 files changed, 7 insertions, 0 deletions
diff --git a/Makefile b/Makefile
new file mode 100644
index 0000000..554b146
--- /dev/null
+++ b/Makefile
@@ -0,0 +1,7 @@
+all: memleak
+
+clean:
+ rm -vf memleak
+
+memleak:
+ cc --std=gnu99 -O2 -Wall src/memleak.c -o memleak

Generated by cgit