From: Bruce Momjian Date: Tue, 2 Mar 2004 15:17:16 +0000 (+0000) Subject: Add missing sprompt.obj psql usage for Borland compiler, per private X-Git-Tag: REL8_0_0BETA1~1094 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=b57cbb4ef0a387692fc94ffbfd61090f210d0a54;p=postgresql Add missing sprompt.obj psql usage for Borland compiler, per private report from krizsan. Backpatch to 7.4.X. --- diff --git a/src/bin/psql/bcc32.mak b/src/bin/psql/bcc32.mak index 7df1f664e8..fa0c9ef1f1 100644 --- a/src/bin/psql/bcc32.mak +++ b/src/bin/psql/bcc32.mak @@ -70,6 +70,7 @@ CLEAN : -@erase "$(INTDIR)\print.obj" -@erase "$(INTDIR)\describe.obj" -@erase "$(INTDIR)\tab-complete.obj" + -@erase "$(INTDIR)\sprompt.obj" -@erase "$(INTDIR)\getopt.obj" -@erase "$(INTDIR)\getopt_long.obj" -@erase "$(INTDIR)\path.obj" @@ -123,9 +124,10 @@ LINK32_OBJS= \ print.obj \ describe.obj \ tab-complete.obj \ + sprompt.obj \ getopt.obj \ - getopt_long.obj \ - path.obj \ + getopt_long.obj \ + path.obj \ mbprint.obj @@ -137,6 +139,7 @@ LINK32_OBJS= \ import32.lib $(LIBRARIES),, ! +sprompt.obj : "$(OUTDIR)" ..\..\port\sprompt.c getopt.obj : "$(OUTDIR)" ..\..\port\getopt.c getopt_long.obj : "$(OUTDIR)" ..\..\port\getopt_long.c path.obj : "$(OUTDIR)" ..\..\port\path.c