summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorAaron Ball <nullspoon@oper.io>2022-10-31 10:13:55 -0600
committerAaron Ball <nullspoon@oper.io>2022-10-31 10:13:55 -0600
commit2056e1a2ec447cc0e9378d33667a6f26685725a0 (patch)
treebfe134015462c95de3318c76dbf955c6722f731c /Makefile
parent0c7882aab7869730680dc6d4c99a8f17dccf7d0c (diff)
downloadleak-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--Makefile7
1 files changed, 5 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 554b146..a7669b5 100644
--- a/Makefile
+++ b/Makefile
@@ -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

Generated by cgit