We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7cf952e commit 40f158dCopy full SHA for 40f158d
src/bin/pg_encoding/Makefile
@@ -4,7 +4,7 @@
4
#
5
# Copyright (c) 1998, PostgreSQL Global Development Group
6
7
-# $Header: /cvsroot/pgsql/src/bin/pg_encoding/Attic/Makefile,v 1.13 2001/02/20 19:20:28 petere Exp $
+# $Header: /cvsroot/pgsql/src/bin/pg_encoding/Attic/Makefile,v 1.14 2001/03/23 05:46:05 ishii Exp $
8
9
#-------------------------------------------------------------------------
10
@@ -16,6 +16,13 @@ OBJS= pg_encoding.o
16
17
all: submake pg_encoding
18
19
+ifdef STRTOUL
20
+OBJS+=$(top_builddir)/src/backend/port/strtoul.o
21
+
22
+$(top_builddir)/src/backend/port/strtoul.o:
23
+ $(MAKE) -C $(top_builddir)/src/backend/port strtoul.o
24
+endif
25
26
pg_encoding: $(OBJS)
27
$(CC) $(CFLAGS) $^ $(libpq) $(LDFLAGS) $(LIBS) -o $@
28
0 commit comments