|
From: Dennis L. <pla...@in...> - 2005-12-05 19:13:08
|
Hi, is it possible to somehow build the docs right after a configure ? Or do I really need to first make dist and then use the docs from there? I ask because I want to have a build process were I create a rpm package for me from fresh checked out svn code, and making dist, then use the generated tarball again for the rpm seems a bit too complex than a "make docs" in the rpm for me... greets Dennis Carpe quod tibi datum est |
|
From: Nicholas N. <nj...@cs...> - 2005-12-05 19:21:57
|
On Mon, 5 Dec 2005, Dennis Lubert wrote: > is it possible to somehow build the docs right after a configure ? Or do I > really need to first make dist and then use the docs from there? I ask > because I want to have a build process were I create a rpm package for me > from fresh checked out svn code, and making dist, then use the generated > tarball again for the rpm seems a bit too complex than a "make docs" in the > rpm for me... There are a few specific targets in docs/Makefile.am, eg. "print-docs", "all-docs", "html-docs". Nick |
|
From: Julian S. <js...@ac...> - 2005-12-05 19:28:26
|
./autogen.sh ; configure ; cd docs ; make html-docs print-docs might do it. J On Monday 05 December 2005 19:15, Dennis Lubert wrote: > Hi, > > is it possible to somehow build the docs right after a configure ? Or > do I really need to first make dist and then use the docs from there? > I ask because I want to have a build process were I create a rpm > package for me from fresh checked out svn code, and making dist, then > use the generated tarball again for the rpm seems a bit too complex > than a "make docs" in the rpm for me... > > greets > > Dennis > > Carpe quod tibi datum est > > > > ------------------------------------------------------- > This SF.net email is sponsored by: Splunk Inc. Do you grep through log > files for problems? Stop! Download the new AJAX search engine that makes > searching your log files as easy as surfing the web. DOWNLOAD SPLUNK! > http://ads.osdn.com/?ad_id=7637&alloc_id=16865&op=click > _______________________________________________ > Valgrind-users mailing list > Val...@li... > https://lists.sourceforge.net/lists/listinfo/valgrind-users |
|
From: Dennis L. <pla...@in...> - 2005-12-05 20:08:46
|
At 20:28 05.12.2005, Julian Seward wrote: >./autogen.sh ; configure ; cd docs ; make html-docs print-docs might do it. Thanx, looks like it did build all docs. Now I only have to convince rpm to include the files, since it does not seem to see it. But thats my problem, thanx for the quick answer. greets Dennis Carpe quod tibi datum est |