From: Wei Liu Date: Thu, 8 Dec 2016 13:44:54 +0000 (+0000) Subject: tools: hook up fuzz directory X-Git-Tag: archive/raspbian/4.11.1-1+rpi1~1^2~66^2~3169 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=6f33dea03571865f11772f6b5ed357829f336a4d;p=xen.git tools: hook up fuzz directory This will make all fuzzing targets get build every time tools directory is built. This serves as basic regression test. Signed-off-by: Wei Liu Acked-by: Ian Jackson --- diff --git a/tools/Makefile b/tools/Makefile index 71515b48e0..77e0723f7c 100644 --- a/tools/Makefile +++ b/tools/Makefile @@ -6,6 +6,7 @@ SUBDIRS-y += include SUBDIRS-y += libs SUBDIRS-y += libxc SUBDIRS-y += flask +SUBDIRS-y += fuzz SUBDIRS-y += xenstore SUBDIRS-y += misc SUBDIRS-y += examples diff --git a/tools/fuzz/Makefile b/tools/fuzz/Makefile new file mode 100644 index 0000000000..ce00b82b02 --- /dev/null +++ b/tools/fuzz/Makefile @@ -0,0 +1,11 @@ +XEN_ROOT = $(CURDIR)/../.. +include $(XEN_ROOT)/tools/Rules.mk + +SUBDIRS-y := +SUBDIRS-y += libelf +SUBDIRS-y += x86_instruction_emulator + +.PHONY: all clean distclean +all clean distclean: %: subdirs-% + +install: