mirror of
https://git.postgresql.org/git/postgresql.git
synced 2024-12-21 08:29:39 +08:00
23 lines
599 B
Makefile
23 lines
599 B
Makefile
#-------------------------------------------------------------------------
|
|
#
|
|
# pgstattuple Makefile
|
|
#
|
|
# $PostgreSQL: pgsql/contrib/pgstattuple/Makefile,v 1.2 2003/11/29 22:39:29 pgsql Exp $
|
|
#
|
|
#-------------------------------------------------------------------------
|
|
|
|
subdir = contrib/pgstattuple
|
|
top_builddir = ../..
|
|
include $(top_builddir)/src/Makefile.global
|
|
|
|
MODULE_big := pgstattuple
|
|
SRCS += pgstattuple.c
|
|
OBJS := $(SRCS:.c=.o)
|
|
DOCS := README.pgstattuple README.pgstattuple.euc_jp
|
|
DATA_built := pgstattuple.sql
|
|
|
|
PG_CPPFLAGS :=
|
|
SHLIB_LINK :=
|
|
|
|
include $(top_srcdir)/contrib/contrib-global.mk
|