This is the mail archive of the gcc-patches@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

Re: [libstdc++] new version of porting-howto


On Mon, Nov 05, 2001 at 02:00:05PM -0800, Benjamin Kosnik wrote:
> 
> thanks. can you also move the porting.texi into docs?

Sure.


2001-11-05  Phil Edwards  <pme@gcc.gnu.org>

	* porting.texi:  Move...
	* docs/html/17_intro/porting.texi:  ...to here.
	* docs/html/Makefile:  Add rule to rebuild...
	* docs/html/17_intro/porting.html:  ...this.  New file.


Index: docs/html/Makefile
===================================================================
RCS file: /cvs/gcc/gcc/libstdc++-v3/docs/html/Makefile,v
retrieving revision 1.1
diff -u -3 -p -r1.1 Makefile
--- Makefile	2000/12/10 04:03:08	1.1
+++ Makefile	2001/11/06 00:15:21
@@ -1,5 +1,13 @@
 
+MAKEINFO=makeinfo
+INC=../../../gcc/doc/include
 
+all: faq/index.txt 17_intro/porting.html
+
+
 faq/index.txt: faq/index.html
-	lynx -dump faq/index.html | sed "s%file://localhost`pwd`%..%" > $@
+	lynx -dump $< | sed "s%file://localhost`pwd`%..%" > $@
+
+17_intro/porting.html: 17_intro/porting.texi
+	${MAKEINFO} -I ${INC} --html --no-split $< -o $@
 


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]