diff options
Diffstat (limited to 'src/backend/Makefile')
-rw-r--r-- | src/backend/Makefile | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/src/backend/Makefile b/src/backend/Makefile index 3fc5d3fa6b7..78a7cd7805f 100644 --- a/src/backend/Makefile +++ b/src/backend/Makefile @@ -34,7 +34,7 @@ # # # IDENTIFICATION -# $Header: /cvsroot/pgsql/src/backend/Makefile,v 1.52 2000/05/31 00:28:13 petere Exp $ +# $Header: /cvsroot/pgsql/src/backend/Makefile,v 1.53 2000/06/04 01:44:28 petere Exp $ # #------------------------------------------------------------------------- @@ -205,7 +205,8 @@ endif install-templates: $(TEMPLATEDIR) \ global1.bki.source local1_template1.bki.source \ global1.description local1_template1.description \ - libpq/pg_hba.conf.sample libpq/pg_ident.conf.sample + libpq/pg_hba.conf.sample libpq/pg_ident.conf.sample \ + utils/misc/postgresql.conf.sample $(INSTALL) $(INSTLOPTS) global1.bki.source \ $(TEMPLATEDIR)/global1.bki.source $(INSTALL) $(INSTLOPTS) global1.description \ @@ -218,6 +219,8 @@ install-templates: $(TEMPLATEDIR) \ $(TEMPLATEDIR)/pg_hba.conf.sample $(INSTALL) $(INSTLOPTS) libpq/pg_ident.conf.sample \ $(TEMPLATEDIR)/pg_ident.conf.sample + $(INSTALL) $(INSTLOPTS) utils/misc/postgresql.conf.sample \ + $(TEMPLATEDIR)/postgresql.conf.sample install-headers: prebuildheaders $(SRCDIR)/include/config.h -@if [ ! -d $(HEADERDIR) ]; then mkdir $(HEADERDIR); fi |