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

Fixed a small mistake in the last commit, as well as adding a clean-common to remove the tmp files

parent 945f8e10
No related branches found
No related tags found
No related merge requests found
......@@ -35,11 +35,12 @@ install-common:
if [ -f "$$page.links" ]; then \
for link in `$(CAT) $$page.links`; do \
echo "installing $(MANDIR)/$$link as link to $$page"; \
$(RM) $(INSTDIR)/$$link $(MANDIR)/$$link; \
$(LN_S) -sf $$page $(MANDIR)/$$link; \
$(LN_S) -f $$page $(MANDIR)/$$link; \
done; \
fi; \
done; \
$(RM) $$TMPMAN
Makefile: $(top_srcdir)/build/lib.mk
clean-common: FORCE
$(RM) *.tmp all-common
Makefile: $(top_srcdir)/build/man.mk
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