mirror of
https://github.com/postgres/postgres.git
synced 2026-03-02 21:30:36 -05:00
the default target is 'install' instead of 'all'. So if you do a
make without target you actually do a make install, which is not
what one normally expects from a standard makefile.
From: Massimo Dal Zotto <dz@cs.unitn.it>
33 lines
756 B
Makefile
33 lines
756 B
Makefile
#-------------------------------------------------------------------------
|
|
#
|
|
# Makefile
|
|
# Makefile for doc directory to install man pages
|
|
#
|
|
# Copyright (c) 1994, Regents of the University of California
|
|
# Copyright (c) 1996, Dr George D Detlefsen
|
|
#
|
|
#
|
|
# IDENTIFICATION
|
|
# $Header: /cvsroot/pgsql/src/man/Attic/Makefile,v 1.8 1999/06/05 04:15:09 scrappy Exp $
|
|
#
|
|
#-------------------------------------------------------------------------
|
|
|
|
SRCDIR=..
|
|
include ../Makefile.global
|
|
|
|
all:
|
|
|
|
install:
|
|
-mkdir $(POSTMANDIR)
|
|
-mkdir $(POSTMANDIR)/man1
|
|
-mkdir $(POSTMANDIR)/man3
|
|
-mkdir $(POSTMANDIR)/man5
|
|
-mkdir $(POSTMANDIR)/manl
|
|
cp *.1* $(POSTMANDIR)/man1
|
|
cp *.3* $(POSTMANDIR)/man3
|
|
cp *.5* $(POSTMANDIR)/man5
|
|
cp *.l* $(POSTMANDIR)/manl
|
|
|
|
clean:
|
|
|
|
dep depend:
|