diff options
author | Aaron Ball <nullspoon@oper.io> | 2022-10-31 10:13:55 -0600 |
---|---|---|
committer | Aaron Ball <nullspoon@oper.io> | 2022-10-31 10:13:55 -0600 |
commit | 2056e1a2ec447cc0e9378d33667a6f26685725a0 (patch) | |
tree | bfe134015462c95de3318c76dbf955c6722f731c /Makefile | |
parent | 0c7882aab7869730680dc6d4c99a8f17dccf7d0c (diff) | |
download | leak-utils-2056e1a2ec447cc0e9378d33667a6f26685725a0.tar.gz leak-utils-2056e1a2ec447cc0e9378d33667a6f26685725a0.tar.xz |
Add balloon program
This adds the balloon program, which balloons up in size immediately,
taking the specified amount of memory.
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 7 |
1 files changed, 5 insertions, 2 deletions
@@ -1,7 +1,10 @@ -all: memleak +all: memleak balloon clean: - rm -vf memleak + rm -vf memleak balloon memleak: cc --std=gnu99 -O2 -Wall src/memleak.c -o memleak + +balloon: + cc --std=gnu99 -O2 -Wall src/balloon.c -o balloon |