From bb122eff3c2b8f3dc6abd1bf0b908caffd39e963 Mon Sep 17 00:00:00 2001 From: Ruthenic Date: Thu, 27 Jan 2022 00:53:18 -0500 Subject: [PATCH] Actually create out if it doesnt exist --- Makefile | 1 + 1 file changed, 1 insertion(+) diff --git a/Makefile b/Makefile index 7014eff..003b9a0 100644 --- a/Makefile +++ b/Makefile @@ -6,6 +6,7 @@ CC_FLAGS ?= .PHONY: all debug all: + @$(shell mkdir -p out) gcc -shared src/exploit.c -o out/pwnkit.so -Wl,-e,main -fPIC debug: CC_FLAGS:=-g -O0 -v ${CC_FLAGS}