1998-10-20 20:41:24 +04:00
|
|
|
#
|
2001-01-22 18:13:41 +03:00
|
|
|
# "$Id: makeinclude.in,v 1.7.2.8 2001/01/22 15:13:37 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@
|
|
|
|
includedir =@includedir@
|
|
|
|
libdir =@libdir@
|
|
|
|
srcdir =@srcdir@
|
|
|
|
VPATH =@srcdir@
|
|
|
|
|
|
|
|
# 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:
|
2000-10-22 00:01:56 +04:00
|
|
|
CFLAGS =@CFLAGS@
|
|
|
|
CXXFLAGS =@CXXFLAGS@
|
1998-10-06 22:21:25 +04:00
|
|
|
|
|
|
|
# program to make the archive:
|
1998-10-20 20:41:24 +04:00
|
|
|
LIBNAME =@LIBNAME@
|
|
|
|
LIBCOMMAND =@LIBCOMMAND@
|
1998-10-06 22:21:25 +04:00
|
|
|
RANLIB =@RANLIB@
|
1999-03-25 18:26:44 +03:00
|
|
|
DSONAME =@DSONAME@
|
1999-03-09 21:32:44 +03:00
|
|
|
DSOCOMMAND =@DSOCOMMAND@
|
1998-10-06 22:21:25 +04:00
|
|
|
|
|
|
|
# libraries to link with:
|
1999-03-25 18:26:44 +03:00
|
|
|
LDLIBS =@LDFLAGS@ @LIBS@ -lX11 -lXext @X_EXTRA_LIBS@ -lm
|
|
|
|
GLDLIBS =@LDFLAGS@ @LIBS@ @GLLIB@ -lX11 -lXext @X_EXTRA_LIBS@ -lm
|
1998-10-20 20:41:24 +04:00
|
|
|
|
2000-04-26 02:17:00 +04:00
|
|
|
# Be quiet when building...
|
|
|
|
.SILENT:
|
|
|
|
|
|
|
|
# Build commands and filename extensions...
|
|
|
|
.SUFFIXES: .c .cxx .h .fl .o
|
|
|
|
|
|
|
|
.cxx:
|
|
|
|
echo Compiling and linking $@...
|
2000-06-06 01:21:24 +04:00
|
|
|
$(CXX) -I.. -L../lib $(CXXFLAGS) $< -lfltk $(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
|
|
|
|
1998-10-20 20:41:24 +04:00
|
|
|
#
|
2001-01-22 18:13:41 +03:00
|
|
|
# End of "$Id: makeinclude.in,v 1.7.2.8 2001/01/22 15:13:37 easysw Exp $".
|
1998-10-20 20:41:24 +04:00
|
|
|
#
|