|
4 | 4 | # |
5 | 5 | # Copyright (c) 1994, Regents of the University of California |
6 | 6 | # |
7 | | -# $Header: /cvsroot/pgsql/src/backend/Makefile,v 1.65 2000/09/17 13:02:30 petere Exp $ |
| 7 | +# $Header: /cvsroot/pgsql/src/backend/Makefile,v 1.66 2000/10/07 18:43:22 petere Exp $ |
8 | 8 | # |
9 | 9 | #------------------------------------------------------------------------- |
10 | 10 |
|
@@ -37,7 +37,7 @@ all: postgres $(POSTGRES_IMP) |
37 | 37 | ifneq ($(PORTNAME), win) |
38 | 38 |
|
39 | 39 | postgres:$(OBJS) |
40 | | -$(CC)$(CFLAGS) -o$@$^$(LDFLAGS) |
| 40 | +$(CC)$(CFLAGS) -o$@$^$(LDFLAGS)$(export_dynamic) |
41 | 41 |
|
42 | 42 | else # win |
43 | 43 |
|
@@ -192,7 +192,7 @@ maintainer-clean: distclean |
192 | 192 | # are up to date. It saves the time of doing all the submakes. |
193 | 193 | .PHONY: quick |
194 | 194 | quick:$(OBJS) |
195 | | -$(CC) -o postgres$(OBJS)$(LDFLAGS) |
| 195 | +$(CC) -o postgres$(OBJS)$(LDFLAGS)$(export_dynamic) |
196 | 196 |
|
197 | 197 | dependdep:$(top_srcdir)/src/include/parser/parse.h$(top_builddir)/src/include/utils/fmgroids.h |
198 | 198 | foriin$(DIRS);do$(MAKE) -C$$i$@;done |