OSDN Git Service

Re-introduce $DISTDIR.
[pg-rex/syncrep.git] / src / bin / ipcclean / Makefile
1 #-------------------------------------------------------------------------
2 #
3 # Makefile.inc--
4 #    Makefile for bin/initdb
5 #
6 # Copyright (c) 1994, Regents of the University of California
7 #
8 #
9 # IDENTIFICATION
10 #    $Header: /cvsroot/pgsql/src/bin/ipcclean/Attic/Makefile,v 1.6 1998/04/06 01:15:09 momjian Exp $
11 #
12 #-------------------------------------------------------------------------
13
14 SRCDIR= ../..
15 include ../../Makefile.global
16
17 SEDSCRIPT= \
18     -e "s^_fUnKy_IPCCLEANPATH_sTuFf_^$(IPCSDIR)^g" 
19
20 all: ipcclean
21
22 ipcclean:
23         sed $(SEDSCRIPT) <ipcclean.sh >ipcclean
24
25 install: ipcclean
26         $(INSTALL) $(INSTL_EXE_OPTS) $< $(DESTDIR)$(BINDIR)/$<
27
28 clean:
29         rm -f ipcclean
30
31 dep depend: