[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [Xen-devel] [PATCH 2/2] tools/fuzz: make sure targets are always built
Invocation of `make' in top-level directory would end up invoking the install target. Adjust fuzzing target makefiles a bit so that they are always build in that situation. Signed-off-by: Wei Liu <wei.liu2@xxxxxxxxxx> --- tools/fuzz/Makefile | 6 ++---- tools/fuzz/libelf/Makefile | 3 +++ tools/fuzz/x86_instruction_emulator/Makefile | 3 +++ 3 files changed, 8 insertions(+), 4 deletions(-) diff --git a/tools/fuzz/Makefile b/tools/fuzz/Makefile index ce00b82..986fbb8 100644 --- a/tools/fuzz/Makefile +++ b/tools/fuzz/Makefile @@ -5,7 +5,5 @@ SUBDIRS-y := SUBDIRS-y += libelf SUBDIRS-y += x86_instruction_emulator -.PHONY: all clean distclean -all clean distclean: %: subdirs-% - -install: +.PHONY: all clean distclean install +all clean distclean install: %: subdirs-% diff --git a/tools/fuzz/libelf/Makefile b/tools/fuzz/libelf/Makefile index 0e9d40a..c73ce44 100644 --- a/tools/fuzz/libelf/Makefile +++ b/tools/fuzz/libelf/Makefile @@ -29,3 +29,6 @@ distclean: clean .PHONY: clean clean: rm -f *.o *.a + +.PHONY: install +install: all diff --git a/tools/fuzz/x86_instruction_emulator/Makefile b/tools/fuzz/x86_instruction_emulator/Makefile index 505de39..20431b0 100644 --- a/tools/fuzz/x86_instruction_emulator/Makefile +++ b/tools/fuzz/x86_instruction_emulator/Makefile @@ -34,3 +34,6 @@ distclean: clean .PHONY: clean clean: rm -f *.a *.o + +.PHONY: install +install: all -- 2.1.4 _______________________________________________ Xen-devel mailing list Xen-devel@xxxxxxxxxxxxx https://lists.xen.org/xen-devel
|
Lists.xenproject.org is hosted with RackSpace, monitoring our |