diff options
author | Gerd Hoffmann <kraxel@redhat.com> | 2017-02-07 16:24:26 +0100 |
---|---|---|
committer | Gerd Hoffmann <kraxel@redhat.com> | 2017-02-07 16:24:26 +0100 |
commit | 3e971a05a17148928ce0c9b610d04e87de01d642 (patch) | |
tree | ac375eb48d9d654565228cefc0c5701747463e3f /Makefile | |
parent | 49f82d81cc61e57764e4429beadfec51de02fa9c (diff) | |
download | qemu-security-3e971a05a17148928ce0c9b610d04e87de01d642.tar.gz |
add cve-2017-2615.c
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 6 |
1 files changed, 4 insertions, 2 deletions
@@ -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 |