mirror of
https://github.com/postgres/postgres.git
synced 2025-07-30 11:03:19 +03:00
22 lines
403 B
Makefile
22 lines
403 B
Makefile
#-------------------------------------------------------------------------
|
|
#
|
|
# 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
|