Skip to content
Snippets Groups Projects
Commit 945f8e10 authored by Ben Collins's avatar Ben Collins
Browse files

Added verclean-local-srv since veryclean was not being run in the back-* and related directories

parent f02ef677
No related branches found
No related tags found
No related merge requests found
......@@ -99,6 +99,14 @@ clean-local-srv: FORCE
fi; \
done
veryclean-local-srv: FORCE
@for i in back-* shell-backends tools; do \
if [ -d $$i ]; then \
echo; echo " cd $$i; $(MAKE) $(MFLAGS) clean"; \
( cd $$i; $(MAKE) $(MFLAGS) veryclean ); \
fi; \
done
install-local-srv: install-slapd install-conf install-tools
install-slapd: FORCE
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment