From: <den...@us...> - 2010-08-02 13:58:53
|
Revision: 255 http://stdair.svn.sourceforge.net/stdair/?rev=255&view=rev Author: denis_arnaud Date: 2010-08-02 13:58:47 +0000 (Mon, 02 Aug 2010) Log Message: ----------- [Man] Added Doxygen configuration to generate man pages. Modified Paths: -------------- trunk/stdair/Makefile.am trunk/stdair/man/Makefile.am Modified: trunk/stdair/Makefile.am =================================================================== --- trunk/stdair/Makefile.am 2010-08-02 13:44:03 UTC (rev 254) +++ trunk/stdair/Makefile.am 2010-08-02 13:58:47 UTC (rev 255) @@ -21,11 +21,16 @@ MAINTAINERCLEANFILES = Makefile.in aclocal.m4 configure \ config-h.in sic/stamp-h.in autogen.sh bootstrap -#EXTRA_DIST = @PACKAGE@.spec @PACKAGE@.m4 @PACKAGE@.pc Makefile.common +# Note 1: the RPM specification file (@PACKAGE@.spec) must not be distributed +# with the rest of the source code. The tar-ball will be used by the packaging +# process, from an external RPM specification file: duplicating it in the +# tar-ball may only confuse things. +# Note 2: Both @PACKAGE@.m4 and @PACKAGE@.pc must not be distributed, as they +# will be generated by the configure script. EXTRA_DIST = # Build in these directories: -SUBDIRS = stdair @PACKAGE@ man $(HTML_DOC_DIR) extracppunit $(TEST_DIR) +SUBDIRS = stdair man $(HTML_DOC_DIR) extracppunit $(TEST_DIR) # Configuration helpers Modified: trunk/stdair/man/Makefile.am =================================================================== --- trunk/stdair/man/Makefile.am 2010-08-02 13:44:03 UTC (rev 254) +++ trunk/stdair/man/Makefile.am 2010-08-02 13:58:47 UTC (rev 255) @@ -11,6 +11,8 @@ EXTRA_DIST = $(man_MANS) $(MAN_SRC) # +all-local: man-local + man-local: doxygen_man.cfg $(MAN_SRC) doxygen $<; \ mv -f man3/* . && rmdir man3 This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |