1998-10-20 20:41:24 +04:00
|
|
|
#
|
2001-11-20 23:10:59 +03:00
|
|
|
# "$Id: makeinclude.in,v 1.7.2.11.2.8 2001/11/20 20:10:59 easysw Exp $"
|
1998-10-20 20:41:24 +04:00
|
|
|
#
|
1998-10-21 18:00:53 +04:00
|
|
|
# Make include file for the Fast Light Tool Kit (FLTK).
|
|
|
|
# @configure_input@
|
1998-10-20 20:41:24 +04:00
|
|
|
#
|
2001-01-22 18:13:41 +03:00
|
|
|
# Copyright 1998-2001 by Bill Spitzak and others.
|
1998-10-20 20:41:24 +04:00
|
|
|
#
|
|
|
|
# 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.
|
|
|
|
#
|
2000-06-06 01:21:24 +04:00
|
|
|
# Please report all bugs and problems to "fltk-bugs@fltk.org".
|
1998-10-20 20:41:24 +04:00
|
|
|
#
|
|
|
|
|
1998-10-06 22:21:25 +04:00
|
|
|
prefix =@prefix@
|
|
|
|
exec_prefix =@exec_prefix@
|
|
|
|
bindir =@bindir@
|
2001-02-12 18:12:14 +03:00
|
|
|
datadir =@datadir@
|
1998-10-06 22:21:25 +04:00
|
|
|
includedir =@includedir@
|
|
|
|
libdir =@libdir@
|
2001-02-12 18:12:14 +03:00
|
|
|
mandir =@mandir@
|
1998-10-06 22:21:25 +04:00
|
|
|
srcdir =@srcdir@
|
|
|
|
VPATH =@srcdir@
|
|
|
|
|
2001-02-12 18:12:14 +03:00
|
|
|
# programs we use...
|
|
|
|
HTMLDOC =@HTMLDOC@
|
|
|
|
NROFF =@NROFF@
|
2001-10-27 07:33:25 +04:00
|
|
|
RM =/bin/rm -f
|
2001-02-12 18:12:14 +03:00
|
|
|
|
1998-10-06 22:21:25 +04:00
|
|
|
# compiler names:
|
1998-10-20 20:41:24 +04:00
|
|
|
CXX =@CXX@
|
|
|
|
CC =@CC@
|
|
|
|
MAKEDEPEND =@MAKEDEPEND@
|
1998-10-06 22:21:25 +04:00
|
|
|
|
|
|
|
# flags for C++ compiler:
|
2001-04-14 15:11:43 +04:00
|
|
|
CFLAGS =@CPPFLAGS@ @CFLAGS@
|
|
|
|
CXXFLAGS =@CPPFLAGS@ @CXXFLAGS@
|
1998-10-06 22:21:25 +04:00
|
|
|
|
|
|
|
# program to make the archive:
|
1998-10-20 20:41:24 +04:00
|
|
|
LIBNAME =@LIBNAME@
|
2001-08-02 22:08:36 +04:00
|
|
|
GLLIBNAME =@GLLIBNAME@
|
1998-10-20 20:41:24 +04:00
|
|
|
LIBCOMMAND =@LIBCOMMAND@
|
1998-10-06 22:21:25 +04:00
|
|
|
RANLIB =@RANLIB@
|
1999-03-25 18:26:44 +03:00
|
|
|
DSONAME =@DSONAME@
|
2001-08-02 22:08:36 +04:00
|
|
|
GLDSONAME =@DSONAME@
|
1999-03-09 21:32:44 +03:00
|
|
|
DSOCOMMAND =@DSOCOMMAND@
|
1998-10-06 22:21:25 +04:00
|
|
|
|
|
|
|
# libraries to link with:
|
2001-11-20 23:10:59 +03:00
|
|
|
LDLIBS =@LDFLAGS@ @LIBS@
|
|
|
|
GLDLIBS =@LDFLAGS@ @GLLIB@ @LIBS@
|
2001-08-02 22:08:36 +04:00
|
|
|
LINKFLTK =-L../lib @LINKFLTK@
|
|
|
|
LINKFLTKGL =-L../lib @LINKFLTKGL@
|
2001-08-02 23:43:49 +04:00
|
|
|
IMAGELIBS =@IMAGELIBS@
|
1998-10-20 20:41:24 +04:00
|
|
|
|
2001-08-02 22:15:44 +04:00
|
|
|
# Do we build the OpenGL demos?
|
|
|
|
GLDEMOS =@GLDEMOS@
|
|
|
|
|
2001-11-18 15:48:38 +03:00
|
|
|
# The extension to use for executables...
|
|
|
|
EXEEXT =@EXEEXT@
|
|
|
|
|
2001-02-12 18:34:37 +03:00
|
|
|
# Man page extensions...
|
|
|
|
CAT1EXT =@CAT1EXT@
|
|
|
|
CAT3EXT =@CAT3EXT@
|
|
|
|
|
2000-04-26 02:17:00 +04:00
|
|
|
# Be quiet when building...
|
|
|
|
.SILENT:
|
|
|
|
|
|
|
|
# Build commands and filename extensions...
|
2001-11-18 15:48:38 +03:00
|
|
|
.SUFFIXES: .0 .1 .3 .c .cxx .h .fl .man .o .z $(EXEEXT)
|
2000-04-26 02:17:00 +04:00
|
|
|
|
OK, lots of changes to the Fl_Image, Fl_Bitmap, Fl_Pixmap, and Fl_RGB_Image
classes: new copy(), copy(w,h), desaturate(), color_average(), and
inactive() methods, alloc_xyz member for copied data, etc.
Updated test programs to use inactive() and copy() methods to create
inactive images for the test buttons, plus the inactive button to toggle
it...
Added start of separate image classes, a la 2.0, for various image formats.
FLUID will also be updated for it...
git-svn-id: file:///fltk/svn/fltk/branches/branch-1.1@1703 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
2001-11-19 04:06:45 +03:00
|
|
|
.cxx$(EXEEXT):
|
2000-04-26 02:17:00 +04:00
|
|
|
echo Compiling and linking $@...
|
2001-08-02 22:08:36 +04:00
|
|
|
$(CXX) -I.. $(CXXFLAGS) $< $(LINKFLTK) $(LDLIBS) -o $@
|
2000-04-26 02:17:00 +04:00
|
|
|
|
|
|
|
.c.o:
|
|
|
|
echo Compiling $@...
|
2000-11-20 18:10:00 +03:00
|
|
|
$(CC) -I.. $(CFLAGS) -c $<
|
2000-04-26 02:17:00 +04:00
|
|
|
|
|
|
|
.cxx.o:
|
|
|
|
echo Compiling $@...
|
2000-11-20 18:10:00 +03:00
|
|
|
$(CXX) -I.. $(CXXFLAGS) -c $<
|
2000-04-26 02:17:00 +04:00
|
|
|
|
2001-02-12 18:12:14 +03:00
|
|
|
.man.0 .man.1 .man.3:
|
|
|
|
echo Formatting $<...
|
2001-02-12 18:34:37 +03:00
|
|
|
rm -f $@
|
2001-02-12 18:12:14 +03:00
|
|
|
$(NROFF) -man $< >$@
|
|
|
|
|
|
|
|
.man.z:
|
|
|
|
echo Formatting $<...
|
2001-02-12 18:34:37 +03:00
|
|
|
rm -f $@ t.z
|
2001-02-12 18:12:14 +03:00
|
|
|
$(NROFF) -man $< >t
|
|
|
|
pack -f t
|
2001-02-12 18:34:37 +03:00
|
|
|
mv t.z $@
|
2001-02-12 18:12:14 +03:00
|
|
|
|
1998-10-20 20:41:24 +04:00
|
|
|
#
|
2001-11-20 23:10:59 +03:00
|
|
|
# End of "$Id: makeinclude.in,v 1.7.2.11.2.8 2001/11/20 20:10:59 easysw Exp $".
|
1998-10-20 20:41:24 +04:00
|
|
|
#
|