mirror of https://github.com/postgres/postgres
22 lines
331 B
Makefile
22 lines
331 B
Makefile
#-------------------------------------------------------------------------
|
|
#
|
|
# Makefile --
|
|
#
|
|
# Makefile for contrib tools.
|
|
#
|
|
#-------------------------------------------------------------------------
|
|
|
|
PGDIR = ../..
|
|
SRCDIR = $(PGDIR)/src
|
|
|
|
include $(SRCDIR)/Makefile.global
|
|
|
|
all:
|
|
|
|
install:
|
|
|
|
clean:
|
|
rm -f *~
|
|
|
|
distclean: clean
|