mirror of
https://github.com/v12-security/pocs.git
synced 2026-05-16 11:07:43 +00:00
14 lines
224 B
Makefile
14 lines
224 B
Makefile
CC ?= gcc
|
|
CFLAGS := -O2 -Wall -Wextra -std=gnu11
|
|
LDFLAGS := -static
|
|
BIN := skb_segment_exploit
|
|
|
|
all: $(BIN)
|
|
|
|
$(BIN): skb_segment_exploit.c
|
|
$(CC) $(CFLAGS) $(LDFLAGS) -o $@ $<
|
|
|
|
clean:
|
|
rm -f $(BIN)
|
|
|
|
.PHONY: all clean
|