From 1a9ff1d99bb5c78a12551f835eda6545f123108e Mon Sep 17 00:00:00 2001 From: Theodore Ts'o Date: Wed, 31 Aug 2022 15:45:27 -0400 Subject: [PATCH] tests/fuzz: add missing targets to the Makefile in in tests/fuzz This fixes failures when running "make install" or "make destclean" from the top level directory. Signed-off-by: Theodore Ts'o --- tests/fuzz/Makefile.in | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/tests/fuzz/Makefile.in b/tests/fuzz/Makefile.in index a6d8063..949579e 100644 --- a/tests/fuzz/Makefile.in +++ b/tests/fuzz/Makefile.in @@ -41,6 +41,16 @@ FUZZ_DEP= $(STATIC_DEPLIBS) $(srcdir)/Makefile.in clean:: $(RM) -f $(PROGS) *.o +install: + +install-strip: + +uninstall: + +mostlyclean: clean +distclean: clean + $(RM) -f .depend Makefile $(srcdir)/TAGS $(srcdir)/Makefile.in.old + ext2fs_check_directory_fuzzer: ext2fs_check_directory_fuzzer.o $(FUZZ_DEP) $(E) " LD $@" $(Q) $(CXX) $(FUZZ_LDFLAGS) -o $@ $< $(STATIC_LIBS) $(SYSLIBS) -- 1.8.3.1