mirror of
https://github.com/postgres/postgres.git
synced 2026-06-06 07:42:52 -04:00
ffc9812451
repaired psql option scanning bug (special treatment to \g |pipe) fixed ipcclean makefile made configure look for Perl to handle psql help build gracefully
28 lines
560 B
Makefile
28 lines
560 B
Makefile
#-------------------------------------------------------------------------
|
|
#
|
|
# Makefile for bin/ipcclean
|
|
#
|
|
# Copyright (c) 1994, Regents of the University of California
|
|
#
|
|
#
|
|
# IDENTIFICATION
|
|
# $Header: /cvsroot/pgsql/src/bin/ipcclean/Attic/Makefile,v 1.10 2000/04/14 23:43:43 petere Exp $
|
|
#
|
|
#-------------------------------------------------------------------------
|
|
|
|
SRCDIR= ../..
|
|
include ../../Makefile.global
|
|
|
|
all: ipcclean
|
|
|
|
ipcclean: ipcclean.sh
|
|
cp $< $@
|
|
|
|
install: ipcclean
|
|
$(INSTALL) $(INSTL_EXE_OPTS) $^ $(BINDIR)
|
|
|
|
clean:
|
|
rm -f ipcclean
|
|
|
|
dep depend:
|