aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
-rw-r--r--gtk/makefile9
-rw-r--r--win32/makefile1
2 files changed, 6 insertions, 4 deletions
diff --git a/gtk/makefile b/gtk/makefile
index 15470e2db..cc9e918b2 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 4.8+ is used and changes will be needed to use other compilers.
+# Clang 3.4+ 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 bc96c76be..d34856b5d 100644
--- a/win32/makefile
+++ b/win32/makefile
@@ -1,4 +1,5 @@
# 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 MinGW32 version of GCC 4.8+ is used and changes will