diff options
-rw-r--r-- | doc-xc/src/sgml/.gitignore | 3 | ||||
-rw-r--r-- | doc-xc/src/sgml/Makefile | 5 |
2 files changed, 6 insertions, 2 deletions
diff --git a/doc-xc/src/sgml/.gitignore b/doc-xc/src/sgml/.gitignore index e1b84b490f..71258a3a23 100644 --- a/doc-xc/src/sgml/.gitignore +++ b/doc-xc/src/sgml/.gitignore @@ -31,3 +31,6 @@ /postgres-A4.aux /postgres-A4.log /postgres-A4.out +# sgml files generated from sgmlin +/*.sgml +/ref/*.sgml
\ No newline at end of file diff --git a/doc-xc/src/sgml/Makefile b/doc-xc/src/sgml/Makefile index ea894750ae..337ede7afe 100644 --- a/doc-xc/src/sgml/Makefile +++ b/doc-xc/src/sgml/Makefile @@ -17,11 +17,11 @@ # to want to use. html: -subdir = doc/src/sgml +subdir = doc-xc/src/sgml top_builddir = ../../.. include $(top_builddir)/src/Makefile.global -MAKESGMLDIR = $(top_srcdir)/src/pgxc/tools/makesgml +MAKESGMLDIR = $(top_builddir)/src/pgxc/tools/makesgml MAKESGML = $(MAKESGMLDIR)/makesgml @@ -215,6 +215,7 @@ INC_LIST = -I PG -I EN #INC_LIST = -I PGXC -I EN .sgmlin.sgml: + $(MAKE) -C $(MAKESGMLDIR) $(MAKESGML) -i $< -o $@ $(INC_LIST) $(EXC_LIST) |