Skip to content

Commit

Permalink
Add pgstattuple extension
Browse files Browse the repository at this point in the history
  • Loading branch information
ctring committed Oct 26, 2023
1 parent 13d431b commit fa555f7
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -112,13 +112,16 @@ postgres-%: postgres-configure-% \
$(MAKE) -C $(POSTGRES_INSTALL_DIR)/build/$*/contrib/amcheck install
+@echo "Compiling pg_stat_statements $*"
$(MAKE) -C $(POSTGRES_INSTALL_DIR)/build/$*/contrib/pg_stat_statements install
+@echo "Compiling pgstattuple $*"
$(MAKE) -C $(POSTGRES_INSTALL_DIR)/build/$*/contrib/pgstattuple install

.PHONY: postgres-clean-%
postgres-clean-%:
$(MAKE) -C $(POSTGRES_INSTALL_DIR)/build/$* MAKELEVEL=0 clean
$(MAKE) -C $(POSTGRES_INSTALL_DIR)/build/$*/contrib/pg_buffercache clean
$(MAKE) -C $(POSTGRES_INSTALL_DIR)/build/$*/contrib/pageinspect clean
$(MAKE) -C $(POSTGRES_INSTALL_DIR)/build/$*/contrib/pg_stat_statements clean
$(MAKE) -C $(POSTGRES_INSTALL_DIR)/build/$*/contrib/pgstattuple clean
$(MAKE) -C $(POSTGRES_INSTALL_DIR)/build/$*/src/interfaces/libpq clean

.PHONY: neon-pg-ext-%
Expand Down

0 comments on commit fa555f7

Please sign in to comment.