mirror of
https://git.postgresql.org/git/postgresql.git
synced 2026-02-10 01:17:38 +08:00
33 lines
823 B
Makefile
33 lines
823 B
Makefile
#-------------------------------------------------------------------------
|
|
#
|
|
# Makefile for src/bin/ipcclean
|
|
#
|
|
# Portions Copyright (c) 1996-2002, PostgreSQL Global Development Group
|
|
# Portions Copyright (c) 1994, Regents of the University of California
|
|
#
|
|
# $Header: /cvsroot/pgsql/src/bin/ipcclean/Attic/Makefile,v 1.16 2002/06/20 20:29:41 momjian Exp $
|
|
#
|
|
#-------------------------------------------------------------------------
|
|
|
|
subdir = src/bin/ipcclean
|
|
top_builddir = ../../..
|
|
include $(top_builddir)/src/Makefile.global
|
|
|
|
all: ipcclean
|
|
|
|
ipcclean: ipcclean.sh
|
|
cp $< $@
|
|
chmod a+x $@
|
|
|
|
install: all installdirs
|
|
$(INSTALL_SCRIPT) ipcclean $(DESTDIR)$(bindir)/ipcclean
|
|
|
|
installdirs:
|
|
$(mkinstalldirs) $(DESTDIR)$(bindir)
|
|
|
|
uninstall:
|
|
rm -f $(DESTDIR)$(bindir)/ipcclean
|
|
|
|
clean distclean maintainer-clean:
|
|
rm -f ipcclean
|