mirror of
git://gcc.gnu.org/git/gcc.git
synced 2024-12-21 18:50:12 +08:00
eb6e2e5bef
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. From-SVN: r46797
14 lines
275 B
Makefile
14 lines
275 B
Makefile
|
|
MAKEINFO=makeinfo
|
|
INC=../../../gcc/doc/include
|
|
|
|
all: faq/index.txt 17_intro/porting.html
|
|
|
|
|
|
faq/index.txt: faq/index.html
|
|
lynx -dump $< | sed "s%file://localhost`pwd`%..%" > $@
|
|
|
|
17_intro/porting.html: 17_intro/porting.texi
|
|
${MAKEINFO} -I ${INC} --html --no-split $< -o $@
|
|
|