mirror of
https://git.postgresql.org/git/postgresql.git
synced 2024-12-21 08:29:39 +08:00
23 lines
565 B
Makefile
23 lines
565 B
Makefile
|
#-------------------------------------------------------------------------
|
||
|
#
|
||
|
# pgstattuple Makefile
|
||
|
#
|
||
|
# $Id: Makefile,v 1.1 2001/10/01 01:52:38 ishii 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
|