We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Makefile
1 parent 2a102e0 commit a8ba818Copy full SHA for a8ba818
Makefile
@@ -1,5 +1,3 @@
1
-PG_CONFIG ?= pg_config
2
-
3
EXTENSION = postgresql_extension_template
4
MODULE_big = postgresql_extension_template
5
OBJS = postgresql_extension_template.o
@@ -12,14 +10,6 @@ REGRESS = postgresql_extension_template
12
10
# And uncomment the following line:
13
11
#DOCS = extension_name.md
14
15
-USE_PGXS = 1
16
-ifdef USE_PGXS
17
- PGXS := $(shell $(PG_CONFIG) --pgxs)
18
- include $(PGXS)
19
-else
20
- subdir = contrib/pg_show_plans
21
- top_builddir = ../..
22
- include $(top_builddir)/src/Makefile.global
23
- include $(top_srcdir)/contrib/contrib-global.mk
24
-endif
25
+PG_CONFIG = pg_config
+PGXS := $(shell $(PG_CONFIG) --pgxs)
+include $(PGXS)
0 commit comments