+# set MIN_SUFFIX to nothing if you use only MinGW compiler, set it to
+# something MinGW-specific if you want to build wxWindows with more than one
+# compiler
+ifeq ($(MINGW32),1)
+ MIN_SUFFIX=_min
+else
+ MIN_SUFFIX=_cyg
+endif
+
+# Set to your gcc version. Generally 'gcc --version' tells you
+# which version you have. But it cannot distinguish between
+# 2.95.2-1 and earlier suffix versions of 2.95 . In that case,
+# inspect the dates of bin/gcc.exe and bin/ld.exe ; if they
+# are at least
+# 2000-01-21 for gcc.exe and
+# 2000-02-04 for ld.exe
+# then use '2.95-late'.
+#
+# gcc 2.8.x and earlier require struct-return workaround
+#MINGW32VERSION=2.8
+#
+# gcc 2.95.2 and earlier requires special thunk option
+#MINGW32VERSION=2.9-early
+#
+# mingw gcc-2.95.2-1 supports '-shared'
+# windres provided with gcc-2.95.2-1 supports temp file option
+#MINGW32VERSION=2.95-late
+#
+# gcc 3.x provides a win32api.h header
+MINGW32VERSION=3.0
+
+# If you want to compile on Wine, simply uncomment this variable
+# If you don't want to edit the file, you can simply define it
+# on the command line like so: make WINE=1 -f makefile.g95
+#WINE=1
+
+# Set this if you are using a cross-compiler, i.e. compiling on one system
+# the program for another one
+# CROSS=i386-mingw32-
+
+# If we're using MSYS, or other utilities that use forward slashes,
+# you need to set this when invoking the makefile from DOS, or the
+# wrong separators will be assumed. However, if you're using MSYS,
+# you really ought to invoke the makefile from MSYS--or, even better,
+# use the './configure && make' technique that MSYS is designed for.
+ifndef WINE
+#OSTYPE=msys
+else
+OSTYPE=msys
+endif