We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a74613f commit b09114bCopy full SHA for b09114b
contrib/spi/Makefile
@@ -1,9 +1,13 @@
1
2
-SRCDIR= /home/postgres/current/pgsql/src
+SRCDIR= ../../src
3
4
include $(SRCDIR)/Makefile.global
5
6
-CFLAGS+= $(CFLAGS_SL) -I$(SRCDIR)/include -DREFINT_QUIET
+CFLAGS+= $(CFLAGS_SL) -I$(SRCDIR)/include
7
+
8
+ifdef REFINT_VERBOSE
9
+CFLAGS+= -DREFINT_VERBOSE
10
+endif
11
12
TARGETS= refint$(DLSUFFIX) refint.sql
13
@@ -18,4 +22,4 @@ all:: $(TARGETS)
18
22
-e "s:_DLSUFFIX_:$(DLSUFFIX):g" < $< > $@
19
23
20
24
clean:
21
- rm -f $(TARGETS)
25
+ rm -f $(TARGETS) refint.o
0 commit comments