diff options
author | nyamatongwe <unknown> | 2010-07-13 23:33:30 +1000 |
---|---|---|
committer | nyamatongwe <unknown> | 2010-07-13 23:33:30 +1000 |
commit | 5a2237ee4495a390f0cc5f49202110f2a2ecc9b3 (patch) | |
tree | 5eb273bbb01bb3a2763fb7ad490a02892001dd01 | |
parent | 318b49289fb3d40f367f98ddb74e8f14b47ead80 (diff) | |
download | scintilla-mirror-5a2237ee4495a390f0cc5f49202110f2a2ecc9b3.tar.gz |
Lexer source code now in lexers directory.
Options slightly different when using gcc rather than dllwrap.
-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 $@ $^ |