Skip to content
Snippets Groups Projects
Commit 5545aca4 authored by zwelch's avatar zwelch
Browse files

Fix doc/Makefile.am dist-hook to include all sections of manual.

git-svn-id: svn://svn.berlios.de/openocd/trunk@1854 b42882b7-edfa-0310-969c-e2dbd0fdcd60
parent ed294121
No related branches found
No related tags found
No related merge requests found
......@@ -6,5 +6,9 @@ EXTRA_DIST = openocd.1
dist-hook:
mkdir $(distdir)/manual
cp -p $(srcdir)/manual/*.txt $(distdir)/manual
for i in $$(cd $(srcdir)/manual/ && ls -d */); do \
mkdir $(distdir)/manual/$$i; \
cp -p $(srcdir)/manual/$$i/* $(distdir)/manual/$$i/; \
done
MAINTAINERCLEANFILES = Makefile.in mdate-sh texinfo.tex
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