Cédric Villemain
c552cfcdce
but will make our tesitng much better and easier (we need sahred_preload_libraries, restart....)
19 lignes
397 o
Makefile
19 lignes
397 o
Makefile
EXTENSION = pacs
|
|
DATA = pacs--0.0.1.sql
|
|
REGRESS = pacs
|
|
MODULES = pacs
|
|
|
|
PG_CONFIG = pg_config
|
|
PGXS := $(shell $(PG_CONFIG) --pgxs)
|
|
include $(PGXS)
|
|
|
|
%.man.1: README.%.md
|
|
pandoc -s $< -o $@
|
|
@echo man -l $@
|
|
|
|
pgbench: NPROCS=$(shell nproc)
|
|
pgbench: NJOBS=$(shell nproc)
|
|
pgbench: sql/pgbench.sql
|
|
pgbench -f $< -T 10 --progress 1 --no-vacuum \
|
|
-c $$(( $(NPROCS) * 16 )) \
|
|
-j $$(( $(NJOBS) * 16 ))
|