From: Rohit Jain Date: Sat, 13 Oct 2018 02:06:58 +0000 (-0700) Subject: Changing tests/fuzz/Makefile to move util.o to FUZZ_SRC instead X-Git-Tag: v1.3.8~72^2~1 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=5dc94430530fd7f9377356e5e635ae5583605624;p=thirdparty%2Fzstd.git Changing tests/fuzz/Makefile to move util.o to FUZZ_SRC instead --- diff --git a/tests/fuzz/Makefile b/tests/fuzz/Makefile index 22617ed5c..1530138cf 100644 --- a/tests/fuzz/Makefile +++ b/tests/fuzz/Makefile @@ -41,7 +41,7 @@ FUZZ_ARFLAGS := $(ARFLAGS) FUZZ_TARGET_FLAGS = $(FUZZ_CPPFLAGS) $(FUZZ_CXXFLAGS) $(FUZZ_LDFLAGS) FUZZ_HEADERS := fuzz_helpers.h fuzz.h zstd_helpers.h -FUZZ_SRC := zstd_helpers.c +FUZZ_SRC := $(PRGDIR)/util.c zstd_helpers.c ZSTDCOMMON_SRC := $(ZSTDDIR)/common/*.c ZSTDCOMP_SRC := $(ZSTDDIR)/compress/*.c @@ -52,7 +52,7 @@ FUZZ_SRC := \ $(ZSTDCOMMON_SRC) \ $(ZSTDCOMP_SRC) -FUZZ_OBJ := $(patsubst %.c,%.o, $(wildcard $(FUZZ_SRC))) $(PRGDIR)/util.o +FUZZ_OBJ := $(patsubst %.c,%.o, $(wildcard $(FUZZ_SRC))) .PHONY: default all clean cleanall