You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

14 lines
268 B

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