mirror of
https://github.com/postgres/postgres.git
synced 2026-02-10 22:33:50 -05:00
32 lines
818 B
Makefile
32 lines
818 B
Makefile
#-------------------------------------------------------------------------
|
|
#
|
|
# Makefile for src/bin/ipcclean
|
|
#
|
|
# Portions Copyright (c) 1996-2007, PostgreSQL Global Development Group
|
|
# Portions Copyright (c) 1994, Regents of the University of California
|
|
#
|
|
# $PostgreSQL: pgsql/src/bin/ipcclean/Makefile,v 1.21 2007/01/05 22:19:47 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
|