加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
Makefile 515 Bytes
一键复制 编辑 原始数据 按行查看 历史
Oliver Rice 提交于 2021-07-08 07:32 . hierarchy for stdlib modules
EXTENSION = supautils
DATA = $(wildcard sql/*--*.sql)
MODULE_big = supautils
OBJS = src/supautils.o
TESTS = $(wildcard test/sql/*.sql test/sql/stdlib/array/*.sql test/sql/stdlib/inspect/*.sql)
REGRESS = $(patsubst test/sql/%.sql,%,$(TESTS))
REGRESS_OPTS = --use-existing --inputdir=test
# Tell pg_config to pass us the PostgreSQL extensions makefile(PGXS)
# and include it into our own Makefile through the standard "include" directive.
PG_CONFIG = pg_config
PGXS := $(shell $(PG_CONFIG) --pgxs)
include $(PGXS)
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化