|
5 | 5 | # Portions Copyright (c) 1996-2009, PostgreSQL Global Development Group
|
6 | 6 | # Portions Copyright (c) 1994, Regents of the University of California
|
7 | 7 | #
|
8 |
| -# $PostgreSQL: pgsql/src/interfaces/ecpg/ecpglib/Makefile,v 1.62 2009/01/14 14:54:35 petere Exp $ |
| 8 | +# $PostgreSQL: pgsql/src/interfaces/ecpg/ecpglib/Makefile,v 1.63 2009/02/07 17:17:34 momjian Exp $ |
9 | 9 | #
|
10 | 10 | #-------------------------------------------------------------------------
|
11 | 11 |
|
@@ -42,7 +42,13 @@ ifeq ($(PORTNAME), win32)
|
42 | 42 | SHLIB_LINK += -lshfolder
|
43 | 43 | endif
|
44 | 44 |
|
45 |
| -all: all-lib |
| 45 | +all: libpq pgtypeslib all-lib |
| 46 | + |
| 47 | +libpq: |
| 48 | +$(MAKE) -C$(top_builddir)/src/interfaces/libpq all |
| 49 | + |
| 50 | +pgtypeslib: |
| 51 | +$(MAKE) -C$(top_builddir)/src/interfaces/ecpg/pgtypeslib all |
46 | 52 |
|
47 | 53 | # Shared library stuff
|
48 | 54 | include$(top_srcdir)/src/Makefile.shlib
|
|