mirror of
https://github.com/postgres/postgres.git
synced 2025-11-29 00:04:28 -05:00
19 lines
485 B
Makefile
19 lines
485 B
Makefile
#-------------------------------------------------------------------------
|
|
#
|
|
# Makefile
|
|
# Makefile for doc directory to install man pages
|
|
#
|
|
# IDENTIFICATION
|
|
# $Header: /cvsroot/pgsql/src/interfaces/libpq++/man/Attic/Makefile,v 1.2 1997/01/08 07:32:58 scrappy Exp $
|
|
#
|
|
#-------------------------------------------------------------------------
|
|
|
|
SRCDIR= ../..
|
|
include ../../Makefile.global
|
|
|
|
install:
|
|
-mkdir -p $(POSTMANDIR)
|
|
-mkdir $(POSTMANDIR)/man3
|
|
cp *.3* $(POSTMANDIR)/man3
|
|
|