summaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorGerd Hoffmann <kraxel@redhat.com>2017-02-07 16:24:26 +0100
committerGerd Hoffmann <kraxel@redhat.com>2017-02-07 16:24:26 +0100
commit3e971a05a17148928ce0c9b610d04e87de01d642 (patch)
treeac375eb48d9d654565228cefc0c5701747463e3f /Makefile
parent49f82d81cc61e57764e4429beadfec51de02fa9c (diff)
downloadqemu-security-3e971a05a17148928ce0c9b610d04e87de01d642.tar.gz
add cve-2017-2615.c
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile6
1 files changed, 4 insertions, 2 deletions
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