summaryrefslogtreecommitdiff
path: root/makefiles/makeinclude.cygnus
diff options
context:
space:
mode:
authorMichael R Sweet <michael.r.sweet@gmail.com>1999-02-16 14:28:01 +0000
committerMichael R Sweet <michael.r.sweet@gmail.com>1999-02-16 14:28:01 +0000
commitebd08e13a1c0bc12ac812f2aa9e29bb75e284aae (patch)
tree32e987c182f73821944cef4fced3edb61c4e7758 /makefiles/makeinclude.cygnus
parentd59ce3cc343523b2440125b9d50bfbd647b3f263 (diff)
Updated the makeinclude and config files to have the standard headers.
Added Carl's Cygnus changes. git-svn-id: file:///fltk/svn/fltk/trunk@275 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
Diffstat (limited to 'makefiles/makeinclude.cygnus')
-rw-r--r--makefiles/makeinclude.cygnus69
1 files changed, 41 insertions, 28 deletions
diff --git a/makefiles/makeinclude.cygnus b/makefiles/makeinclude.cygnus
index 3ff44feac..053115ced 100644
--- a/makefiles/makeinclude.cygnus
+++ b/makefiles/makeinclude.cygnus
@@ -1,38 +1,51 @@
-# !!!! YOU PROBABLY WANT TO USE makeinclude.mingw32 INSTEAD !!!!
-
-# Makeinclude file for the Cygwin B19 release of GCC for Windoze
-#
-# This will try to use Cygwin's Unix emulation as much as possible,
-# which means it will link in Cygwin's libraries. This seems to
-# result in much slower performance, and the only real difference
-# is that the file chooser uses cygwin's scandir implementation
-# rather than my own. To compile with direct windoze calls
-# use the file makeinclude.mingw32.
-
-# Copy this file to .. and run make.
-# Thanks to Philipp Knirsch at Lucent and Carl Thompson
+#
+# "$Id: makeinclude.cygnus,v 1.6 1999/02/16 14:28:01 mike Exp $"
+#
+# Make include file for the Fast Light Tool Kit (FLTK).
+#
+# Copyright 1998-1999 by Bill Spitzak and others.
+#
+# This library is free software; you can redistribute it and/or
+# modify it under the terms of the GNU Library General Public
+# License as published by the Free Software Foundation; either
+# version 2 of the License, or (at your option) any later version.
+#
+# This library is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+# Library General Public License for more details.
+#
+# You should have received a copy of the GNU Library General Public
+# License along with this library; if not, write to the Free Software
+# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
+# USA.
+#
+# Please report all bugs and problems to "fltk-bugs@easysw.com".
+#
-prefix =/usr/local
-exec_prefix =${prefix}
-bindir =${exec_prefix}/bin
-includedir =${prefix}/include
-libdir =${exec_prefix}/lib
-srcdir =.
+prefix = /usr/local
+exec_prefix = ${prefix}
+bindir = ${exec_prefix}/bin
+includedir = ${prefix}/include
+libdir = ${exec_prefix}/lib
+srcdir = .
# compiler names:
-CXX =g++
-CC =gcc
+CXX = g++
+CC = gcc
# flags for C++ compiler:
-CFLAGS =-Wall -O2 -DCYGNUS
-CXXFLAGS =-Wall -O2 -DCYGNUS
+CFLAGS = -Wall -O2 -DCYGNUS -DWIN32 -mno-cygwin -mwindows
+CXXFLAGS = -Wall -O2 -DCYGNUS -DWIN32 -mno-cygwin -mwindows
# program to make the archive:
-LIBNAME =libfltk.a
-LIBCOMMAND =ar -ruv
-RANLIB =ranlib
+LIBNAME = libfltk.a
+LIBCOMMAND = ar -ruv
+RANLIB = ranlib
# libraries to link with:
-LDLIBS =-lgdi32 -luser32 -lglu32 -lopengl32 -lmsvcrt -lwsock32 -lm
+LDLIBS = -lgdi32 -luser32 -lglu32 -lopengl32 -lmsvcrt -lwsock32 -lm
-INSTALL =/CYGNUS/B19/H-I386~1/BIN/install -c
+#
+# End of "$Id: makeinclude.cygnus,v 1.6 1999/02/16 14:28:01 mike Exp $".
+#