head	1.3;
access;
symbols
	REL7_0_PATCHES:1.1.0.2;
locks; strict;
comment	@# @;


1.3
date	2000.11.02.22.04.51;	author momjian;	state dead;
branches;
next	1.2;

1.2
date	2000.11.02.18.20.12;	author wieck;	state Exp;
branches;
next	1.1;

1.1
date	2000.11.02.18.09.49;	author wieck;	state dead;
branches
	1.1.2.1;
next	;

1.1.2.1
date	2000.11.02.18.09.49;	author wieck;	state Exp;
branches;
next	;


desc
@@


1.3
log
@Remove pg_dumpaccounts from 7.1 tree.
@
text
@#-------------------------------------------------------------------------
#
# Makefile for contrib/pg_dumpaccounts
#
# Copyright (c) 1994, Regents of the University of California
#
# $Header: /home/projects/pgsql/cvsroot/pgsql/contrib/pg_dumpaccounts/Makefile,v 1.2 2000/11/02 18:20:12 wieck Exp $
#
#-------------------------------------------------------------------------

subdir = contrib/pg_dumpaccounts
top_builddir = ../..
include $(top_builddir)/src/Makefile.global

all: pg_dumpaccounts

pg_dumpaccounts: pg_dumpaccounts.sh
	sed -e 's,@@VERSION@@,$(VERSION),g' \
	    -e 's,@@MULTIBYTE@@,$(MULTIBYTE),g' \
	    -e 's,@@bindir@@,$(bindir),g' \
	  $< >$@@
	chmod a+x $@@

install: all installdirs
	$(INSTALL_SCRIPT) pg_dumpaccounts $(DESTDIR)$(bindir)/pg_dumpaccounts

installdirs:
	$(mkinstalldirs) $(DESTDIR)$(bindir)

uninstall:
	rm -f $(addprefix $(DESTDIR)$(bindir)/, pg_dumpaccounts)

depend dep:

clean distclean maintainer-clean:
	rm -f pg_dumpaccounts

@


1.2
log
@Added utility script pg_dumpaccounts to contrib.

Derived from pg_dumpall it just dumps users and groups.

Jan
@
text
@d7 1
a7 1
# $Header: /home/projects/pgsql/cvsroot/pgsql/src/bin/pg_dump/Makefile,v 1.26 2000/10/20 21:03:56 petere Exp $
@


1.1
log
@file Makefile was initially added on branch REL7_0_PATCHES.
@
text
@d1 37
@


1.1.2.1
log
@Added pg_dumpaccounts utility script in contrib.

Derived from pg_dumpall it just dumps the pg_shadow and
pg_group contents.

Jan
@
text
@a0 21
#-------------------------------------------------------------------------
#
# Makefile --
#
#    Makefile for contrib pg_dumpaccounts.
#
#-------------------------------------------------------------------------

PGDIR = ../..
SRCDIR = $(PGDIR)/src

include $(SRCDIR)/Makefile.global

all:		

install:	
		$(INSTALL) $(INSTL_EXE_OPTS) pg_dumpaccounts $(BINDIR)/pg_dumpaccounts

clean:

distclean:	clean
@

