Files

8 lines
89 B
Makefile

TARGET := CVE-2017-7308
all:
gcc CVE-2017-7308.c -o $(TARGET)
clean:
rm -f $(TARGET)