|
4 | 4 | #
|
5 | 5 | # Copyright (c) 1994, Regents of the University of California
|
6 | 6 | #
|
7 |
| -# $PostgreSQL: pgsql/src/backend/Makefile,v 1.105 2004/10/04 13:43:54 momjian Exp $ |
| 7 | +# $PostgreSQL: pgsql/src/backend/Makefile,v 1.106 2004/10/05 19:30:20 momjian Exp $ |
8 | 8 | #
|
9 | 9 | #-------------------------------------------------------------------------
|
10 | 10 |
|
| 11 | +PGFILEDESC = "PostgreSQL Database Backend" |
11 | 12 | subdir = src/backend
|
12 | 13 | top_builddir = ../..
|
13 | 14 | include$(top_builddir)/src/Makefile.global
|
@@ -60,11 +61,11 @@ endif # cygwin
|
60 | 61 |
|
61 | 62 | ifeq ($(PORTNAME), win32)
|
62 | 63 |
|
63 |
| -postgres:$(OBJS)$(DLLINIT) postgres.def libpostgres.a |
| 64 | +postgres:$(OBJS)$(DLLINIT) postgres.def libpostgres.a$(WIN32RES) |
64 | 65 | $(DLLTOOL) --dllname$@$(X) --output-exp$@.exp --def postgres.def
|
65 |
| -$(CC)$(CFLAGS)$(LDFLAGS) -o$@$(X) -Wl,--base-file,$@.base$@.exp$(OBJS)$(LIBS) |
| 66 | +$(CC)$(CFLAGS)$(LDFLAGS) -o$@$(X) -Wl,--base-file,$@.base$@.exp$(OBJS)$(WIN32RES)$(LIBS) |
66 | 67 | $(DLLTOOL) --dllname$@$(X) --base-file$@.base --output-exp$@.exp --def postgres.def
|
67 |
| -$(CC)$(CFLAGS)$(LDFLAGS) -o$@$(X)$@.exp$(OBJS)$(LIBS) |
| 68 | +$(CC)$(CFLAGS)$(LDFLAGS) -o$@$(X)$@.exp$(OBJS)$(WIN32RES)$(LIBS) |
68 | 69 | rm -f$@.exp$@.base
|
69 | 70 |
|
70 | 71 | postgres.def:$(OBJS)
|
|