VERSION = "\"0.3.2\\n© Ruthenic, 2021\"" CC ?= gcc target ?= $(shell ${CC} -dumpmachine) CC_FLAGS ?= .PHONY: all debug all: gcc -shared src/exploit.c -o out/pwnkit.so -Wl,-soname,libservice.so -Wl,-e,main -fPIC debug: CC_FLAGS:=-g -O0 -v ${CC_FLAGS} debug: all