From 3e971a05a17148928ce0c9b610d04e87de01d642 Mon Sep 17 00:00:00 2001 From: Gerd Hoffmann Date: Tue, 7 Feb 2017 16:24:26 +0100 Subject: add cve-2017-2615.c --- Makefile | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index 897a38e..05b84cd 100644 --- a/Makefile +++ b/Makefile @@ -6,9 +6,11 @@ CFLAGS += -Wall SOURCES := $(wildcard *.c) TARGETS := $(patsubst %.c,%,$(SOURCES)) +cve-2017-2615 : CFLAGS += $(shell pkg-config --cflags libpci) +cve-2017-2615 : LDLIBS += $(shell pkg-config --libs libpci) + all: $(TARGETS) clean: rm -f $(TARGETS) - rm -f *~ - + rm -f *~ *.o -- cgit