postgresql/src/bin/initdb/Makefile

33 lines
706 B
Makefile
Raw Normal View History

#-------------------------------------------------------------------------
#
# Makefile.inc--
# Makefile for bin/initdb
#
# Copyright (c) 1994, Regents of the University of California
#
#
# IDENTIFICATION
1998-04-05 18:02:56 -04:00
# $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
1998-04-05 18:02:56 -04:00
$(INSTALL) $(INSTL_EXE_OPTS) $< $(BINDIR)/$<
clean:
rm -f initdb
1996-12-09 22:40:23 -05:00
dep: