diff options
author | Alvaro Herrera | 2007-10-07 00:23:21 +0000 |
---|---|---|
committer | Alvaro Herrera | 2007-10-07 00:23:21 +0000 |
commit | 4718358fe7a5badc6ffd6fd2e0688c6cb07c13bd (patch) | |
tree | 676d3dba967ee4ac26baa4bc180e4e6ca3549746 /doc | |
parent | f5e2911144a70be4cdd9efceb220b2156350b00c (diff) |
Remove stylesheet.css file on "make clean", created only on VPATH builds.
Diffstat (limited to 'doc')
-rw-r--r-- | doc/src/sgml/Makefile | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/doc/src/sgml/Makefile b/doc/src/sgml/Makefile index 1250bd1a1bb..b2a897d34a9 100644 --- a/doc/src/sgml/Makefile +++ b/doc/src/sgml/Makefile @@ -2,7 +2,7 @@ # # PostgreSQL documentation makefile # -# $PostgreSQL: pgsql/doc/src/sgml/Makefile,v 1.99 2007/08/31 16:41:52 momjian Exp $ +# $PostgreSQL: pgsql/doc/src/sgml/Makefile,v 1.100 2007/10/07 00:23:21 alvherre Exp $ # #---------------------------------------------------------------------------- @@ -311,3 +311,6 @@ clean distclean maintainer-clean: rm -f postgres.xml htmlhelp.hhp toc.hhc index.hhk *.fo # Texinfo rm -f *.texixml *.texi *.info db2texi.refs +ifeq ($(vpath_build), yes) + rm -f stylesheet.css +endif |