diff options
| author | nyamatongwe <devnull@localhost> | 2000-03-08 01:42:56 +0000 |
|---|---|---|
| committer | nyamatongwe <devnull@localhost> | 2000-03-08 01:42:56 +0000 |
| commit | d851d8fe886b2cd8459b63b52043117c9679874e (patch) | |
| tree | af1647ee194724940ba26322fb1b7219daa47ee6 /win32 | |
| parent | f2d9de3cb51a8f9c9da54785c1e92b8e127a54b4 (diff) | |
| download | scintilla-mirror-d851d8fe886b2cd8459b63b52043117c9679874e.tar.gz | |
no message
Diffstat (limited to 'win32')
| -rw-r--r-- | win32/makefile | 98 | ||||
| -rw-r--r-- | win32/makefile_bor | 120 | ||||
| -rw-r--r-- | win32/makefile_vc | 125 |
3 files changed, 343 insertions, 0 deletions
diff --git a/win32/makefile b/win32/makefile new file mode 100644 index 000000000..0dfded5a9 --- /dev/null +++ b/win32/makefile @@ -0,0 +1,98 @@ +# Make file for Scintilla on Windows +# Copyright 1998-2000 by Neil Hodgson <neilh@scintilla.org> +# The License.txt file describes the conditions under which this software may be distributed. +# This makefile assumes the mingw32 version of GCC 2.95.2 is used and changes will +# be needed to use other compilers. + +.SUFFIXES: .cxx +CC = g++ +DLLWRAP = dllwrap + +COMPONENT = ../bin/Scintilla.dll +LEXCOMPONENT = ../bin/SciLexer.dll + +vpath %.h ../src ../include +vpath %.cxx ../src + +LDFLAGS = -lkernel32 -lgdi32 -luser32 -lwinmm -lcomdlg32 -lcomctl32 -limm32 -lole32 -luuid +#CXXFLAGS = -W -Wall +# Add -MMD to get dependencies +#CXXFLAGS = -g -pg -pedantic -Os -fno-exceptions -fvtable-thunks -fno-rtti +INCLUDEDIRS=-I ../include -I ../src +CXXFLAGS = -pedantic $(INCLUDEDIRS) -Os -fno-exceptions -fvtable-thunks -fno-rtti + +.cxx.o: + $(CC) $(CXXFLAGS) -c $< -o $@ + +ALL: $(COMPONENT) $(LEXCOMPONENT) ScintillaWinS.o + +clean: + del /q *.exe *.o *.obj *.dll *.res *.map + +SOBJS = ScintillaWin.o ScintillaBase.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 +$(COMPONENT): $(SOBJS) + $(DLLWRAP) --target i386-mingw32 -o $(COMPONENT) $(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 KeyWords.o Accessor.o PropSet.o +$(LEXCOMPONENT): $(LOBJS) + $(DLLWRAP) --target i386-mingw32 -o $(LEXCOMPONENT) $(LOBJS) $(LDFLAGS) -s --relocatable + +Accessor.o: Accessor.cxx Platform.h PropSet.h Accessor.h Scintilla.h +AutoComplete.o: AutoComplete.cxx Platform.h AutoComplete.h +CallTip.o: CallTip.cxx Platform.h CallTip.h +CellBuffer.o: CellBuffer.cxx Platform.h Scintilla.h CellBuffer.h +ContractionState.o: ContractionState.cxx Platform.h ContractionState.h +Document.o: Document.cxx Platform.h Scintilla.h CellBuffer.h \ + Document.h +Editor.o: Editor.cxx Platform.h Scintilla.h ContractionState.h \ + CellBuffer.h KeyMap.h Indicator.h LineMarker.h Style.h ViewStyle.h \ + Document.h Editor.h +Indicator.o: Indicator.cxx Platform.h Scintilla.h Indicator.h +KeyMap.o: KeyMap.cxx Platform.h Scintilla.h KeyMap.h +KeyWords.o: KeyWords.cxx Platform.h PropSet.h Accessor.h KeyWords.h \ + Scintilla.h SciLexer.h +LineMarker.o: LineMarker.cxx Platform.h Scintilla.h LineMarker.h +PlatWin.o: PlatWin.cxx Platform.h PlatformRes.h +PropSet.o: PropSet.cxx Platform.h PropSet.h +ScintillaBase.o: ScintillaBase.cxx Platform.h Scintilla.h \ + ContractionState.h CellBuffer.h CallTip.h KeyMap.h Indicator.h \ + LineMarker.h Style.h ViewStyle.h AutoComplete.h Document.h Editor.h \ + ScintillaBase.h +ScintillaBaseL.o: ScintillaBase.cxx Platform.h Scintilla.h SciLexer.h \ + ContractionState.h CellBuffer.h CallTip.h KeyMap.h Indicator.h \ + LineMarker.h Style.h AutoComplete.h ViewStyle.h Document.h Editor.h \ + ScintillaBase.h PropSet.h Accessor.h KeyWords.h +ScintillaWin.o: ScintillaWin.cxx Platform.h Scintilla.h \ + ContractionState.h CellBuffer.h CallTip.h KeyMap.h Indicator.h \ + LineMarker.h Style.h AutoComplete.h ViewStyle.h Document.h Editor.h \ + ScintillaBase.h +ScintillaWinL.o: ScintillaWin.cxx Platform.h Scintilla.h SciLexer.h \ + ContractionState.h CellBuffer.h CallTip.h KeyMap.h Indicator.h \ + LineMarker.h Style.h AutoComplete.h ViewStyle.h Document.h Editor.h \ + ScintillaBase.h PropSet.h Accessor.h KeyWords.h +ScintillaWinS.o: ScintillaWin.cxx Platform.h Scintilla.h \ + ContractionState.h CellBuffer.h CallTip.h KeyMap.h Indicator.h \ + LineMarker.h Style.h AutoComplete.h ViewStyle.h Document.h Editor.h \ + ScintillaBase.h +Style.o: Style.cxx Platform.h Style.h +ViewStyle.o: ViewStyle.cxx Platform.h Scintilla.h Indicator.h \ + LineMarker.h Style.h ViewStyle.h + +ScintillaBaseL.o: + $(CC) $(CXXFLAGS) -D SCI_LEXER -c $< -o ScintillaBaseL.o + +ScintillaWinS.o: + $(CC) $(CXXFLAGS) -D STATIC_BUILD -c $< -o ScintillaWinS.o + +ScintillaWinL.o: + $(CC) $(CXXFLAGS) -D SCI_LEXER -c $< -o ScintillaWinL.o + +ScintRes.o: ScintRes.rc PlatformRes.h + windres ScintRes.rc ScintRes.o + diff --git a/win32/makefile_bor b/win32/makefile_bor new file mode 100644 index 000000000..0b2cda968 --- /dev/null +++ b/win32/makefile_bor @@ -0,0 +1,120 @@ +# Make file for Scintilla on Windows Borland C++ Builder version +# Copyright 1998-2000 by Neil Hodgson <neilh@scintilla.org> +# The License.txt file describes the conditions under which this software may be distributed. +# This makefile is for using Visual C++ and nmake. +# The main makefile uses mingw32 gcc and may be more current than this file. + +.SUFFIXES: .cxx +CC = bcc32 +RC = brcc32 +LD = tlink32 + +COMPONENT = ..\bin\Scintilla.dll +LEXCOMPONENT = ..\bin\SciLexer.dll + +LDFLAGS = import32 cw32mt +INCLUDEDIRS=-I../include -I../src +CXXFLAGS = -P -tW -w -RT- -x- -v + +.cxx.obj: + $(CC) $(INCLUDEDIRS) $(CXXFLAGS) -c $*.cxx + +.rc.res: + $(RC) /r $*.rc + +ALL: $(COMPONENT) $(LEXCOMPONENT) ScintillaWinS.obj + +clean: + del /q *.exe *.o *.obj *.dll *.res *.map + +SOBJS = ScintillaWin.obj ScintillaBase.obj Editor.obj Document.obj \ + ContractionState.obj CellBuffer.obj CallTip.obj \ + PlatWin.obj KeyMap.obj Indicator.obj LineMarker.obj Style.obj \ + ViewStyle.obj AutoComplete.obj +$(COMPONENT): $(SOBJS) ScintRes.res + $(LD) -Tpd /c c0d32 $(SOBJS), $(COMPONENT), ,$(LDFLAGS), , ScintRes.res + +LOBJS = ScintillaWinL.obj ScintillaBaseL.obj Editor.obj Document.obj \ + ContractionState.obj CellBuffer.obj CallTip.obj \ + PlatWin.obj KeyMap.obj Indicator.obj LineMarker.obj Style.obj \ + ViewStyle.obj AutoComplete.obj KeyWords.obj Accessor.obj PropSet.obj +$(LEXCOMPONENT): $(LOBJS) + $(LD) -Tpd /c c0d32 $(LOBJS), $(LEXCOMPONENT), ,$(LDFLAGS), , ScintRes.res + +Accessor.obj: ..\src\Accessor.cxx ..\include\Platform.h ..\include\PropSet.h ..\include\Accessor.h ..\include\Scintilla.h + $(CC) $(INCLUDEDIRS) $(CXXFLAGS) -c ..\src\$*.cxx -o$* + +AutoComplete.obj: ..\src\AutoComplete.cxx ..\include\Platform.h ..\src\AutoComplete.h + $(CC) $(INCLUDEDIRS) $(CXXFLAGS) -c ..\src\$*.cxx -o$* + +CallTip.obj: ..\src\CallTip.cxx ..\include\Platform.h ..\src\CallTip.h + $(CC) $(INCLUDEDIRS) $(CXXFLAGS) -c ..\src\$*.cxx -o$* + +CellBuffer.obj: ..\src\CellBuffer.cxx ..\include\Platform.h ..\include\Scintilla.h ..\src\CellBuffer.h + $(CC) $(INCLUDEDIRS) $(CXXFLAGS) -c ..\src\$*.cxx -o$* + +ContractionState.obj: ..\src\ContractionState.cxx ..\include\Platform.h ..\src\ContractionState.h + $(CC) $(INCLUDEDIRS) $(CXXFLAGS) -c ..\src\$*.cxx -o$* + +Document.obj: ..\src\Document.cxx ..\include\Platform.h ..\include\Scintilla.h ..\src\CellBuffer.h \ + ..\src\Document.h + $(CC) $(INCLUDEDIRS) $(CXXFLAGS) -c ..\src\$*.cxx -o$* + +Editor.obj: ..\src\Editor.cxx ..\include\Platform.h ..\include\Scintilla.h ..\src\ContractionState.h \ + ..\src\CellBuffer.h ..\src\KeyMap.h ..\src\Indicator.h ..\src\LineMarker.h ..\src\Style.h ..\src\ViewStyle.h \ + ..\src\Document.h ..\src\Editor.h + $(CC) $(INCLUDEDIRS) $(CXXFLAGS) -c ..\src\$*.cxx -o$* + +Indicator.obj: ..\src\Indicator.cxx ..\include\Platform.h ..\include\Scintilla.h ..\src\Indicator.h + $(CC) $(INCLUDEDIRS) $(CXXFLAGS) -c ..\src\$*.cxx -o$* + +KeyMap.obj: ..\src\KeyMap.cxx ..\include\Platform.h ..\include\Scintilla.h ..\src\KeyMap.h + $(CC) $(INCLUDEDIRS) $(CXXFLAGS) -c ..\src\$*.cxx -o$* + +KeyWords.obj: ..\src\KeyWords.cxx ..\include\Platform.h ..\include\PropSet.h ..\include\Accessor.h ..\include\KeyWords.h \ + ..\include\Scintilla.h ..\include\SciLexer.h + $(CC) $(INCLUDEDIRS) $(CXXFLAGS) -c ..\src\$*.cxx -o$* + +LineMarker.obj: ..\src\LineMarker.cxx ..\include\Platform.h ..\include\Scintilla.h ..\src\LineMarker.h + $(CC) $(INCLUDEDIRS) $(CXXFLAGS) -c ..\src\$*.cxx -o$* + +PlatWin.obj: PlatWin.cxx ..\include\Platform.h PlatformRes.h + +PropSet.obj: ..\src\PropSet.cxx ..\include\Platform.h ..\include\PropSet.h + $(CC) $(INCLUDEDIRS) $(CXXFLAGS) -c ..\src\$*.cxx -o$* + +ScintillaBase.obj: ..\src\ScintillaBase.cxx ..\include\Platform.h ..\include\Scintilla.h \ + ..\src\ContractionState.h ..\src\CellBuffer.h ..\src\CallTip.h ..\src\KeyMap.h ..\src\Indicator.h \ + ..\src\LineMarker.h ..\src\Style.h ..\src\ViewStyle.h ..\src\AutoComplete.h ..\src\Document.h ..\src\Editor.h \ + ..\src\ScintillaBase.h + $(CC) $(INCLUDEDIRS) $(CXXFLAGS) -c ..\src\ScintillaBase.cxx -o$@ + +ScintillaBaseL.obj: ..\src\ScintillaBase.cxx ..\include\Platform.h ..\include\Scintilla.h ..\include\SciLexer.h \ + ..\src\ContractionState.h ..\src\CellBuffer.h ..\src\CallTip.h ..\src\KeyMap.h ..\src\Indicator.h \ + ..\src\LineMarker.h ..\src\Style.h ..\src\AutoComplete.h ..\src\ViewStyle.h ..\src\Document.h ..\src\Editor.h \ + ..\src\ScintillaBase.h ..\include\PropSet.h ..\include\Accessor.h ..\include\KeyWords.h + $(CC) $(INCLUDEDIRS) $(CXXFLAGS) /DSCI_LEXER -o$* /c ..\src\ScintillaBase.cxx + +ScintillaWin.obj: ScintillaWin.cxx ..\include\Platform.h ..\include\Scintilla.h \ + ..\src\ContractionState.h ..\src\CellBuffer.h ..\src\CallTip.h ..\src\KeyMap.h ..\src\Indicator.h \ + ..\src\LineMarker.h ..\src\Style.h ..\src\AutoComplete.h ..\src\ViewStyle.h ..\src\Document.h ..\src\Editor.h \ + ..\src\ScintillaBase.h + +ScintillaWinL.obj: ScintillaWin.cxx ..\include\Platform.h ..\include\Scintilla.h ..\include\SciLexer.h \ + ..\src\ContractionState.h ..\src\CellBuffer.h ..\src\CallTip.h ..\src\KeyMap.h ..\src\Indicator.h \ + ..\src\LineMarker.h ..\src\Style.h ..\src\AutoComplete.h ..\src\ViewStyle.h ..\src\Document.h ..\src\Editor.h \ + ..\src\ScintillaBase.h ..\include\PropSet.h ..\include\Accessor.h ..\include\KeyWords.h + $(CC) $(INCLUDEDIRS) $(CXXFLAGS) /DSCI_LEXER -o$* /c ScintillaWin.cxx + +ScintillaWinS.obj: ScintillaWin.cxx ..\include\Platform.h ..\include\Scintilla.h \ + ..\src\ContractionState.h ..\src\CellBuffer.h ..\src\CallTip.h ..\src\KeyMap.h ..\src\Indicator.h \ + ..\src\LineMarker.h ..\src\Style.h ..\src\AutoComplete.h ..\src\ViewStyle.h ..\src\Document.h ..\src\Editor.h \ + ..\src\ScintillaBase.h + $(CC) $(INCLUDEDIRS) $(CXXFLAGS) /DSTATIC_BUILD -o$* /c ScintillaWin.cxx + +Style.obj: ..\src\Style.cxx ..\include\Platform.h ..\src\Style.h + $(CC) $(INCLUDEDIRS) $(CXXFLAGS) -c ..\src\$*.cxx -o$@ + +ViewStyle.obj: ..\src\ViewStyle.cxx ..\include\Platform.h ..\include\Scintilla.h ..\src\Indicator.h \ + ..\src\LineMarker.h ..\src\Style.h ..\src\ViewStyle.h + $(CC) $(INCLUDEDIRS) $(CXXFLAGS) -c ..\src\$*.cxx -o$@ diff --git a/win32/makefile_vc b/win32/makefile_vc new file mode 100644 index 000000000..32a52a385 --- /dev/null +++ b/win32/makefile_vc @@ -0,0 +1,125 @@ +# Make file for Scintilla on Windows Visual C++ version +# Copyright 1998-2000 by Neil Hodgson <neilh@scintilla.org> +# The License.txt file describes the conditions under which this software may be distributed. +# This makefile is for using Visual C++ and nmake. +# The main makefile uses mingw32 gcc and may be more current than this file. + +.SUFFIXES: .cxx +CC = cl +RC = rc +LD = link + +COMPONENT = ../bin/Scintilla.dll +LEXCOMPONENT = ../bin/SciLexer.dll + +LDFLAGS = /NODEFAULTLIB:LIBC KERNEL32.lib USER32.lib GDI32.lib COMDLG32.lib WINMM.lib COMCTL32.lib ADVAPI32.lib IMM32.lib SHELL32.LIB OLE32.LIB +INCLUDEDIRS=-I ../include -I ../src +CXXFLAGS = /TP /MD /Ox + +!IFDEF DEBUG +CXXFLAGS=$(CXXFLAGS) /Zi +LDFLAGS=/DEBUG $(LDFLAGS) +!ENDIF + +.cxx.obj: + $(CC) $(INCLUDEDIRS) $(CXXFLAGS) -c $< -o $@ + +.rc.res: + $(RC) $*.rc + +ALL: $(COMPONENT) $(LEXCOMPONENT) ScintillaWinS.obj + +clean: + del /q *.exe *.o *.obj *.dll *.res *.map + +SOBJS = ScintillaWin.obj ScintillaBase.obj Editor.obj Document.obj \ + ContractionState.obj CellBuffer.obj CallTip.obj \ + PlatWin.obj KeyMap.obj Indicator.obj LineMarker.obj Style.obj \ + ViewStyle.obj AutoComplete.obj +$(COMPONENT): $(SOBJS) ScintRes.res + $(LD) /DLL /OUT:$(COMPONENT) $(SOBJS) ScintRes.res $(LDFLAGS) + +LOBJS = ScintillaWinL.obj ScintillaBaseL.obj Editor.obj Document.obj \ + ContractionState.obj CellBuffer.obj CallTip.obj \ + PlatWin.obj KeyMap.obj Indicator.obj LineMarker.obj Style.obj \ + ViewStyle.obj AutoComplete.obj KeyWords.obj Accessor.obj PropSet.obj +$(LEXCOMPONENT): $(LOBJS) + $(LD) /DLL /OUT:$(LEXCOMPONENT) $(LOBJS) ScintRes.res $(LDFLAGS) + +Accessor.obj: ..\src\Accessor.cxx ..\include\Platform.h ..\include\PropSet.h ..\include\Accessor.h ..\include\Scintilla.h + $(CC) $(INCLUDEDIRS) $(CXXFLAGS) -c ..\src\$*.cxx -o $@ + +AutoComplete.obj: ..\src\AutoComplete.cxx ..\include\Platform.h ..\src\AutoComplete.h + $(CC) $(INCLUDEDIRS) $(CXXFLAGS) -c ..\src\$*.cxx -o $@ + +CallTip.obj: ..\src\CallTip.cxx ..\include\Platform.h ..\src\CallTip.h + $(CC) $(INCLUDEDIRS) $(CXXFLAGS) -c ..\src\$*.cxx -o $@ + +CellBuffer.obj: ..\src\CellBuffer.cxx ..\include\Platform.h ..\include\Scintilla.h ..\src\CellBuffer.h + $(CC) $(INCLUDEDIRS) $(CXXFLAGS) -c ..\src\$*.cxx -o $@ + +ContractionState.obj: ..\src\ContractionState.cxx ..\include\Platform.h ..\src\ContractionState.h + $(CC) $(INCLUDEDIRS) $(CXXFLAGS) -c ..\src\$*.cxx -o $@ + +Document.obj: ..\src\Document.cxx ..\include\Platform.h ..\include\Scintilla.h ..\src\CellBuffer.h \ + ..\src\Document.h + $(CC) $(INCLUDEDIRS) $(CXXFLAGS) -c ..\src\$*.cxx -o $@ + +Editor.obj: ..\src\Editor.cxx ..\include\Platform.h ..\include\Scintilla.h ..\src\ContractionState.h \ + ..\src\CellBuffer.h ..\src\KeyMap.h ..\src\Indicator.h ..\src\LineMarker.h ..\src\Style.h ..\src\ViewStyle.h \ + ..\src\Document.h ..\src\Editor.h + $(CC) $(INCLUDEDIRS) $(CXXFLAGS) -c ..\src\$*.cxx -o $@ + +Indicator.obj: ..\src\Indicator.cxx ..\include\Platform.h ..\include\Scintilla.h ..\src\Indicator.h + $(CC) $(INCLUDEDIRS) $(CXXFLAGS) -c ..\src\$*.cxx -o $@ + +KeyMap.obj: ..\src\KeyMap.cxx ..\include\Platform.h ..\include\Scintilla.h ..\src\KeyMap.h + $(CC) $(INCLUDEDIRS) $(CXXFLAGS) -c ..\src\$*.cxx -o $@ + +KeyWords.obj: ..\src\KeyWords.cxx ..\include\Platform.h ..\include\PropSet.h ..\include\Accessor.h ..\include\KeyWords.h \ + ..\include\Scintilla.h ..\include\SciLexer.h + $(CC) $(INCLUDEDIRS) $(CXXFLAGS) -c ..\src\$*.cxx -o $@ + +LineMarker.obj: ..\src\LineMarker.cxx ..\include\Platform.h ..\include\Scintilla.h ..\src\LineMarker.h + $(CC) $(INCLUDEDIRS) $(CXXFLAGS) -c ..\src\$*.cxx -o $@ + +PlatWin.obj: PlatWin.cxx ..\include\Platform.h PlatformRes.h + +PropSet.obj: ..\src\PropSet.cxx ..\include\Platform.h ..\include\PropSet.h + $(CC) $(INCLUDEDIRS) $(CXXFLAGS) -c ..\src\$*.cxx -o $@ + +ScintillaBase.obj: ..\src\ScintillaBase.cxx ..\include\Platform.h ..\include\Scintilla.h \ + ..\src\ContractionState.h ..\src\CellBuffer.h ..\src\CallTip.h ..\src\KeyMap.h ..\src\Indicator.h \ + ..\src\LineMarker.h ..\src\Style.h ..\src\ViewStyle.h ..\src\AutoComplete.h ..\src\Document.h ..\src\Editor.h \ + ..\src\ScintillaBase.h + $(CC) $(INCLUDEDIRS) $(CXXFLAGS) -c ..\src\ScintillaBase.cxx -o $@ + +ScintillaBaseL.obj: ..\src\ScintillaBase.cxx ..\include\Platform.h ..\include\Scintilla.h ..\include\SciLexer.h \ + ..\src\ContractionState.h ..\src\CellBuffer.h ..\src\CallTip.h ..\src\KeyMap.h ..\src\Indicator.h \ + ..\src\LineMarker.h ..\src\Style.h ..\src\AutoComplete.h ..\src\ViewStyle.h ..\src\Document.h ..\src\Editor.h \ + ..\src\ScintillaBase.h ..\include\PropSet.h ..\include\Accessor.h ..\include\KeyWords.h + $(CC) $(INCLUDEDIRS) $(CXXFLAGS) /D SCI_LEXER /c ..\src\ScintillaBase.cxx /Fo$@ + +ScintillaWin.obj: ScintillaWin.cxx ..\include\Platform.h ..\include\Scintilla.h \ + ..\src\ContractionState.h ..\src\CellBuffer.h ..\src\CallTip.h ..\src\KeyMap.h ..\src\Indicator.h \ + ..\src\LineMarker.h ..\src\Style.h ..\src\AutoComplete.h ..\src\ViewStyle.h ..\src\Document.h ..\src\Editor.h \ + ..\src\ScintillaBase.h + +ScintillaWinL.obj: ScintillaWin.cxx ..\include\Platform.h ..\include\Scintilla.h ..\include\SciLexer.h \ + ..\src\ContractionState.h ..\src\CellBuffer.h ..\src\CallTip.h ..\src\KeyMap.h ..\src\Indicator.h \ + ..\src\LineMarker.h ..\src\Style.h ..\src\AutoComplete.h ..\src\ViewStyle.h ..\src\Document.h ..\src\Editor.h \ + ..\src\ScintillaBase.h ..\include\PropSet.h ..\include\Accessor.h ..\include\KeyWords.h + $(CC) $(INCLUDEDIRS) $(CXXFLAGS) /D SCI_LEXER /c ScintillaWin.cxx /Fo$@ + +ScintillaWinS.obj: ScintillaWin.cxx ..\include\Platform.h ..\include\Scintilla.h \ + ..\src\ContractionState.h ..\src\CellBuffer.h ..\src\CallTip.h ..\src\KeyMap.h ..\src\Indicator.h \ + ..\src\LineMarker.h ..\src\Style.h ..\src\AutoComplete.h ..\src\ViewStyle.h ..\src\Document.h ..\src\Editor.h \ + ..\src\ScintillaBase.h + $(CC) $(INCLUDEDIRS) $(CXXFLAGS) /D STATIC_BUILD /c ScintillaWin.cxx /Fo$@ + +Style.obj: ..\src\Style.cxx ..\include\Platform.h ..\src\Style.h + $(CC) $(INCLUDEDIRS) $(CXXFLAGS) -c ..\src\$*.cxx -o $@ + +ViewStyle.obj: ..\src\ViewStyle.cxx ..\include\Platform.h ..\include\Scintilla.h ..\src\Indicator.h \ + ..\src\LineMarker.h ..\src\Style.h ..\src\ViewStyle.h + $(CC) $(INCLUDEDIRS) $(CXXFLAGS) -c ..\src\$*.cxx -o $@ |
