aboutsummaryrefslogtreecommitdiffhomepage
path: root/win32/makefile_vc
diff options
context:
space:
mode:
authornyamatongwe <devnull@localhost>2000-07-01 09:58:35 +0000
committernyamatongwe <devnull@localhost>2000-07-01 09:58:35 +0000
commit31030423de80f394ff49f8550b5e806900bfcd78 (patch)
tree3833e2aba6e3d088343cc0379bd22161850b297d /win32/makefile_vc
parent5f05e5f116b8f9952c779f751309437082bbb067 (diff)
downloadscintilla-mirror-31030423de80f394ff49f8550b5e806900bfcd78.tar.gz
Horizontal page scroll by 2/3 of page width rather than fixed 200 pixels.
Add opt:nowin98 flag to link to reduce executable size.
Diffstat (limited to 'win32/makefile_vc')
-rw-r--r--win32/makefile_vc4
1 files changed, 2 insertions, 2 deletions
diff --git a/win32/makefile_vc b/win32/makefile_vc
index 374f499de..4f94c6bcd 100644
--- a/win32/makefile_vc
+++ b/win32/makefile_vc
@@ -54,7 +54,7 @@ LEXOBJS = $(DIR_O)\LexCPP.obj \
$(DIR_O)\LexVB.obj
$(COMPONENT): $(SOBJS) $(DIR_O)\ScintRes.res
- $(LD) /DLL /OUT:$@ $(SOBJS) $(DIR_O)\ScintRes.res $(LDFLAGS)
+ $(LD) /DLL /opt:nowin98 /OUT:$@ $(SOBJS) $(DIR_O)\ScintRes.res $(LDFLAGS)
LOBJS = $(DIR_O)\ScintillaWinL.obj $(DIR_O)\ScintillaBaseL.obj \
$(DIR_O)\Editor.obj $(DIR_O)\Document.obj \
@@ -69,7 +69,7 @@ $(DIR_O)\ScintRes.res : ScintRes.rc
$(RC) /fo$@ $(*B).rc
$(LEXCOMPONENT): $(LOBJS) $(DIR_O)\ScintRes.res
- $(LD) /DLL /OUT:$@ $(LOBJS) $(DIR_O)\ScintRes.res $(LDFLAGS)
+ $(LD) /DLL /opt:nowin98 /OUT:$@ $(LOBJS) $(DIR_O)\ScintRes.res $(LDFLAGS)
$(DIR_O)\AutoComplete.obj: ..\src\AutoComplete.cxx ..\include\Platform.h ..\src\AutoComplete.h
$(CC) $(INCLUDEDIRS) $(CXXFLAGS) /Fo$@ /c ..\src\$(@B).cxx