diff options
author | Aaron Ball <nullspoon@oper.io> | 2022-10-31 10:10:27 -0600 |
---|---|---|
committer | Aaron Ball <nullspoon@oper.io> | 2022-10-31 10:10:27 -0600 |
commit | 0c7882aab7869730680dc6d4c99a8f17dccf7d0c (patch) | |
tree | 4d8af3b82454d4eeb153150c54c3a9654e0594a1 /Makefile | |
download | leak-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-- | Makefile | 7 |
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 |