diff options
author | Neil <nyamatongwe@gmail.com> | 2019-12-29 09:29:27 +1100 |
---|---|---|
committer | Neil <nyamatongwe@gmail.com> | 2019-12-29 09:29:27 +1100 |
commit | 72b3755e044bae772188ec28da218309beddc526 (patch) | |
tree | 930ffcf810909871580aa44f565eac4b1d7cd35a | |
parent | 90bd8b62e648300b232ec658045457daf66a2ddf (diff) | |
download | scintilla-mirror-72b3755e044bae772188ec28da218309beddc526.tar.gz |
Update comments.
-rw-r--r-- | gtk/makefile | 9 | ||||
-rw-r--r-- | win32/makefile | 5 |
2 files changed, 8 insertions, 6 deletions
diff --git a/gtk/makefile b/gtk/makefile index 3543812d2..f9ed251c1 100644 --- a/gtk/makefile +++ b/gtk/makefile @@ -1,9 +1,10 @@ -# Make file for Scintilla on Linux or compatible OS +# Make file for Scintilla on Linux, macOS, or Windows +# @file makefile # Copyright 1998-2010 by Neil Hodgson <neilh@scintilla.org> # The License.txt file describes the conditions under which this software may be distributed. -# This makefile assumes GCC 4.3 is used and changes will be needed to use other compilers. -# GNU make does not like \r\n line endings so should be saved to CVS in binary form. -# Builds for GTK+ 2 and no longer supports GTK+ 1. +# This makefile assumes GCC 9.0+ is used and changes will be needed to use other compilers. +# Clang 9.0+ can be used with CLANG=1 on command line. +# Builds for GTK+ 2 and 3. GTK 3 requires GTK3=1 on command line. # Also works with ming32-make on Windows. .SUFFIXES: .cxx .c .o .h .a .list diff --git a/win32/makefile b/win32/makefile index d6c918600..7b25b250f 100644 --- a/win32/makefile +++ b/win32/makefile @@ -1,8 +1,9 @@ # Make file for Scintilla on Windows +# @file makefile # Copyright 1998-2010 by Neil Hodgson <neilh@scintilla.org> # The License.txt file describes the conditions under which this software may be distributed. -# This makefile assumes the Mingw-w64 version of GCC 7.1+ is used and changes will -# be needed to use other compilers. +# This makefile assumes Mingw-w64 GCC 9.0+ is used and changes will be needed to use other compilers. +# Clang 9.0+ can be used with CLANG=1 on command line. .SUFFIXES: .cxx |