From: Theodore Ts'o Date: Wed, 31 Aug 2022 19:45:27 +0000 (-0400) Subject: tests/fuzz: add missing targets to the Makefile in in tests/fuzz X-Git-Tag: v1.46.6-rc1~11 X-Git-Url: https://git.whamcloud.com/?a=commitdiff_plain;h=1a9ff1d99bb5c78a12551f835eda6545f123108e;p=tools%2Fe2fsprogs.git 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 --- 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)