Index: src/bin/psql/bcc32.mak =================================================================== RCS file: /cvsroot/pgsql-server/src/bin/psql/bcc32.mak,v retrieving revision 1.9 diff -c -c -r1.9 bcc32.mak *** src/bin/psql/bcc32.mak 10 Sep 2004 09:45:21 -0000 1.9 --- src/bin/psql/bcc32.mak 27 Sep 2004 19:49:24 -0000 *************** *** 37,42 **** --- 37,43 ---- CPP=bcc32.exe PERL=perl.exe + FLEX=flex.exe !IF "$(CFG)" == "Debug" DEBUG=1 *************** *** 53,59 **** .c.obj: $(CPP) -o"$(INTDIR)\$&" $(CPP_PROJ) $< ! ALL : sql_help.h "..\..\port\pg_config_paths.h" "$(OUTDIR)\psql.exe" CLEAN : -@erase "$(INTDIR)\command.obj" --- 54,60 ---- .c.obj: $(CPP) -o"$(INTDIR)\$&" $(CPP_PROJ) $< ! ALL : sql_help.h psqlscan.c "..\..\port\pg_config_paths.h" "$(OUTDIR)\psql.exe" CLEAN : -@erase "$(INTDIR)\command.obj" *************** *** 158,160 **** --- 159,164 ---- "sql_help.h": create_help.pl $(PERL) create_help.pl $(REFDOCDIR) $@ + + psqlscan.c : psqlscan.l + $(FLEX) -Cfe -opsqlscan.c psqlscan.l Index: src/bin/psql/win32.mak =================================================================== RCS file: /cvsroot/pgsql-server/src/bin/psql/win32.mak,v retrieving revision 1.21 diff -c -c -r1.21 win32.mak *** src/bin/psql/win32.mak 10 Sep 2004 09:45:21 -0000 1.21 --- src/bin/psql/win32.mak 27 Sep 2004 19:49:24 -0000 *************** *** 8,13 **** --- 8,14 ---- CPP=cl.exe PERL=perl.exe + FLEX=flex.exe OUTDIR=.\Release INTDIR=.\Release *************** *** 16,22 **** OutDir=.\Release # End Custom Macros ! ALL : sql_help.h "..\..\port\pg_config_paths.h" "$(OUTDIR)\psql.exe" CLEAN : -@erase "$(INTDIR)\command.obj" --- 17,23 ---- OutDir=.\Release # End Custom Macros ! ALL : sql_help.h psqlscan.c "..\..\port\pg_config_paths.h" "$(OUTDIR)\psql.exe" CLEAN : -@erase "$(INTDIR)\command.obj" *************** *** 127,131 **** $(CPP_PROJ) $< << ! sql_help.h: create_help.pl $(PERL) create_help.pl $(REFDOCDIR) $@ --- 128,135 ---- $(CPP_PROJ) $< << ! sql_help.h : create_help.pl $(PERL) create_help.pl $(REFDOCDIR) $@ + + psqlscan.c: psqlscan.l + $(FLEX) -Cfe -opsqlscan.c psqlscan.l