2
0
mirror of https://github.com/sudo-project/sudo.git synced 2025-08-22 09:57:41 +00:00

Add some missing files to the clean target

This commit is contained in:
Todd C. Miller 2021-02-26 14:27:27 -07:00
parent d1cc1c59e8
commit bdfc07f330
3 changed files with 6 additions and 6 deletions

View File

@ -113,7 +113,7 @@ clean:
mostlyclean: clean
distclean: clean
-rm -rf Makefile
-rm -rf Makefile sudo.conf
clobber: distclean

View File

@ -163,8 +163,8 @@ check: $(TEST_PROGS)
fi
clean:
-$(LIBTOOL) $(LTFLAGS) --mode=clean rm -f *.lo *.o *.la
-rm -f *.i *.plog stamp-* core *.core core.*
-$(LIBTOOL) $(LTFLAGS) --mode=clean rm -f *.lo *.o *.la $(TEST_PROGS)
-rm -f *.i *.plog stamp-* core *.core core.* regress/*/*.out
mostlyclean: clean

View File

@ -565,11 +565,11 @@ fuzz: $(FUZZ_PROGS)
echo "fuzz_sudoers-ldif: verifying corpus"; \
./fuzz_sudoers_ldif $(FUZZ_SUDOERS_LDIF_CORPUS); \
echo "fuzz_policy: verifying corpus"; \
./fuzz_policy $(FUZZ_POLICY_CORPUS) > fuzz_policy.out 2>&1; \
./fuzz_policy $(FUZZ_POLICY_CORPUS) > regress/fuzz/fuzz_policy.out 2>&1; \
if [ $$? -ne 0 ]; then \
cat fuzz_policy.out; \
cat regress/fuzz/fuzz_policy.out; \
else \
echo "fuzz_policy: output in fuzz_policy.out"; \
echo "fuzz_policy: output in regress/fuzz/fuzz_policy.out"; \
fi; \
fi