mirror of
https://github.com/postgres/postgres.git
synced 2026-04-27 17:16:43 -04:00
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
|