summaryrefslogtreecommitdiff
path: root/makefiles/makeinclude.os2x
diff options
context:
space:
mode:
authorMichael R Sweet <michael.r.sweet@gmail.com>2001-10-16 20:19:22 +0000
committerMichael R Sweet <michael.r.sweet@gmail.com>2001-10-16 20:19:22 +0000
commitea60692bf5e0dcf30b9fac3a777f115c059133ab (patch)
tree34c2212cc7b5901a6db5705e174df37d7e987954 /makefiles/makeinclude.os2x
parent90784b7e651c27a4ba1b6de21379d77aa6b0d6d7 (diff)
Fixes for the Cygwin, MingW, and OS/2 build stuff.
git-svn-id: file:///fltk/svn/fltk/branches/branch-1.1@1634 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
Diffstat (limited to 'makefiles/makeinclude.os2x')
-rw-r--r--makefiles/makeinclude.os2x12
1 files changed, 8 insertions, 4 deletions
diff --git a/makefiles/makeinclude.os2x b/makefiles/makeinclude.os2x
index 2c0a9b40b..157d040c0 100644
--- a/makefiles/makeinclude.os2x
+++ b/makefiles/makeinclude.os2x
@@ -1,5 +1,5 @@
#
-# "$Id: makeinclude.os2x,v 1.1.2.4 2001/05/06 13:32:48 easysw Exp $"
+# "$Id: makeinclude.os2x,v 1.1.2.4.2.1 2001/10/16 20:19:22 easysw Exp $"
#
# Make include file for the Fast Light Tool Kit (FLTK).
# Generated automatically from makeinclude.in by configure.
@@ -48,7 +48,8 @@ CXXFLAGS =-Wall -O4 -mpentium -Zmt -fno-exceptions
LDFLAGS =-s -Zexe -Zmt -Zcrtdll -Zbsd-signals -Zbin-files -fno-exceptions
# program to make the archive:
-LIBNAME =fltk.a
+LIBNAME =../lib/fltk.a
+GLLIBNAME =../lib/fltk_gl.a
LIBCOMMAND =ar cr
RANLIB =ar.exe s
DSONAME =
@@ -57,6 +58,9 @@ DSOCOMMAND =echo
# libraries to link with:
LDLIBS =-lX11 -lXext -lsocket -lshm -lm
GLDLIBS =-lX11 -lXext -lsocket -lshm -lm
+LINKFLTK =-L../lib -lfltk
+LINKFLTKGL =-L../lib -lfltk_gl
+IMAGELIBS =
# Man page extensions...
CAT1EXT =1
@@ -70,7 +74,7 @@ CAT3EXT =3
.cxx:
echo Compiling and linking $@...
- $(CXX) -I.. -L../lib $(CXXFLAGS) $< -lfltk $(LDLIBS) -o $@
+ $(CXX) -I.. $(CXXFLAGS) $< $(LINKFLTK) $(LDLIBS) -o $@
.c.o:
echo Compiling $@...
@@ -93,5 +97,5 @@ CAT3EXT =3
mv t.z $@
#
-# End of "$Id: makeinclude.os2x,v 1.1.2.4 2001/05/06 13:32:48 easysw Exp $".
+# End of "$Id: makeinclude.os2x,v 1.1.2.4.2.1 2001/10/16 20:19:22 easysw Exp $".
#