diff options
author | Magnus Hagander | 2008-10-27 09:10:04 +0000 |
---|---|---|
committer | Magnus Hagander | 2008-10-27 09:10:04 +0000 |
commit | 92db1804fa1561b7591d26b7968372ed911f6fbd (patch) | |
tree | a6968afd7fe1425909236e17c96541599abba3cf | |
parent | b147418a88ec5f1706dcbb8a9656661aee950359 (diff) |
Update standalong libpq makefiles for msvc and bcc to work with the new
libpq events code.
Hiroshi Saito
-rw-r--r-- | src/interfaces/libpq/bcc32.mak | 2 | ||||
-rw-r--r-- | src/interfaces/libpq/win32.mak | 2 |
2 files changed, 4 insertions, 0 deletions
diff --git a/src/interfaces/libpq/bcc32.mak b/src/interfaces/libpq/bcc32.mak index 262f5a7300..f45b245138 100644 --- a/src/interfaces/libpq/bcc32.mak +++ b/src/interfaces/libpq/bcc32.mak @@ -91,6 +91,7 @@ CLEAN : -@erase "$(INTDIR)\fe-misc.obj" -@erase "$(INTDIR)\fe-print.obj" -@erase "$(INTDIR)\fe-secure.obj" + -@erase "$(INTDIR)\libpq-events.obj" -@erase "$(INTDIR)\pqexpbuffer.obj" -@erase "$(INTDIR)\pqsignal.obj" -@erase "$(INTDIR)\win32.obj" @@ -133,6 +134,7 @@ LIB32_OBJS= \ "$(INTDIR)\fe-misc.obj" \ "$(INTDIR)\fe-print.obj" \ "$(INTDIR)\fe-secure.obj" \ + "$(INTDIR)\libpq-events.obj" \ "$(INTDIR)\pqexpbuffer.obj" \ "$(INTDIR)\pqsignal.obj" \ "$(INTDIR)\wchar.obj" \ diff --git a/src/interfaces/libpq/win32.mak b/src/interfaces/libpq/win32.mak index ebf327b730..c0d2e62ada 100644 --- a/src/interfaces/libpq/win32.mak +++ b/src/interfaces/libpq/win32.mak @@ -98,6 +98,7 @@ CLEAN : -@erase "$(INTDIR)\fe-misc.obj" -@erase "$(INTDIR)\fe-print.obj" -@erase "$(INTDIR)\fe-secure.obj" + -@erase "$(INTDIR)\libpq-events.obj" -@erase "$(INTDIR)\pqexpbuffer.obj" -@erase "$(INTDIR)\pqsignal.obj" -@erase "$(INTDIR)\win32.obj" @@ -142,6 +143,7 @@ LIB32_OBJS= \ "$(INTDIR)\fe-misc.obj" \ "$(INTDIR)\fe-print.obj" \ "$(INTDIR)\fe-secure.obj" \ + "$(INTDIR)\libpq-events.obj" \ "$(INTDIR)\pqexpbuffer.obj" \ "$(INTDIR)\pqsignal.obj" \ "$(INTDIR)\wchar.obj" \ |