diff options
author | Neil <nyamatongwe@gmail.com> | 2025-03-20 16:46:11 +1100 |
---|---|---|
committer | Neil <nyamatongwe@gmail.com> | 2025-03-20 16:46:11 +1100 |
commit | 2f542786fd95e7bbce6c689934cb4988aa3fa1df (patch) | |
tree | d2d41c023eae2a6d3b13cf1450e9ba59e55920c5 /win32/nmdeps.mak | |
parent | cb342d444c6c13671a5c1832d1723c073eca0a37 (diff) | |
download | scintilla-mirror-2f542786fd95e7bbce6c689934cb4988aa3fa1df.tar.gz |
Move SurfaceGDI, SurfaceD2D, ListBox, and associated code out of PlatWin.cxx to
new files SurfaceGDI.cxx, SurfaceD2D.cxx, and ListBox.cxx + associated headers.
Diffstat (limited to 'win32/nmdeps.mak')
-rw-r--r-- | win32/nmdeps.mak | 43 |
1 files changed, 42 insertions, 1 deletions
diff --git a/win32/nmdeps.mak b/win32/nmdeps.mak index 961aba5ee..c107fed6c 100644 --- a/win32/nmdeps.mak +++ b/win32/nmdeps.mak @@ -3,6 +3,19 @@ $(DIR_O)/HanjaDic.obj: \ HanjaDic.cxx \ WinTypes.h \ HanjaDic.h +$(DIR_O)/ListBox.obj: \ + ListBox.cxx \ + ../include/ScintillaTypes.h \ + ../src/Debugging.h \ + ../src/Geometry.h \ + ../src/Platform.h \ + ../src/XPM.h \ + ../src/UniConversion.h \ + ../src/DBCS.h \ + WinTypes.h \ + PlatWin.h \ + ListBox.h \ + SurfaceD2D.h $(DIR_O)/PlatWin.obj: \ PlatWin.cxx \ ../include/ScintillaTypes.h \ @@ -13,7 +26,9 @@ $(DIR_O)/PlatWin.obj: \ ../src/UniConversion.h \ ../src/DBCS.h \ WinTypes.h \ - PlatWin.h + PlatWin.h \ + ListBox.h \ + SurfaceD2D.h $(DIR_O)/ScintillaDLL.obj: \ ScintillaDLL.cxx \ ../include/ScintillaTypes.h \ @@ -60,8 +75,34 @@ $(DIR_O)/ScintillaWin.obj: \ ../src/ScintillaBase.h \ WinTypes.h \ PlatWin.h \ + SurfaceD2D.h \ HanjaDic.h \ ScintillaWin.h +$(DIR_O)/SurfaceD2D.obj: \ + SurfaceD2D.cxx \ + ../include/ScintillaTypes.h \ + ../src/Debugging.h \ + ../src/Geometry.h \ + ../src/Platform.h \ + ../src/XPM.h \ + ../src/UniConversion.h \ + ../src/DBCS.h \ + WinTypes.h \ + PlatWin.h \ + SurfaceGDI.h \ + SurfaceD2D.h +$(DIR_O)/SurfaceGDI.obj: \ + SurfaceGDI.cxx \ + ../include/ScintillaTypes.h \ + ../src/Debugging.h \ + ../src/Geometry.h \ + ../src/Platform.h \ + ../src/XPM.h \ + ../src/UniConversion.h \ + ../src/DBCS.h \ + WinTypes.h \ + PlatWin.h \ + SurfaceGDI.h $(DIR_O)/AutoComplete.obj: \ ../src/AutoComplete.cxx \ ../include/ScintillaTypes.h \ |