mirror of
https://github.com/postgres/postgres.git
synced 2026-02-11 14:53:31 -05:00
32 lines
706 B
Makefile
32 lines
706 B
Makefile
#-------------------------------------------------------------------------
|
|
#
|
|
# Makefile.inc--
|
|
# Makefile for bin/initdb
|
|
#
|
|
# Copyright (c) 1994, Regents of the University of California
|
|
#
|
|
#
|
|
# IDENTIFICATION
|
|
# $Header: /cvsroot/pgsql/src/bin/initdb/Makefile,v 1.5 1998/04/05 22:00:33 momjian Exp $
|
|
#
|
|
#-------------------------------------------------------------------------
|
|
|
|
SRCDIR= ../..
|
|
include ../../Makefile.global
|
|
|
|
SEDSCRIPT= \
|
|
-e "s^_fUnKy_NAMEDATALEN_sTuFf_^$(NAMEDATALEN)^g" \
|
|
-e "s^_fUnKy_OIDNAMELEN_sTuFf_^$(OIDNAMELEN)^g"
|
|
|
|
all: initdb
|
|
|
|
initdb: initdb.sh
|
|
sed $(SEDSCRIPT) <initdb.sh >initdb
|
|
|
|
install: initdb
|
|
$(INSTALL) $(INSTL_EXE_OPTS) $< $(BINDIR)/$<
|
|
|
|
clean:
|
|
rm -f initdb
|
|
|
|
dep:
|