summaryrefslogtreecommitdiff
path: root/makefiles
diff options
context:
space:
mode:
authorMichael R Sweet <michael.r.sweet@gmail.com>1999-02-22 21:16:21 +0000
committerMichael R Sweet <michael.r.sweet@gmail.com>1999-02-22 21:16:21 +0000
commit08303a1bfda96aaa9f28af0dae9ac8ffcd439fe7 (patch)
treee06fc433cf62787ea687dc8da61a74fb69c40cc1 /makefiles
parent30e8153ef2e45031e8361e2e97f21b9c93a55c79 (diff)
Updated makeinclude for Cygnus - fix from Rick Sayre.
git-svn-id: file:///fltk/svn/fltk/trunk@318 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
Diffstat (limited to 'makefiles')
-rw-r--r--makefiles/makeinclude.cygnus11
1 files changed, 6 insertions, 5 deletions
diff --git a/makefiles/makeinclude.cygnus b/makefiles/makeinclude.cygnus
index 257471a6c..bd3d68439 100644
--- a/makefiles/makeinclude.cygnus
+++ b/makefiles/makeinclude.cygnus
@@ -1,5 +1,5 @@
#
-# "$Id: makeinclude.cygnus,v 1.8 1999/02/18 14:28:18 mike Exp $"
+# "$Id: makeinclude.cygnus,v 1.9 1999/02/22 21:16:21 mike Exp $"
#
# Make include file for the Fast Light Tool Kit (FLTK).
#
@@ -35,8 +35,8 @@ CXX = g++
CC = gcc
# flags for C++ compiler:
-CFLAGS = -Wall -O2 -DCYGNUS -DWIN32 -mno-cygwin -mwindows
-CXXFLAGS = -Wall -O2 -DCYGNUS -DWIN32 -mno-cygwin -mwindows
+CFLAGS = -Wall -O2 -DWIN32 -mno-cygwin
+CXXFLAGS = -Wall -O2 -DWIN32 -mno-cygwin
# program to make the archive:
LIBNAME = libfltk.a
@@ -44,8 +44,9 @@ 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 \
+ -mno-cygwin -mwindows
#
-# End of "$Id: makeinclude.cygnus,v 1.8 1999/02/18 14:28:18 mike Exp $".
+# End of "$Id: makeinclude.cygnus,v 1.9 1999/02/22 21:16:21 mike Exp $".
#