aboutsummaryrefslogtreecommitdiffhomepage
path: root/win32/makefile
diff options
context:
space:
mode:
authornyamatongwe <unknown>2001-04-15 04:40:49 +0000
committernyamatongwe <unknown>2001-04-15 04:40:49 +0000
commit37e012b6a4ccd818fc8e40e390b7d4a8ee07f8ed (patch)
treebace63cb23ac82aa9504c96acc20cb8842a52462 /win32/makefile
parentd364397a6e8a874a58667a1e0d1593f78e00f860 (diff)
downloadscintilla-mirror-37e012b6a4ccd818fc8e40e390b7d4a8ee07f8ed.tar.gz
Stopped automatic generation of dependencies - requires "make deps" now.
Diffstat (limited to 'win32/makefile')
-rw-r--r--win32/makefile8
1 files changed, 4 insertions, 4 deletions
diff --git a/win32/makefile b/win32/makefile
index 493cc30b6..eda592a7d 100644
--- a/win32/makefile
+++ b/win32/makefile
@@ -34,8 +34,8 @@ ALL: $(COMPONENT) $(LEXCOMPONENT) ScintillaWinS.o WindowAccessor.o
clean:
del /q *.exe *.o *.obj *.dll *.res *.map
-depend: *.cxx ../src/*.cxx
- $(CC) -MM $(CXXFLAGS) *.cxx ../src/*.cxx >depend
+deps:
+ $(CC) -MM $(CXXFLAGS) *.cxx ../src/*.cxx >deps.mak
LEXOBJS = LexAda.o LexAVE.o LexConf.o LexCPP.o LexHTML.o LexLua.o \
LexOthers.o LexPascal.o LexPerl.o LexPython.o LexSQL.o LexVB.o
@@ -55,8 +55,8 @@ LOBJS = ScintillaWinL.o ScintillaBaseL.o Editor.o Document.o \
$(LEXCOMPONENT): $(LOBJS)
$(DLLWRAP) --target i386-mingw32 -o $@ $(LOBJS) $(LDFLAGS) -s --relocatable
-# Automatically generate dependencies for most files with "make depend"
-include depend
+# Automatically generate dependencies for most files with "make deps"
+include deps.mak
# These dependencies are maintained by hand as they do not use the default output name
ScintillaBaseL.o: ScintillaBase.cxx Platform.h Scintilla.h SciLexer.h \