mirror of
https://github.com/postgres/postgres.git
synced 2026-01-05 23:38:41 +03:00
29 lines
613 B
Makefile
29 lines
613 B
Makefile
#-------------------------------------------------------------------------
|
|
#
|
|
# Makefile.inc--
|
|
# Makefile for bin/cleardbdir
|
|
#
|
|
# Copyright (c) 1994, Regents of the University of California
|
|
#
|
|
#
|
|
# IDENTIFICATION
|
|
# $Header: /cvsroot/pgsql/src/bin/cleardbdir/Attic/Makefile,v 1.7 1998/04/06 01:14:10 momjian Exp $
|
|
#
|
|
#-------------------------------------------------------------------------
|
|
|
|
SRCDIR= ../..
|
|
include ../../Makefile.global
|
|
|
|
all: cleardbdir
|
|
|
|
cleardbdir:
|
|
cp cleardbdir.sh cleardbdir
|
|
|
|
install: cleardbdir
|
|
$(INSTALL) $(INSTL_EXE_OPTS) $< $(DESTDIR)$(BINDIR)/$<
|
|
|
|
clean:
|
|
rm -f cleardbdir
|
|
|
|
dep depend:
|