diff options
| author | Neil <nyamatongwe@gmail.com> | 2015-12-16 09:14:32 +1100 |
|---|---|---|
| committer | Neil <nyamatongwe@gmail.com> | 2015-12-16 09:14:32 +1100 |
| commit | be11ce310c1ed11e2ed7bdfc0281429afb71b2ef (patch) | |
| tree | 3330996432bfb9f797e0039984ae768811135a1e /win32/makefile | |
| parent | 018fe1c9237f62fc6a2ddd45da6992abda68ed79 (diff) | |
| download | scintilla-mirror-be11ce310c1ed11e2ed7bdfc0281429afb71b2ef.tar.gz | |
Don't use .DEF file as it is not needed.
Diffstat (limited to 'win32/makefile')
| -rw-r--r-- | win32/makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/win32/makefile b/win32/makefile index 668812553..fab7d0795 100644 --- a/win32/makefile +++ b/win32/makefile @@ -96,7 +96,7 @@ BASEOBJS = \ SOBJS = ScintillaWin.o ScintillaBase.o $(BASEOBJS) -$(COMPONENT): $(SOBJS) Scintilla.def +$(COMPONENT): $(SOBJS) $(CXX) $(LDFLAGS) -o $@ $(STRIPFLAG) $(SOBJS) $(CXXFLAGS) $(LIBS) LOBJS = \ @@ -112,7 +112,7 @@ LOBJS = \ WordList.o \ $(BASEOBJS) \ $(LEXOBJS) -$(LEXCOMPONENT): $(LOBJS) Scintilla.def +$(LEXCOMPONENT): $(LOBJS) $(CXX) $(LDFLAGS) -o $@ $(STRIPFLAG) $(LOBJS) $(CXXFLAGS) $(LIBS) $(LEXLIB): $(LEXOBJS) |
