Files
metasploit-gs/external/source/exploits/CVE-2020-9839/Makefile
T

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

16 lines
239 B
Makefile
Raw Normal View History

2020-08-13 13:26:28 +08:00
TARGET := exploit
all: $(TARGET)
2020-08-18 16:18:38 +08:00
$(TARGET): exploit.m
2020-08-13 13:26:28 +08:00
$(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