|
4 | 4 | # |
5 | 5 | # Copyright (c) 1994, Regents of the University of California |
6 | 6 | # |
7 | | -# $Header: /cvsroot/pgsql/src/backend/Makefile,v 1.68 2000/11/30 20:36:10 petere Exp $ |
| 7 | +# $Header: /cvsroot/pgsql/src/backend/Makefile,v 1.69 2001/04/02 03:21:23 tgl Exp $ |
8 | 8 | # |
9 | 9 | #------------------------------------------------------------------------- |
10 | 10 |
|
@@ -63,14 +63,15 @@ $(DIRS:%=%-recursive): $(top_builddir)/src/include/parser/parse.h $(top_builddir |
63 | 63 |
|
64 | 64 |
|
65 | 65 | ifeq ($(MAKE_DLL), true) |
| 66 | + |
66 | 67 | DLLOBJS :=$(OBJS) |
67 | | -DLLLIBS := -L/usr/local/lib -lcygipc -lcrypt -lcygwin -lkernel32 |
68 | 68 |
|
69 | 69 | postgres.def:$(DLLOBJS) |
70 | 70 | $(DLLTOOL) --export-all --output-def$@$(DLLOBJS) |
71 | 71 |
|
72 | 72 | libpostgres.a:$(DLLOBJS)$(top_builddir)/src/utils/dllinit.o postgres.def |
73 | 73 | $(DLLTOOL) --dllname postgres.exe --def postgres.def --output-lib$@ |
| 74 | + |
74 | 75 | endif# MAKE_DLL |
75 | 76 |
|
76 | 77 |
|
|