diff options
author | nyamatongwe <unknown> | 2000-05-07 13:44:20 +0000 |
---|---|---|
committer | nyamatongwe <unknown> | 2000-05-07 13:44:20 +0000 |
commit | f14ec01dc85afd682161986dee94e2e30063234c (patch) | |
tree | 80a26c642574712cf75f4db18686cb5dfab6e329 | |
parent | 935196715d87afe9facd1052899d95e3c2289936 (diff) | |
download | scintilla-mirror-f14ec01dc85afd682161986dee94e2e30063234c.tar.gz |
Always uses $@ for output.
-rw-r--r-- | win32/makefile | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/win32/makefile b/win32/makefile index 00c015abc..b7002f7b6 100644 --- a/win32/makefile +++ b/win32/makefile @@ -35,14 +35,14 @@ SOBJS = ScintillaWin.o ScintillaBase.o Editor.o Document.o \ ScintRes.o PlatWin.o KeyMap.o Indicator.o LineMarker.o Style.o \ ViewStyle.o AutoComplete.o UniConversion.o $(COMPONENT): $(SOBJS) - $(DLLWRAP) --target i386-mingw32 -o $(COMPONENT) $(SOBJS) $(LDFLAGS) -s --relocatable + $(DLLWRAP) --target i386-mingw32 -o $@ $(SOBJS) $(LDFLAGS) -s --relocatable LOBJS = ScintillaWinL.o ScintillaBaseL.o Editor.o Document.o \ ContractionState.o CellBuffer.o CallTip.o \ ScintRes.o PlatWin.o KeyMap.o Indicator.o LineMarker.o Style.o ViewStyle.o \ AutoComplete.o UniConversion.o KeyWords.o DocumentAccessor.o PropSet.o $(LEXOBJS) $(LEXCOMPONENT): $(LOBJS) - $(DLLWRAP) --target i386-mingw32 -o $(LEXCOMPONENT) $(LOBJS) $(LDFLAGS) -s --relocatable + $(DLLWRAP) --target i386-mingw32 -o $@ $(LOBJS) $(LDFLAGS) -s --relocatable AutoComplete.o: AutoComplete.cxx Platform.h AutoComplete.h CallTip.o: CallTip.cxx Platform.h CallTip.h @@ -102,14 +102,14 @@ ViewStyle.o: ViewStyle.cxx Platform.h Scintilla.h Indicator.h \ WindowAccessor.o: DocumentAccessor.cxx Platform.h PropSet.h Accessor.h WindowAccessor.h Scintilla.h ScintillaBaseL.o: - $(CC) $(CXXFLAGS) -D SCI_LEXER -c $< -o ScintillaBaseL.o + $(CC) $(CXXFLAGS) -D SCI_LEXER -c $< -o $@ ScintillaWinS.o: - $(CC) $(CXXFLAGS) -D STATIC_BUILD -c $< -o ScintillaWinS.o + $(CC) $(CXXFLAGS) -D STATIC_BUILD -c $< -o $@ ScintillaWinL.o: - $(CC) $(CXXFLAGS) -D SCI_LEXER -c $< -o ScintillaWinL.o + $(CC) $(CXXFLAGS) -D SCI_LEXER -c $< -o $@ ScintRes.o: ScintRes.rc PlatformRes.h - windres ScintRes.rc ScintRes.o + windres ScintRes.rc $@ |