Skip to content

Commit 17ff181

Browse files
committed
Add exec.c to ecpg library because path.c now uses it.
1 parent 88ca65d commit 17ff181

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

src/interfaces/ecpg/ecpglib/Makefile

+6-3
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
#
55
# Copyright (c) 1994, Regents of the University of California
66
#
7-
# $PostgreSQL: pgsql/src/interfaces/ecpg/ecpglib/Makefile,v 1.22 2004/05/21 21:56:02 tgl Exp $
7+
# $PostgreSQL: pgsql/src/interfaces/ecpg/ecpglib/Makefile,v 1.23 2004/05/25 17:35:51 momjian Exp $
88
#
99
#-------------------------------------------------------------------------
1010

@@ -21,7 +21,7 @@ override CPPFLAGS := -I$(top_srcdir)/src/interfaces/ecpg/include \
2121
override CFLAGS += $(PTHREAD_CFLAGS)
2222

2323
OBJS= execute.o typename.o descriptor.o data.o error.o prepare.o memory.o \
24-
connect.o misc.o path.o
24+
connect.o misc.o path.o exec.o
2525

2626
SHLIB_LINK = -L../pgtypeslib -lpgtypes $(libpq) \
2727
$(filter -lintl -lssl -lcrypto -lkrb5 -lcrypt -lm, $(LIBS)) $(PTHREAD_LIBS)
@@ -39,6 +39,9 @@ include $(top_srcdir)/src/Makefile.shlib
3939
path.c: % : $(top_srcdir)/src/port/%
4040
rm -f $@ && $(LN_S) $< .
4141

42+
exec.c: % : $(top_srcdir)/src/port/%
43+
rm -f $@ && $(LN_S) $< .
44+
4245
install: all installdirs install-lib
4346

4447
installdirs:
@@ -47,7 +50,7 @@ installdirs:
4750
uninstall: uninstall-lib
4851

4952
clean distclean maintainer-clean: clean-lib
50-
rm -f $(OBJS) path.c
53+
rm -f $(OBJS) path.c exec.c
5154

5255
depend dep:
5356
$(CC) -MM $(CFLAGS) *.c >depend

0 commit comments

Comments
 (0)