diff -r 310df0cbfc29 -r 5a12d601f45c bc.mak --- a/bc.mak Mon May 04 16:11:20 2009 +0200 +++ b/bc.mak Mon May 04 16:11:22 2009 +0200 @@ -54,9 +54,8 @@ # LFLAGS = -L$(TOP)\libbc;$(BCB)\lib;$(DEBUGLIBPATH) -H:0x400000 -Hc:0x100000 -S:0x40000 -Sc:0x10000 -ap -Tpe -x -Gn -v -Ao:0x10000 LFLAGS = -L$(TOP)\libbc;$(BCB)\lib -S:0x40000 -Sc:0x10000 $(LFLAGS_APPTYPE) -Tpe -x -Gn -v -Ao:0x10000 -# PROJECT_CONSOLE = stx.exe -PROJECT_NOCONSOLE = winstx.exe -PROJECT_CONSOLE = winstx.com +PROJECT_NOCONSOLE = stx.exe +PROJECT_CONSOLE = stx.com ALLOBJFILES = main.obj RESFILES = smalltalkWinRC.res ALLOBJ = $(CRT_STARTUP) $(ALLOBJFILES) $(OBJS) @@ -96,13 +95,13 @@ ALL:: prereq exe setup # old -# exe: newBuildDate stx $(REQUIRED_SUPPORT_DIRS) winstx +# exe: newBuildDate stx.com $(REQUIRED_SUPPORT_DIRS) # new: allow for both to be made -exe: newBuildDate winstx $(REQUIRED_SUPPORT_DIRS) winstx +exe: newBuildDate stx.exe stx.com $(REQUIRED_SUPPORT_DIRS) # the executable only # with console -stx: +stx.com: -del main.obj $(MAKE) -N -f bc.mak \ PROJECT=$(PROJECT_CONSOLE) \ @@ -111,11 +110,11 @@ CRT_STARTUP="$(CRT_STARTUP_CONSOLE)" theExe # without console -winstx: +stx.exe: -del main.obj $(MAKE) -N -f bc.mak \ PROJECT=$(PROJECT_NOCONSOLE) \ - CFLAGS_APPTYPE="$(CFLAGS_NOCONSOLE) -DWIN_LOGFILE="\\"\"winstx.log\\"\""" \ + CFLAGS_APPTYPE="$(CFLAGS_NOCONSOLE) -DWIN_LOGFILE="\\"\"smalltalk.log\\"\""" \ LFLAGS_APPTYPE="$(LFLAGS_NOCONSOLE)" \ CRT_STARTUP="$(CRT_STARTUP_NOCONSOLE)" theExe