diff options
| author | nyamatongwe <devnull@localhost> | 2000-05-08 14:19:34 +0000 | 
|---|---|---|
| committer | nyamatongwe <devnull@localhost> | 2000-05-08 14:19:34 +0000 | 
| commit | 1853d5de09862ab4848c9fa41efdd1e8770c1b33 (patch) | |
| tree | a3bbb785c6b2979fec2a820ad4d38c9f28bb680d | |
| parent | 3d803c2d78469d461c75b3767fca2c6097d6a27b (diff) | |
| download | scintilla-mirror-1853d5de09862ab4848c9fa41efdd1e8770c1b33.tar.gz | |
Minor $@ tweaks.
| -rw-r--r-- | win32/makefile_vc | 4 | 
1 files changed, 2 insertions, 2 deletions
| diff --git a/win32/makefile_vc b/win32/makefile_vc index 91370695d..e4929b003 100644 --- a/win32/makefile_vc +++ b/win32/makefile_vc @@ -53,7 +53,7 @@ LEXOBJS	= $(DIR_O)\LexCPP.obj \  	$(DIR_O)\LexVB.obj  $(COMPONENT): $(SOBJS) $(DIR_O)\ScintRes.res -	$(LD) /DLL /OUT:$(COMPONENT) $(SOBJS) $(DIR_O)\ScintRes.res $(LDFLAGS) +	$(LD) /DLL /OUT:$@ $(SOBJS) $(DIR_O)\ScintRes.res $(LDFLAGS)  LOBJS	= $(DIR_O)\ScintillaWinL.obj $(DIR_O)\ScintillaBaseL.obj \  	$(DIR_O)\Editor.obj $(DIR_O)\Document.obj \ @@ -68,7 +68,7 @@ $(DIR_O)\ScintRes.res : ScintRes.rc  	$(RC) /fo$@ $(*B).rc  $(LEXCOMPONENT): $(LOBJS) $(DIR_O)\ScintRes.res -	$(LD) /DLL /OUT:$(LEXCOMPONENT) $(LOBJS) $(DIR_O)\ScintRes.res $(LDFLAGS) +	$(LD) /DLL /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 | 
