diff options
| -rw-r--r-- | win32/makefile | 6 | 
1 files changed, 3 insertions, 3 deletions
| diff --git a/win32/makefile b/win32/makefile index 406c9a4c7..5220c7277 100644 --- a/win32/makefile +++ b/win32/makefile @@ -39,7 +39,7 @@ clean:  deps:  	$(CC) -MM $(CXXFLAGS) *.cxx ../src/*.cxx ../lexlib/*.cxx ../lexers/*.cxx >deps.mak -LEXOBJS:=$(addsuffix .o,$(basename $(notdir $(wildcard ../src/Lex*.cxx)))) +LEXOBJS:=$(addsuffix .o,$(basename $(notdir $(wildcard ../lexers/Lex*.cxx))))  BASEOBJS = \ @@ -71,7 +71,7 @@ BASEOBJS = \  SOBJS = ScintillaWin.o ScintillaBase.o $(BASEOBJS)  $(COMPONENT): $(SOBJS) Scintilla.def -	$(DLLWRAP) --add-stdcall-alias --target i386-mingw32 -o $@ $(SOBJS) $(LDFLAGS) $(STRIPFLAG) --relocatable +	$(DLLWRAP) --add-stdcall-alias --target=i386-mingw32 -o $@ $(SOBJS) $(LDFLAGS) $(STRIPFLAG) --relocatable  LOBJS = \  	Accessor.o \ @@ -87,7 +87,7 @@ LOBJS = \  	$(BASEOBJS) \  	$(LEXOBJS)  $(LEXCOMPONENT): $(LOBJS) Scintilla.def -	$(DLLWRAP) --add-stdcall-alias --target i386-mingw32 -o $@ $(LOBJS) $(LDFLAGS) $(STRIPFLAG) --relocatable +	$(DLLWRAP) --add-stdcall-alias --target=i386-mingw32 -o $@ $(LOBJS) $(LDFLAGS) $(STRIPFLAG) --relocatable  $(LEXLIB): $(LEXOBJS)  	$(AR) rc $@ $^ | 
