mirror of
https://github.com/postgres/postgres.git
synced 2026-03-08 00:01:15 -05:00
32 lines
748 B
Makefile
32 lines
748 B
Makefile
#-------------------------------------------------------------------------
|
|
#
|
|
# Makefile.inc--
|
|
# Makefile for bin/destroyuser
|
|
#
|
|
# Copyright (c) 1994, Regents of the University of California
|
|
#
|
|
#
|
|
# IDENTIFICATION
|
|
# $Header: /cvsroot/pgsql/src/bin/destroyuser/Attic/Makefile,v 1.5 1998/04/05 22:00:20 momjian Exp $
|
|
#
|
|
#-------------------------------------------------------------------------
|
|
|
|
SRCDIR= ../..
|
|
include ../../Makefile.global
|
|
|
|
SEDSCRIPT= \
|
|
-e "s^_fUnKy_DASH_N_sTuFf_^$(DASH_N)^g" \
|
|
-e "s^_fUnKy_BACKSLASH_C_sTuFf_^$(BACKSLASH_C)^g"
|
|
|
|
all: destroyuser
|
|
|
|
destroyuser: destroyuser.sh
|
|
sed $(SEDSCRIPT) <destroyuser.sh >destroyuser
|
|
|
|
install: destroyuser
|
|
$(INSTALL) $(INSTL_EXE_OPTS) $< $(BINDIR)/$<
|
|
|
|
clean:
|
|
rm -f destroyuser
|
|
|
|
dep:
|