16 lines
239 B
Makefile
16 lines
239 B
Makefile
TARGET := exploit
|
|
|
|
all: $(TARGET)
|
|
|
|
$(TARGET): exploit.m
|
|
$(CC) -o $@ $^
|
|
|
|
clean:
|
|
rm -f $(TARGET)
|
|
|
|
install:
|
|
mkdir -p ../../../../data/exploits/CVE-2020-9839/
|
|
cp $(TARGET) ../../../../data/exploits/CVE-2020-9839/exploit
|
|
|
|
.PHONY: all clean
|