diff --git a/FL/Makefile.in b/FL/Makefile.in
deleted file mode 100644
index f8d46ff78..000000000
--- a/FL/Makefile.in
+++ /dev/null
@@ -1,47 +0,0 @@
-#
-# Header Makefile for the Fast Light Tool Kit (FLTK).
-#
-# Copyright 1998-2021 by Bill Spitzak and others.
-#
-# This library is free software. Distribution and use rights are outlined in
-# the file "COPYING" which should have been included with this file. If this
-# file is missing or damaged, see the license at:
-#
-# https://www.fltk.org/COPYING.php
-#
-# Please see the following page on how to report bugs and issues:
-#
-# https://www.fltk.org/bugs.php
-#
-
-include ../makeinclude
-
-all:
-
-clean:
-
-depend:
-
-install:
- echo "Installing include files in $(DESTDIR)$(includedir)..."
- $(RMDIR) "$(DESTDIR)$(includedir)/FL"
- $(INSTALL_DIR) "$(DESTDIR)$(includedir)/FL"
- for file in *.[hH]; do \
- $(INSTALL_DATA) $$file "$(DESTDIR)$(includedir)/FL"; \
- done
-@HLINKS@ cd "$(DESTDIR)$(includedir)/FL";\
-@HLINKS@ for file in *.H; do\
-@HLINKS@ $(RM) "`basename $$file H`h";\
-@HLINKS@ $(LN) $$file "`basename $$file H`h";\
-@HLINKS@ done
-@HLINKS@ $(RM) "$(DESTDIR)$(includedir)/FL/fl_file_chooser.H"
-@HLINKS@ $(LN) Fl_File_Chooser.H "$(DESTDIR)$(includedir)/FL/fl_file_chooser.H"
-@HLINKS@ $(RM) "$(DESTDIR)$(includedir)/FL/fl_file_chooser.h"
-@HLINKS@ $(LN) Fl_File_Chooser.H "$(DESTDIR)$(includedir)/FL/fl_file_chooser.h"
-@HLINKS@ $(RM) "$(DESTDIR)$(includedir)/Fl"
-@HLINKS@ $(LN) FL "$(DESTDIR)$(includedir)/Fl"
-
-uninstall:
- echo "Uninstalling include files..."
- $(RMDIR) "$(DESTDIR)$(includedir)/FL"
-@HLINKS@ $(RM) "$(DESTDIR)$(includedir)/Fl"
diff --git a/Makefile b/Makefile
deleted file mode 100644
index d4115d3a0..000000000
--- a/Makefile
+++ /dev/null
@@ -1,134 +0,0 @@
-#
-# Top-level Makefile for the Fast Light Tool Kit (FLTK).
-#
-# Copyright 1998-2024 by Bill Spitzak and others.
-#
-# This library is free software. Distribution and use rights are outlined in
-# the file "COPYING" which should have been included with this file. If this
-# file is missing or damaged, see the license at:
-#
-# https://www.fltk.org/COPYING.php
-#
-# Please see the following page on how to report bugs and issues:
-#
-# https://www.fltk.org/bugs.php
-#
-
-include makeinclude
-
-DIRS = $(IMAGEDIRS) $(LIBDECORDIR) src $(CAIRODIR) $(FLUIDDIR) fltk-options $(TESTDIR) \
- documentation
-
-all: makeinclude fltk-config
- for dir in $(DIRS); do\
- echo "=== making $$dir ===";\
- (cd $$dir; $(MAKE) $(MFLAGS)) || exit 1;\
- done
-
-# Build test programs (and 'all') if FLTK was configured with '--disable-test'
-test: all
- echo "=== making test ===";\
- (cd test; $(MAKE) $(MFLAGS)) || exit 1
-
-install: makeinclude
- -mkdir -p "$(DESTDIR)$(bindir)"
- $(RM) "$(DESTDIR)$(bindir)/fltk-config"
- $(INSTALL_SCRIPT) fltk-config "$(DESTDIR)$(bindir)"
- for dir in FL $(DIRS); do\
- echo "=== installing $$dir ===";\
- (cd $$dir; $(MAKE) $(MFLAGS) install) || exit 1;\
- done
-
-install-desktop: makeinclude
- cd documentation; $(MAKE) $(MFLAGS) $(INSTALL_DESKTOP)
- cd fluid; $(MAKE) $(MFLAGS) $(INSTALL_DESKTOP)
- cd fltk-options; $(MAKE) $(MFLAGS) $(INSTALL_DESKTOP)
- cd test; $(MAKE) $(MFLAGS) $(INSTALL_DESKTOP)
-
-uninstall: makeinclude
- $(RM) "$(DESTDIR)$(bindir)/fltk-config"
- for dir in FL $(DIRS); do\
- echo "=== uninstalling $$dir ===";\
- (cd $$dir; $(MAKE) $(MFLAGS) uninstall) || exit 1;\
- done
-
-uninstall-desktop: makeinclude
- cd documentation; $(MAKE) $(MFLAGS) $(UNINSTALL_DESKTOP)
- cd fluid; $(MAKE) $(MFLAGS) $(UNINSTALL_DESKTOP)
- cd fltk-options; $(MAKE) $(MFLAGS) $(UNINSTALL_DESKTOP)
- cd test; $(MAKE) $(MFLAGS) $(UNINSTALL_DESKTOP)
-
-depend: makeinclude
- for dir in $(DIRS); do\
- echo "=== making dependencies in $$dir ===";\
- (cd $$dir; $(MAKE) $(MFLAGS) depend) || exit 1;\
- done
-
-clean:
- -$(RM) core *.o
- for dir in examples $(DIRS); do\
- echo "=== cleaning $$dir ===";\
- (cd $$dir; $(MAKE) $(MFLAGS) clean) || exit 1;\
- done
-
-distclean: clean
- $(RM) config.h config.log config.status
- $(RM) fltk-config fltk.list makeinclude
- $(RM) fltk.spec
- $(RM) FL/Makefile
- $(RM) FL/fl_config.h
- $(RM) documentation/*.$(CAT1EXT)
- $(RM) documentation/*.$(CAT3EXT)
- $(RM) documentation/*.$(CAT6EXT)
- $(RM) documentation/fltk.ps
- $(RM) -r documentation/fltk.d
- for file in test/*.fl; do\
- $(RM) test/`basename $$file .fl`.cxx; \
- $(RM) test/`basename $$file .fl`.h; \
- done
- $(RM) -rf autom4te.cache/
- $(RM) configure
-
-fltk-config: configure configh.in fltk-config.in
- if test -f config.status; then \
- ./config.status --recheck; \
- ./config.status; \
- else \
- ./configure; \
- fi
- touch config.h
- chmod +x fltk-config
-
-makeinclude: configure configh.in makeinclude.in
- if test -f config.status; then \
- ./config.status --recheck; \
- ./config.status; \
- else \
- ./configure; \
- fi
- touch config.h
- chmod +x fltk-config
-
-configure: configure.ac
- autoconf
-
-portable-dist:
- epm -v -s fltk.xpm fltk
-
-native-dist:
- epm -v -f native fltk
-
-etags:
- etags FL/*.H FL/*.h src/*.cxx src/*.c src/*.h src/xutf8/*.h src/xutf8/*.c cairo/*.c fluid/*.h fluid/*.cxx test/*.h test/*.cxx
-
-#
-# Run the clang.llvm.org static code analysis tool on the C sources.
-# (at least checker-231 is required for scan-build to work this way)
-#
-
-.PHONY: clang clang-changes
-clang:
- $(RM) -r clang
- scan-build -V -k -o `pwd`/clang $(MAKE) $(MFLAGS) clean all
-clang-changes:
- scan-build -V -k -o `pwd`/clang $(MAKE) $(MFLAGS) all
diff --git a/autogen.sh b/autogen.sh
deleted file mode 100755
index fafb9f19b..000000000
--- a/autogen.sh
+++ /dev/null
@@ -1,20 +0,0 @@
-#! /bin/sh
-#
-# This file is no longer referred to in the documentation, it's kept
-# for backwards compatibility only.
-#
-# Just run `autoconf` instead to generate `configure` and you're done.
-#
-# The old README.Unix.txt stated that it should be executed from within
-# the "FLTK source-code directory", hence changing directories is not
-# useful and would break if the user's home directory contained spaces.
-# Changing directories has been removed in FLTK 1.4.0 and this file
-# has been simplified substantially.
-#
-# Instead of executing it as documented in pre-1.4 README files the new docs
-# instruct to just execute `autoconf` which is sufficient and equivalent to
-# the old instructions.
-
-autoconf --force || exit 1
-
-test -n "$NOCONFIGURE" || ./configure "$@"
diff --git a/cairo/Makefile b/cairo/Makefile
deleted file mode 100644
index a7ca58af5..000000000
--- a/cairo/Makefile
+++ /dev/null
@@ -1,182 +0,0 @@
-#
-# Dummy Cairo Library Makefile for the Fast Light Toolkit (FLTK).
-#
-# Copyright 1997-2009 by Easy Software Products.
-# Copyright 2010-2023 by Bill Spitzak and others.
-#
-# This library is free software. Distribution and use rights are outlined in
-# the file "COPYING" which should have been included with this file. If this
-# file is missing or damaged, see the license at:
-#
-# https://www.fltk.org/COPYING.php
-#
-# Please see the following page on how to report bugs and issues:
-#
-# https://www.fltk.org/bugs.php
-#
-
-########################################################################
-# Note: since FLTK 1.4.0 Fl_Cairo_Window support [1] is included in
-# libfltk and libfltk_cairo is no longer necessary. This directory is
-# used to build an "empty" dummy library for backwards compatibility,
-# just in case users expect it to exist.
-# ----------------------------------------------------------------------
-# The entire 'cairo' folder will be removed in a later FLTK release.
-########################################################################
-
-# Note: see ../configure.in and/or ../makeinclude for definition of
-# FL_VERSION (x.y.z), FL_ABI_VERSION (x.y.0), and FL_DSO_VERSION (x.y)
-
-FLTKFLAGS = -DFL_LIBRARY
-include ../makeinclude
-
-#
-# Object files...
-#
-CAIROCFILES = cairo_dummy.c
-CAIROOBJECTS = $(CAIROCFILES:.c=.o)
-
-#
-# Make all of the targets...
-#
-
-all: $(CAIROLIBNAME) $(CAIRODSONAME)
-
-$(CAIROLIBNAME): $(CAIROOBJECTS)
- echo $(LIBCOMMAND) $@ ...
- $(RM) $@
- $(LIBCOMMAND) $@ $(CAIROOBJECTS)
- $(RANLIB) $@
-
-libfltk_cairo.so.$(FL_DSO_VERSION): $(CAIROOBJECTS) ../src/libfltk.so.$(FL_DSO_VERSION)
- echo $(DSOCOMMAND) $@ ...
- $(DSOCOMMAND) $@ $(CAIROOBJECTS) -L../src -lfltk $(CAIROLIBS)
- $(RM) libfltk_cairo.so
- $(LN) $(CAIRODSONAME) libfltk_cairo.so
-
-libfltk_cairo.sl.$(FL_DSO_VERSION): $(CAIROOBJECTS) ../src/libfltk.sl.$(FL_DSO_VERSION)
- echo $(DSOCOMMAND) $@ ...
- $(DSOCOMMAND) $@ $(CAIROOBJECTS) -L../src -lfltk $(CAIROLIBS)
- $(RM) libfltk_cairo.sl
- $(LN) libfltk_cairo.sl.$(FL_DSO_VERSION) libfltk_cairo.sl
-
-libfltk_cairo.$(FL_DSO_VERSION).dylib: $(CAIROOBJECTS) ../src/libfltk.$(FL_DSO_VERSION).dylib
- echo $(DSOCOMMAND) $@ ...
- $(DSOCOMMAND) $@ \
- -install_name $(libdir)/$@ \
- -current_version $(FL_VERSION) \
- -compatibility_version $(FL_ABI_VERSION) \
- $(CAIROOBJECTS) -L../src $(LDLIBS) $(CAIROLIBS) -lfltk
- $(RM) libfltk_cairo.dylib
- $(LN) libfltk_cairo.$(FL_DSO_VERSION).dylib libfltk_cairo.dylib
-
-libfltk_cairo_s.a: $(CAIROOBJECTS)
- echo $(DSOCOMMAND) libfltk_cairo_s.o ...
- $(DSOCOMMAND) libfltk_cairo_s.o $(CAIROOBJECTS)
- echo $(LIBCOMMAND) libfltk_cairo_s.a src/libfltk_cairo_s.o
- $(RM) $@
- $(LIBCOMMAND) src/libfltk_cairo_s.a src/libfltk_cairo_s.o
- $(CHMOD) +x src/libfltk_cairo_s.a
-
-
-cygfltknox_cairo-$(FL_DSO_VERSION).dll: $(CAIROLIBNAME) ../src/cygfltknox-$(FL_DSO_VERSION).dll
- echo $(DSOCOMMAND) $(CAIROLIBNAME) ...
- $(DSOCOMMAND) $(CAIROLIBNAME) -Wl,--no-whole-archive \
- -Wl,--out-implib=libfltk_cairo.dll.a \
- -L../src -lfltk $(CAIROLIBS) $(LDLIBS)
-
-mgwfltknox_cairo-$(FL_DSO_VERSION).dll: $(CAIROLIBNAME) ../src/mgwfltknox-$(FL_DSO_VERSION).dll
- echo $(DSOCOMMAND) $(CAIROLIBNAME) ...
- $(DSOCOMMAND) $(CAIROLIBNAME) -Wl,--no-whole-archive \
- -Wl,--out-implib=libfltk_cairo.dll.a \
- -L../src -lfltk $(CAIROLIBS) $(LDLIBS)
-
-#
-# Clean all of the targets and object files...
-#
-
-clean:
- -$(RM) *.o *.dll.a core.* *~ *.bak *.bck
- -$(RM) $(CAIROOBJECTS) $(CAIROLIBNAME) $(CAIRODSONAME) \
- libfltk_cairo.so src/libfltk_cairo.sl src/libfltk_cairo.dylib
-
-#
-# Install everything...
-#
-
-install: $(CAIROLIBNAME) $(CAIRODSONAME)
- echo "Installing libfltk_cairo$(LIBEXT) in $(libdir)..."
- -$(INSTALL_DIR) $(DESTDIR)$(libdir)
- $(INSTALL_LIB) $(CAIROLIBNAME) $(DESTDIR)$(libdir)
-
- if test x$(CAIRODSONAME) = xlibfltk_cairo.so.$(FL_DSO_VERSION); then\
- $(RM) $(DESTDIR)$(libdir)/libfltk_cairo.so*;\
- $(INSTALL_LIB) libfltk_cairo.so.$(FL_DSO_VERSION) $(DESTDIR)$(libdir); \
- $(LN) libfltk_cairo.so.$(FL_DSO_VERSION) $(DESTDIR)$(libdir)/libfltk_cairo.so;\
- fi
- if test x$(CAIRODSONAME) = xsrc/libfltk_cairo.sl.$(FL_DSO_VERSION); then\
- $(RM) $(DESTDIR)$(libdir)/libfltk_cairo.sl*;\
- $(INSTALL_LIB) libfltk_cairo.sl.$(FL_DSO_VERSION) $(DESTDIR)$(libdir); \
- $(LN) libfltk_cairo.sl.$(FL_DSO_VERSION) $(DESTDIR)$(libdir)/libfltk_cairo.sl;\
- fi
- if test x$(CAIRODSONAME) = xlibfltk_cairo.$(FL_DSO_VERSION).dylib; then\
- $(RM) $(DESTDIR)$(libdir)/libfltk_cairo.*dylib;\
- $(INSTALL_LIB) libfltk_cairo.$(FL_DSO_VERSION).dylib $(DESTDIR)$(libdir); \
- $(LN) libfltk_cairo.$(FL_DSO_VERSION).dylib $(DESTDIR)$(libdir)/libfltk_cairo.dylib;\
- fi
- if test x$(CAIRODSONAME) = xlibfltk_cairo_s.a; then\
- $(RM) $(DESTDIR)$(libdir)/libfltk_cairo_s.a;\
- $(INSTALL_LIB) libfltk_cairo_s.a $(DESTDIR)$(libdir); \
- fi
- if test x$(CAIRODSONAME) = xcygfltknox_cairo-$(FL_DSO_VERSION).dll; then\
- $(RM) $(DESTDIR)$(bindir)/$(CAIRODSONAME); \
- $(INSTALL_LIB) $(CAIRODSONAME) $(DESTDIR)$(bindir); \
- $(RM) $(DESTDIR)$(libdir)/libfltk_cairo.dll.a;\
- $(INSTALL_LIB) libfltk_cairo.dll.a $(DESTDIR)$(libdir); \
- fi
- if test x$(CAIRODSONAME) = xmgwfltknox_cairo-$(FL_DSO_VERSION).dll; then\
- $(RM) $(DESTDIR)$(bindir)/$(CAIRODSONAME); \
- $(INSTALL_LIB) $(CAIRODSONAME) $(DESTDIR)$(bindir); \
- $(RM) $(DESTDIR)$(libdir)/libfltk_cairo.dll.a;\
- $(INSTALL_LIB) libfltk_cairo.dll.a $(DESTDIR)$(libdir); \
- fi
-#
-# Uninstall everything...
-#
-
-uninstall:
- echo "Uninstalling libfltk_cairo$(LIBEXT) in $(libdir)..."
- if test x$(CAIROLIBNAME) != x; then\
- $(RM) $(DESTDIR)$(libdir)/$(CAIROLIBNAME);\
- fi
- if test x$(CAIRODSONAME) = xlibfltk_cairo.so.$(FL_DSO_VERSION); then\
- $(RM) $(DESTDIR)$(libdir)/libfltk_cairo.so*;\
- fi
- if test x$(CAIRODSONAME) = xlibfltk_cairo.sl.$(FL_DSO_VERSION); then\
- $(RM) $(DESTDIR)$(libdir)/libfltk_cairo.sl*;\
- fi
- if test x$(CAIRODSONAME) = xlibfltk_cairo.$(FL_DSO_VERSION).dylib; then\
- $(RM) $(DESTDIR)$(libdir)/libfltk_cairo.*dylib;\
- fi
- if test x$(CAIRODSONAME) = xlibfltk_cairo_s.a; then\
- $(RM) $(DESTDIR)$(libdir)/libfltk_cairo_s.a;\
- fi
- if test x$(CAIRODSONAME) = xcygfltknox_cairo-$(FL_DSO_VERSION).dll; then\
- $(RM) $(DESTDIR)$(bindir)/$(CAIRODSONAME); \
- $(RM) $(DESTDIR)$(libdir)/libfltk_cairo.dll.a;\
- fi
- if test x$(CAIRODSONAME) = xmgwfltknox_cairo-$(FL_DSO_VERSION).dll; then\
- $(RM) $(DESTDIR)$(bindir)/$(CAIRODSONAME); \
- $(RM) $(DESTDIR)$(libdir)/libfltk_cairo.dll.a;\
- fi
-
-$(CAIROOBJECTS): ../makeinclude
-
-depend: $(CAIROCFILES)
- makedepend -Y -I.. -f makedepend -w 20 $(CAIROCFILES)
- echo "# DO NOT DELETE THIS LINE -- make depend depends on it." > makedepend.tmp
- echo "" >> makedepend.tmp
- grep '^[a-zA-Z]' makedepend | ( LC_ALL=C sort -u -f >> makedepend.tmp; )
- mv makedepend.tmp makedepend
-
-include makedepend
diff --git a/cairo/makedepend b/cairo/makedepend
deleted file mode 100644
index 99be05b37..000000000
--- a/cairo/makedepend
+++ /dev/null
@@ -1,2 +0,0 @@
-# DO NOT DELETE THIS LINE -- make depend depends on it.
-
diff --git a/config.guess b/config.guess
deleted file mode 100755
index 9afd67620..000000000
--- a/config.guess
+++ /dev/null
@@ -1,1568 +0,0 @@
-#! /bin/sh
-# Attempt to guess a canonical system name.
-# Copyright 1992-2013 Free Software Foundation, Inc.
-
-timestamp='2013-11-29'
-
-# This file is free software; you can redistribute it and/or modify it
-# under the terms of the GNU General Public License as published by
-# the Free Software Foundation; either version 3 of the License, or
-# (at your option) any later version.
-#
-# This program 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
-# General Public License for more details.
-#
-# You should have received a copy of the GNU General Public License
-# along with this program; if not, see .
-#
-# As a special exception to the GNU General Public License, if you
-# distribute this file as part of a program that contains a
-# configuration script generated by Autoconf, you may include it under
-# the same distribution terms that you use for the rest of that
-# program. This Exception is an additional permission under section 7
-# of the GNU General Public License, version 3 ("GPLv3").
-#
-# Originally written by Per Bothner.
-#
-# You can get the latest version of this script from:
-# http://git.savannah.gnu.org/gitweb/?p=config.git;a=blob_plain;f=config.guess;hb=HEAD
-#
-# Please send patches with a ChangeLog entry to config-patches@gnu.org.
-
-
-me=`echo "$0" | sed -e 's,.*/,,'`
-
-usage="\
-Usage: $0 [OPTION]
-
-Output the configuration name of the system \`$me' is run on.
-
-Operation modes:
- -h, --help print this help, then exit
- -t, --time-stamp print date of last modification, then exit
- -v, --version print version number, then exit
-
-Report bugs and patches to ."
-
-version="\
-GNU config.guess ($timestamp)
-
-Originally written by Per Bothner.
-Copyright 1992-2013 Free Software Foundation, Inc.
-
-This is free software; see the source for copying conditions. There is NO
-warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE."
-
-help="
-Try \`$me --help' for more information."
-
-# Parse command line
-while test $# -gt 0 ; do
- case $1 in
- --time-stamp | --time* | -t )
- echo "$timestamp" ; exit ;;
- --version | -v )
- echo "$version" ; exit ;;
- --help | --h* | -h )
- echo "$usage"; exit ;;
- -- ) # Stop option processing
- shift; break ;;
- - ) # Use stdin as input.
- break ;;
- -* )
- echo "$me: invalid option $1$help" >&2
- exit 1 ;;
- * )
- break ;;
- esac
-done
-
-if test $# != 0; then
- echo "$me: too many arguments$help" >&2
- exit 1
-fi
-
-trap 'exit 1' 1 2 15
-
-# CC_FOR_BUILD -- compiler used by this script. Note that the use of a
-# compiler to aid in system detection is discouraged as it requires
-# temporary files to be created and, as you can see below, it is a
-# headache to deal with in a portable fashion.
-
-# Historically, `CC_FOR_BUILD' used to be named `HOST_CC'. We still
-# use `HOST_CC' if defined, but it is deprecated.
-
-# Portable tmp directory creation inspired by the Autoconf team.
-
-set_cc_for_build='
-trap "exitcode=\$?; (rm -f \$tmpfiles 2>/dev/null; rmdir \$tmp 2>/dev/null) && exit \$exitcode" 0 ;
-trap "rm -f \$tmpfiles 2>/dev/null; rmdir \$tmp 2>/dev/null; exit 1" 1 2 13 15 ;
-: ${TMPDIR=/tmp} ;
- { tmp=`(umask 077 && mktemp -d "$TMPDIR/cgXXXXXX") 2>/dev/null` && test -n "$tmp" && test -d "$tmp" ; } ||
- { test -n "$RANDOM" && tmp=$TMPDIR/cg$$-$RANDOM && (umask 077 && mkdir $tmp) ; } ||
- { tmp=$TMPDIR/cg-$$ && (umask 077 && mkdir $tmp) && echo "Warning: creating insecure temp directory" >&2 ; } ||
- { echo "$me: cannot create a temporary directory in $TMPDIR" >&2 ; exit 1 ; } ;
-dummy=$tmp/dummy ;
-tmpfiles="$dummy.c $dummy.o $dummy.rel $dummy" ;
-case $CC_FOR_BUILD,$HOST_CC,$CC in
- ,,) echo "int x;" > $dummy.c ;
- for c in cc gcc c89 c99 ; do
- if ($c -c -o $dummy.o $dummy.c) >/dev/null 2>&1 ; then
- CC_FOR_BUILD="$c"; break ;
- fi ;
- done ;
- if test x"$CC_FOR_BUILD" = x ; then
- CC_FOR_BUILD=no_compiler_found ;
- fi
- ;;
- ,,*) CC_FOR_BUILD=$CC ;;
- ,*,*) CC_FOR_BUILD=$HOST_CC ;;
-esac ; set_cc_for_build= ;'
-
-# This is needed to find uname on a Pyramid OSx when run in the BSD universe.
-# (ghazi@noc.rutgers.edu 1994-08-24)
-if (test -f /.attbin/uname) >/dev/null 2>&1 ; then
- PATH=$PATH:/.attbin ; export PATH
-fi
-
-UNAME_MACHINE=`(uname -m) 2>/dev/null` || UNAME_MACHINE=unknown
-UNAME_RELEASE=`(uname -r) 2>/dev/null` || UNAME_RELEASE=unknown
-UNAME_SYSTEM=`(uname -s) 2>/dev/null` || UNAME_SYSTEM=unknown
-UNAME_VERSION=`(uname -v) 2>/dev/null` || UNAME_VERSION=unknown
-
-case "${UNAME_SYSTEM}" in
-Linux|GNU|GNU/*)
- # If the system lacks a compiler, then just pick glibc.
- # We could probably try harder.
- LIBC=gnu
-
- eval $set_cc_for_build
- cat <<-EOF > $dummy.c
- #include
- #if defined(__UCLIBC__)
- LIBC=uclibc
- #elif defined(__dietlibc__)
- LIBC=dietlibc
- #else
- LIBC=gnu
- #endif
- EOF
- eval `$CC_FOR_BUILD -E $dummy.c 2>/dev/null | grep '^LIBC'`
- ;;
-esac
-
-# Note: order is significant - the case branches are not exclusive.
-
-case "${UNAME_MACHINE}:${UNAME_SYSTEM}:${UNAME_RELEASE}:${UNAME_VERSION}" in
- *:NetBSD:*:*)
- # NetBSD (nbsd) targets should (where applicable) match one or
- # more of the tuples: *-*-netbsdelf*, *-*-netbsdaout*,
- # *-*-netbsdecoff* and *-*-netbsd*. For targets that recently
- # switched to ELF, *-*-netbsd* would select the old
- # object file format. This provides both forward
- # compatibility and a consistent mechanism for selecting the
- # object file format.
- #
- # Note: NetBSD doesn't particularly care about the vendor
- # portion of the name. We always set it to "unknown".
- sysctl="sysctl -n hw.machine_arch"
- UNAME_MACHINE_ARCH=`(/sbin/$sysctl 2>/dev/null || \
- /usr/sbin/$sysctl 2>/dev/null || echo unknown)`
- case "${UNAME_MACHINE_ARCH}" in
- armeb) machine=armeb-unknown ;;
- arm*) machine=arm-unknown ;;
- sh3el) machine=shl-unknown ;;
- sh3eb) machine=sh-unknown ;;
- sh5el) machine=sh5le-unknown ;;
- *) machine=${UNAME_MACHINE_ARCH}-unknown ;;
- esac
- # The Operating System including object format, if it has switched
- # to ELF recently, or will in the future.
- case "${UNAME_MACHINE_ARCH}" in
- arm*|i386|m68k|ns32k|sh3*|sparc|vax)
- eval $set_cc_for_build
- if echo __ELF__ | $CC_FOR_BUILD -E - 2>/dev/null \
- | grep -q __ELF__
- then
- # Once all utilities can be ECOFF (netbsdecoff) or a.out (netbsdaout).
- # Return netbsd for either. FIX?
- os=netbsd
- else
- os=netbsdelf
- fi
- ;;
- *)
- os=netbsd
- ;;
- esac
- # The OS release
- # Debian GNU/NetBSD machines have a different userland, and
- # thus, need a distinct triplet. However, they do not need
- # kernel version information, so it can be replaced with a
- # suitable tag, in the style of linux-gnu.
- case "${UNAME_VERSION}" in
- Debian*)
- release='-gnu'
- ;;
- *)
- release=`echo ${UNAME_RELEASE}|sed -e 's/[-_].*/\./'`
- ;;
- esac
- # Since CPU_TYPE-MANUFACTURER-KERNEL-OPERATING_SYSTEM:
- # contains redundant information, the shorter form:
- # CPU_TYPE-MANUFACTURER-OPERATING_SYSTEM is used.
- echo "${machine}-${os}${release}"
- exit ;;
- *:Bitrig:*:*)
- UNAME_MACHINE_ARCH=`arch | sed 's/Bitrig.//'`
- echo ${UNAME_MACHINE_ARCH}-unknown-bitrig${UNAME_RELEASE}
- exit ;;
- *:OpenBSD:*:*)
- UNAME_MACHINE_ARCH=`arch | sed 's/OpenBSD.//'`
- echo ${UNAME_MACHINE_ARCH}-unknown-openbsd${UNAME_RELEASE}
- exit ;;
- *:ekkoBSD:*:*)
- echo ${UNAME_MACHINE}-unknown-ekkobsd${UNAME_RELEASE}
- exit ;;
- *:SolidBSD:*:*)
- echo ${UNAME_MACHINE}-unknown-solidbsd${UNAME_RELEASE}
- exit ;;
- macppc:MirBSD:*:*)
- echo powerpc-unknown-mirbsd${UNAME_RELEASE}
- exit ;;
- *:MirBSD:*:*)
- echo ${UNAME_MACHINE}-unknown-mirbsd${UNAME_RELEASE}
- exit ;;
- alpha:OSF1:*:*)
- case $UNAME_RELEASE in
- *4.0)
- UNAME_RELEASE=`/usr/sbin/sizer -v | awk '{print $3}'`
- ;;
- *5.*)
- UNAME_RELEASE=`/usr/sbin/sizer -v | awk '{print $4}'`
- ;;
- esac
- # According to Compaq, /usr/sbin/psrinfo has been available on
- # OSF/1 and Tru64 systems produced since 1995. I hope that
- # covers most systems running today. This code pipes the CPU
- # types through head -n 1, so we only detect the type of CPU 0.
- ALPHA_CPU_TYPE=`/usr/sbin/psrinfo -v | sed -n -e 's/^ The alpha \(.*\) processor.*$/\1/p' | head -n 1`
- case "$ALPHA_CPU_TYPE" in
- "EV4 (21064)")
- UNAME_MACHINE="alpha" ;;
- "EV4.5 (21064)")
- UNAME_MACHINE="alpha" ;;
- "LCA4 (21066/21068)")
- UNAME_MACHINE="alpha" ;;
- "EV5 (21164)")
- UNAME_MACHINE="alphaev5" ;;
- "EV5.6 (21164A)")
- UNAME_MACHINE="alphaev56" ;;
- "EV5.6 (21164PC)")
- UNAME_MACHINE="alphapca56" ;;
- "EV5.7 (21164PC)")
- UNAME_MACHINE="alphapca57" ;;
- "EV6 (21264)")
- UNAME_MACHINE="alphaev6" ;;
- "EV6.7 (21264A)")
- UNAME_MACHINE="alphaev67" ;;
- "EV6.8CB (21264C)")
- UNAME_MACHINE="alphaev68" ;;
- "EV6.8AL (21264B)")
- UNAME_MACHINE="alphaev68" ;;
- "EV6.8CX (21264D)")
- UNAME_MACHINE="alphaev68" ;;
- "EV6.9A (21264/EV69A)")
- UNAME_MACHINE="alphaev69" ;;
- "EV7 (21364)")
- UNAME_MACHINE="alphaev7" ;;
- "EV7.9 (21364A)")
- UNAME_MACHINE="alphaev79" ;;
- esac
- # A Pn.n version is a patched version.
- # A Vn.n version is a released version.
- # A Tn.n version is a released field test version.
- # A Xn.n version is an unreleased experimental baselevel.
- # 1.2 uses "1.2" for uname -r.
- echo ${UNAME_MACHINE}-dec-osf`echo ${UNAME_RELEASE} | sed -e 's/^[PVTX]//' | tr 'ABCDEFGHIJKLMNOPQRSTUVWXYZ' 'abcdefghijklmnopqrstuvwxyz'`
- # Reset EXIT trap before exiting to avoid spurious non-zero exit code.
- exitcode=$?
- trap '' 0
- exit $exitcode ;;
- Alpha\ *:Windows_NT*:*)
- # How do we know it's Interix rather than the generic POSIX subsystem?
- # Should we change UNAME_MACHINE based on the output of uname instead
- # of the specific Alpha model?
- echo alpha-pc-interix
- exit ;;
- 21064:Windows_NT:50:3)
- echo alpha-dec-winnt3.5
- exit ;;
- Amiga*:UNIX_System_V:4.0:*)
- echo m68k-unknown-sysv4
- exit ;;
- *:[Aa]miga[Oo][Ss]:*:*)
- echo ${UNAME_MACHINE}-unknown-amigaos
- exit ;;
- *:[Mm]orph[Oo][Ss]:*:*)
- echo ${UNAME_MACHINE}-unknown-morphos
- exit ;;
- *:OS/390:*:*)
- echo i370-ibm-openedition
- exit ;;
- *:z/VM:*:*)
- echo s390-ibm-zvmoe
- exit ;;
- *:OS400:*:*)
- echo powerpc-ibm-os400
- exit ;;
- arm:RISC*:1.[012]*:*|arm:riscix:1.[012]*:*)
- echo arm-acorn-riscix${UNAME_RELEASE}
- exit ;;
- arm*:riscos:*:*|arm*:RISCOS:*:*)
- echo arm-unknown-riscos
- exit ;;
- SR2?01:HI-UX/MPP:*:* | SR8000:HI-UX/MPP:*:*)
- echo hppa1.1-hitachi-hiuxmpp
- exit ;;
- Pyramid*:OSx*:*:* | MIS*:OSx*:*:* | MIS*:SMP_DC-OSx*:*:*)
- # akee@wpdis03.wpafb.af.mil (Earle F. Ake) contributed MIS and NILE.
- if test "`(/bin/universe) 2>/dev/null`" = att ; then
- echo pyramid-pyramid-sysv3
- else
- echo pyramid-pyramid-bsd
- fi
- exit ;;
- NILE*:*:*:dcosx)
- echo pyramid-pyramid-svr4
- exit ;;
- DRS?6000:unix:4.0:6*)
- echo sparc-icl-nx6
- exit ;;
- DRS?6000:UNIX_SV:4.2*:7* | DRS?6000:isis:4.2*:7*)
- case `/usr/bin/uname -p` in
- sparc) echo sparc-icl-nx7; exit ;;
- esac ;;
- s390x:SunOS:*:*)
- echo ${UNAME_MACHINE}-ibm-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'`
- exit ;;
- sun4H:SunOS:5.*:*)
- echo sparc-hal-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'`
- exit ;;
- sun4*:SunOS:5.*:* | tadpole*:SunOS:5.*:*)
- echo sparc-sun-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'`
- exit ;;
- i86pc:AuroraUX:5.*:* | i86xen:AuroraUX:5.*:*)
- echo i386-pc-auroraux${UNAME_RELEASE}
- exit ;;
- i86pc:SunOS:5.*:* | i86xen:SunOS:5.*:*)
- eval $set_cc_for_build
- SUN_ARCH="i386"
- # If there is a compiler, see if it is configured for 64-bit objects.
- # Note that the Sun cc does not turn __LP64__ into 1 like gcc does.
- # This test works for both compilers.
- if [ "$CC_FOR_BUILD" != 'no_compiler_found' ]; then
- if (echo '#ifdef __amd64'; echo IS_64BIT_ARCH; echo '#endif') | \
- (CCOPTS= $CC_FOR_BUILD -E - 2>/dev/null) | \
- grep IS_64BIT_ARCH >/dev/null
- then
- SUN_ARCH="x86_64"
- fi
- fi
- echo ${SUN_ARCH}-pc-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'`
- exit ;;
- sun4*:SunOS:6*:*)
- # According to config.sub, this is the proper way to canonicalize
- # SunOS6. Hard to guess exactly what SunOS6 will be like, but
- # it's likely to be more like Solaris than SunOS4.
- echo sparc-sun-solaris3`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'`
- exit ;;
- sun4*:SunOS:*:*)
- case "`/usr/bin/arch -k`" in
- Series*|S4*)
- UNAME_RELEASE=`uname -v`
- ;;
- esac
- # Japanese Language versions have a version number like `4.1.3-JL'.
- echo sparc-sun-sunos`echo ${UNAME_RELEASE}|sed -e 's/-/_/'`
- exit ;;
- sun3*:SunOS:*:*)
- echo m68k-sun-sunos${UNAME_RELEASE}
- exit ;;
- sun*:*:4.2BSD:*)
- UNAME_RELEASE=`(sed 1q /etc/motd | awk '{print substr($5,1,3)}') 2>/dev/null`
- test "x${UNAME_RELEASE}" = "x" && UNAME_RELEASE=3
- case "`/bin/arch`" in
- sun3)
- echo m68k-sun-sunos${UNAME_RELEASE}
- ;;
- sun4)
- echo sparc-sun-sunos${UNAME_RELEASE}
- ;;
- esac
- exit ;;
- aushp:SunOS:*:*)
- echo sparc-auspex-sunos${UNAME_RELEASE}
- exit ;;
- # The situation for MiNT is a little confusing. The machine name
- # can be virtually everything (everything which is not
- # "atarist" or "atariste" at least should have a processor
- # > m68000). The system name ranges from "MiNT" over "FreeMiNT"
- # to the lowercase version "mint" (or "freemint"). Finally
- # the system name "TOS" denotes a system which is actually not
- # MiNT. But MiNT is downward compatible to TOS, so this should
- # be no problem.
- atarist[e]:*MiNT:*:* | atarist[e]:*mint:*:* | atarist[e]:*TOS:*:*)
- echo m68k-atari-mint${UNAME_RELEASE}
- exit ;;
- atari*:*MiNT:*:* | atari*:*mint:*:* | atarist[e]:*TOS:*:*)
- echo m68k-atari-mint${UNAME_RELEASE}
- exit ;;
- *falcon*:*MiNT:*:* | *falcon*:*mint:*:* | *falcon*:*TOS:*:*)
- echo m68k-atari-mint${UNAME_RELEASE}
- exit ;;
- milan*:*MiNT:*:* | milan*:*mint:*:* | *milan*:*TOS:*:*)
- echo m68k-milan-mint${UNAME_RELEASE}
- exit ;;
- hades*:*MiNT:*:* | hades*:*mint:*:* | *hades*:*TOS:*:*)
- echo m68k-hades-mint${UNAME_RELEASE}
- exit ;;
- *:*MiNT:*:* | *:*mint:*:* | *:*TOS:*:*)
- echo m68k-unknown-mint${UNAME_RELEASE}
- exit ;;
- m68k:machten:*:*)
- echo m68k-apple-machten${UNAME_RELEASE}
- exit ;;
- powerpc:machten:*:*)
- echo powerpc-apple-machten${UNAME_RELEASE}
- exit ;;
- RISC*:Mach:*:*)
- echo mips-dec-mach_bsd4.3
- exit ;;
- RISC*:ULTRIX:*:*)
- echo mips-dec-ultrix${UNAME_RELEASE}
- exit ;;
- VAX*:ULTRIX*:*:*)
- echo vax-dec-ultrix${UNAME_RELEASE}
- exit ;;
- 2020:CLIX:*:* | 2430:CLIX:*:*)
- echo clipper-intergraph-clix${UNAME_RELEASE}
- exit ;;
- mips:*:*:UMIPS | mips:*:*:RISCos)
- eval $set_cc_for_build
- sed 's/^ //' << EOF >$dummy.c
-#ifdef __cplusplus
-#include /* for printf() prototype */
- int main (int argc, char *argv[]) {
-#else
- int main (argc, argv) int argc; char *argv[]; {
-#endif
- #if defined (host_mips) && defined (MIPSEB)
- #if defined (SYSTYPE_SYSV)
- printf ("mips-mips-riscos%ssysv\n", argv[1]); exit (0);
- #endif
- #if defined (SYSTYPE_SVR4)
- printf ("mips-mips-riscos%ssvr4\n", argv[1]); exit (0);
- #endif
- #if defined (SYSTYPE_BSD43) || defined(SYSTYPE_BSD)
- printf ("mips-mips-riscos%sbsd\n", argv[1]); exit (0);
- #endif
- #endif
- exit (-1);
- }
-EOF
- $CC_FOR_BUILD -o $dummy $dummy.c &&
- dummyarg=`echo "${UNAME_RELEASE}" | sed -n 's/\([0-9]*\).*/\1/p'` &&
- SYSTEM_NAME=`$dummy $dummyarg` &&
- { echo "$SYSTEM_NAME"; exit; }
- echo mips-mips-riscos${UNAME_RELEASE}
- exit ;;
- Motorola:PowerMAX_OS:*:*)
- echo powerpc-motorola-powermax
- exit ;;
- Motorola:*:4.3:PL8-*)
- echo powerpc-harris-powermax
- exit ;;
- Night_Hawk:*:*:PowerMAX_OS | Synergy:PowerMAX_OS:*:*)
- echo powerpc-harris-powermax
- exit ;;
- Night_Hawk:Power_UNIX:*:*)
- echo powerpc-harris-powerunix
- exit ;;
- m88k:CX/UX:7*:*)
- echo m88k-harris-cxux7
- exit ;;
- m88k:*:4*:R4*)
- echo m88k-motorola-sysv4
- exit ;;
- m88k:*:3*:R3*)
- echo m88k-motorola-sysv3
- exit ;;
- AViiON:dgux:*:*)
- # DG/UX returns AViiON for all architectures
- UNAME_PROCESSOR=`/usr/bin/uname -p`
- if [ $UNAME_PROCESSOR = mc88100 ] || [ $UNAME_PROCESSOR = mc88110 ]
- then
- if [ ${TARGET_BINARY_INTERFACE}x = m88kdguxelfx ] || \
- [ ${TARGET_BINARY_INTERFACE}x = x ]
- then
- echo m88k-dg-dgux${UNAME_RELEASE}
- else
- echo m88k-dg-dguxbcs${UNAME_RELEASE}
- fi
- else
- echo i586-dg-dgux${UNAME_RELEASE}
- fi
- exit ;;
- M88*:DolphinOS:*:*) # DolphinOS (SVR3)
- echo m88k-dolphin-sysv3
- exit ;;
- M88*:*:R3*:*)
- # Delta 88k system running SVR3
- echo m88k-motorola-sysv3
- exit ;;
- XD88*:*:*:*) # Tektronix XD88 system running UTekV (SVR3)
- echo m88k-tektronix-sysv3
- exit ;;
- Tek43[0-9][0-9]:UTek:*:*) # Tektronix 4300 system running UTek (BSD)
- echo m68k-tektronix-bsd
- exit ;;
- *:IRIX*:*:*)
- echo mips-sgi-irix`echo ${UNAME_RELEASE}|sed -e 's/-/_/g'`
- exit ;;
- ????????:AIX?:[12].1:2) # AIX 2.2.1 or AIX 2.1.1 is RT/PC AIX.
- echo romp-ibm-aix # uname -m gives an 8 hex-code CPU id
- exit ;; # Note that: echo "'`uname -s`'" gives 'AIX '
- i*86:AIX:*:*)
- echo i386-ibm-aix
- exit ;;
- ia64:AIX:*:*)
- if [ -x /usr/bin/oslevel ] ; then
- IBM_REV=`/usr/bin/oslevel`
- else
- IBM_REV=${UNAME_VERSION}.${UNAME_RELEASE}
- fi
- echo ${UNAME_MACHINE}-ibm-aix${IBM_REV}
- exit ;;
- *:AIX:2:3)
- if grep bos325 /usr/include/stdio.h >/dev/null 2>&1; then
- eval $set_cc_for_build
- sed 's/^ //' << EOF >$dummy.c
- #include
-
- main()
- {
- if (!__power_pc())
- exit(1);
- puts("powerpc-ibm-aix3.2.5");
- exit(0);
- }
-EOF
- if $CC_FOR_BUILD -o $dummy $dummy.c && SYSTEM_NAME=`$dummy`
- then
- echo "$SYSTEM_NAME"
- else
- echo rs6000-ibm-aix3.2.5
- fi
- elif grep bos324 /usr/include/stdio.h >/dev/null 2>&1; then
- echo rs6000-ibm-aix3.2.4
- else
- echo rs6000-ibm-aix3.2
- fi
- exit ;;
- *:AIX:*:[4567])
- IBM_CPU_ID=`/usr/sbin/lsdev -C -c processor -S available | sed 1q | awk '{ print $1 }'`
- if /usr/sbin/lsattr -El ${IBM_CPU_ID} | grep ' POWER' >/dev/null 2>&1; then
- IBM_ARCH=rs6000
- else
- IBM_ARCH=powerpc
- fi
- if [ -x /usr/bin/oslevel ] ; then
- IBM_REV=`/usr/bin/oslevel`
- else
- IBM_REV=${UNAME_VERSION}.${UNAME_RELEASE}
- fi
- echo ${IBM_ARCH}-ibm-aix${IBM_REV}
- exit ;;
- *:AIX:*:*)
- echo rs6000-ibm-aix
- exit ;;
- ibmrt:4.4BSD:*|romp-ibm:BSD:*)
- echo romp-ibm-bsd4.4
- exit ;;
- ibmrt:*BSD:*|romp-ibm:BSD:*) # covers RT/PC BSD and
- echo romp-ibm-bsd${UNAME_RELEASE} # 4.3 with uname added to
- exit ;; # report: romp-ibm BSD 4.3
- *:BOSX:*:*)
- echo rs6000-bull-bosx
- exit ;;
- DPX/2?00:B.O.S.:*:*)
- echo m68k-bull-sysv3
- exit ;;
- 9000/[34]??:4.3bsd:1.*:*)
- echo m68k-hp-bsd
- exit ;;
- hp300:4.4BSD:*:* | 9000/[34]??:4.3bsd:2.*:*)
- echo m68k-hp-bsd4.4
- exit ;;
- 9000/[34678]??:HP-UX:*:*)
- HPUX_REV=`echo ${UNAME_RELEASE}|sed -e 's/[^.]*.[0B]*//'`
- case "${UNAME_MACHINE}" in
- 9000/31? ) HP_ARCH=m68000 ;;
- 9000/[34]?? ) HP_ARCH=m68k ;;
- 9000/[678][0-9][0-9])
- if [ -x /usr/bin/getconf ]; then
- sc_cpu_version=`/usr/bin/getconf SC_CPU_VERSION 2>/dev/null`
- sc_kernel_bits=`/usr/bin/getconf SC_KERNEL_BITS 2>/dev/null`
- case "${sc_cpu_version}" in
- 523) HP_ARCH="hppa1.0" ;; # CPU_PA_RISC1_0
- 528) HP_ARCH="hppa1.1" ;; # CPU_PA_RISC1_1
- 532) # CPU_PA_RISC2_0
- case "${sc_kernel_bits}" in
- 32) HP_ARCH="hppa2.0n" ;;
- 64) HP_ARCH="hppa2.0w" ;;
- '') HP_ARCH="hppa2.0" ;; # HP-UX 10.20
- esac ;;
- esac
- fi
- if [ "${HP_ARCH}" = "" ]; then
- eval $set_cc_for_build
- sed 's/^ //' << EOF >$dummy.c
-
- #define _HPUX_SOURCE
- #include
- #include
-
- int main ()
- {
- #if defined(_SC_KERNEL_BITS)
- long bits = sysconf(_SC_KERNEL_BITS);
- #endif
- long cpu = sysconf (_SC_CPU_VERSION);
-
- switch (cpu)
- {
- case CPU_PA_RISC1_0: puts ("hppa1.0"); break;
- case CPU_PA_RISC1_1: puts ("hppa1.1"); break;
- case CPU_PA_RISC2_0:
- #if defined(_SC_KERNEL_BITS)
- switch (bits)
- {
- case 64: puts ("hppa2.0w"); break;
- case 32: puts ("hppa2.0n"); break;
- default: puts ("hppa2.0"); break;
- } break;
- #else /* !defined(_SC_KERNEL_BITS) */
- puts ("hppa2.0"); break;
- #endif
- default: puts ("hppa1.0"); break;
- }
- exit (0);
- }
-EOF
- (CCOPTS= $CC_FOR_BUILD -o $dummy $dummy.c 2>/dev/null) && HP_ARCH=`$dummy`
- test -z "$HP_ARCH" && HP_ARCH=hppa
- fi ;;
- esac
- if [ ${HP_ARCH} = "hppa2.0w" ]
- then
- eval $set_cc_for_build
-
- # hppa2.0w-hp-hpux* has a 64-bit kernel and a compiler generating
- # 32-bit code. hppa64-hp-hpux* has the same kernel and a compiler
- # generating 64-bit code. GNU and HP use different nomenclature:
- #
- # $ CC_FOR_BUILD=cc ./config.guess
- # => hppa2.0w-hp-hpux11.23
- # $ CC_FOR_BUILD="cc +DA2.0w" ./config.guess
- # => hppa64-hp-hpux11.23
-
- if echo __LP64__ | (CCOPTS= $CC_FOR_BUILD -E - 2>/dev/null) |
- grep -q __LP64__
- then
- HP_ARCH="hppa2.0w"
- else
- HP_ARCH="hppa64"
- fi
- fi
- echo ${HP_ARCH}-hp-hpux${HPUX_REV}
- exit ;;
- ia64:HP-UX:*:*)
- HPUX_REV=`echo ${UNAME_RELEASE}|sed -e 's/[^.]*.[0B]*//'`
- echo ia64-hp-hpux${HPUX_REV}
- exit ;;
- 3050*:HI-UX:*:*)
- eval $set_cc_for_build
- sed 's/^ //' << EOF >$dummy.c
- #include
- int
- main ()
- {
- long cpu = sysconf (_SC_CPU_VERSION);
- /* The order matters, because CPU_IS_HP_MC68K erroneously returns
- true for CPU_PA_RISC1_0. CPU_IS_PA_RISC returns correct
- results, however. */
- if (CPU_IS_PA_RISC (cpu))
- {
- switch (cpu)
- {
- case CPU_PA_RISC1_0: puts ("hppa1.0-hitachi-hiuxwe2"); break;
- case CPU_PA_RISC1_1: puts ("hppa1.1-hitachi-hiuxwe2"); break;
- case CPU_PA_RISC2_0: puts ("hppa2.0-hitachi-hiuxwe2"); break;
- default: puts ("hppa-hitachi-hiuxwe2"); break;
- }
- }
- else if (CPU_IS_HP_MC68K (cpu))
- puts ("m68k-hitachi-hiuxwe2");
- else puts ("unknown-hitachi-hiuxwe2");
- exit (0);
- }
-EOF
- $CC_FOR_BUILD -o $dummy $dummy.c && SYSTEM_NAME=`$dummy` &&
- { echo "$SYSTEM_NAME"; exit; }
- echo unknown-hitachi-hiuxwe2
- exit ;;
- 9000/7??:4.3bsd:*:* | 9000/8?[79]:4.3bsd:*:* )
- echo hppa1.1-hp-bsd
- exit ;;
- 9000/8??:4.3bsd:*:*)
- echo hppa1.0-hp-bsd
- exit ;;
- *9??*:MPE/iX:*:* | *3000*:MPE/iX:*:*)
- echo hppa1.0-hp-mpeix
- exit ;;
- hp7??:OSF1:*:* | hp8?[79]:OSF1:*:* )
- echo hppa1.1-hp-osf
- exit ;;
- hp8??:OSF1:*:*)
- echo hppa1.0-hp-osf
- exit ;;
- i*86:OSF1:*:*)
- if [ -x /usr/sbin/sysversion ] ; then
- echo ${UNAME_MACHINE}-unknown-osf1mk
- else
- echo ${UNAME_MACHINE}-unknown-osf1
- fi
- exit ;;
- parisc*:Lites*:*:*)
- echo hppa1.1-hp-lites
- exit ;;
- C1*:ConvexOS:*:* | convex:ConvexOS:C1*:*)
- echo c1-convex-bsd
- exit ;;
- C2*:ConvexOS:*:* | convex:ConvexOS:C2*:*)
- if getsysinfo -f scalar_acc
- then echo c32-convex-bsd
- else echo c2-convex-bsd
- fi
- exit ;;
- C34*:ConvexOS:*:* | convex:ConvexOS:C34*:*)
- echo c34-convex-bsd
- exit ;;
- C38*:ConvexOS:*:* | convex:ConvexOS:C38*:*)
- echo c38-convex-bsd
- exit ;;
- C4*:ConvexOS:*:* | convex:ConvexOS:C4*:*)
- echo c4-convex-bsd
- exit ;;
- CRAY*Y-MP:*:*:*)
- echo ymp-cray-unicos${UNAME_RELEASE} | sed -e 's/\.[^.]*$/.X/'
- exit ;;
- CRAY*[A-Z]90:*:*:*)
- echo ${UNAME_MACHINE}-cray-unicos${UNAME_RELEASE} \
- | sed -e 's/CRAY.*\([A-Z]90\)/\1/' \
- -e y/ABCDEFGHIJKLMNOPQRSTUVWXYZ/abcdefghijklmnopqrstuvwxyz/ \
- -e 's/\.[^.]*$/.X/'
- exit ;;
- CRAY*TS:*:*:*)
- echo t90-cray-unicos${UNAME_RELEASE} | sed -e 's/\.[^.]*$/.X/'
- exit ;;
- CRAY*T3E:*:*:*)
- echo alphaev5-cray-unicosmk${UNAME_RELEASE} | sed -e 's/\.[^.]*$/.X/'
- exit ;;
- CRAY*SV1:*:*:*)
- echo sv1-cray-unicos${UNAME_RELEASE} | sed -e 's/\.[^.]*$/.X/'
- exit ;;
- *:UNICOS/mp:*:*)
- echo craynv-cray-unicosmp${UNAME_RELEASE} | sed -e 's/\.[^.]*$/.X/'
- exit ;;
- F30[01]:UNIX_System_V:*:* | F700:UNIX_System_V:*:*)
- FUJITSU_PROC=`uname -m | tr 'ABCDEFGHIJKLMNOPQRSTUVWXYZ' 'abcdefghijklmnopqrstuvwxyz'`
- FUJITSU_SYS=`uname -p | tr 'ABCDEFGHIJKLMNOPQRSTUVWXYZ' 'abcdefghijklmnopqrstuvwxyz' | sed -e 's/\///'`
- FUJITSU_REL=`echo ${UNAME_RELEASE} | sed -e 's/ /_/'`
- echo "${FUJITSU_PROC}-fujitsu-${FUJITSU_SYS}${FUJITSU_REL}"
- exit ;;
- 5000:UNIX_System_V:4.*:*)
- FUJITSU_SYS=`uname -p | tr 'ABCDEFGHIJKLMNOPQRSTUVWXYZ' 'abcdefghijklmnopqrstuvwxyz' | sed -e 's/\///'`
- FUJITSU_REL=`echo ${UNAME_RELEASE} | tr 'ABCDEFGHIJKLMNOPQRSTUVWXYZ' 'abcdefghijklmnopqrstuvwxyz' | sed -e 's/ /_/'`
- echo "sparc-fujitsu-${FUJITSU_SYS}${FUJITSU_REL}"
- exit ;;
- i*86:BSD/386:*:* | i*86:BSD/OS:*:* | *:Ascend\ Embedded/OS:*:*)
- echo ${UNAME_MACHINE}-pc-bsdi${UNAME_RELEASE}
- exit ;;
- sparc*:BSD/OS:*:*)
- echo sparc-unknown-bsdi${UNAME_RELEASE}
- exit ;;
- *:BSD/OS:*:*)
- echo ${UNAME_MACHINE}-unknown-bsdi${UNAME_RELEASE}
- exit ;;
- *:FreeBSD:*:*)
- UNAME_PROCESSOR=`/usr/bin/uname -p`
- case ${UNAME_PROCESSOR} in
- amd64)
- echo x86_64-unknown-freebsd`echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'` ;;
- *)
- echo ${UNAME_PROCESSOR}-unknown-freebsd`echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'` ;;
- esac
- exit ;;
- i*:CYGWIN*:*)
- echo ${UNAME_MACHINE}-pc-cygwin
- exit ;;
- *:MINGW64*:*)
- echo ${UNAME_MACHINE}-pc-mingw64
- exit ;;
- *:MINGW*:*)
- echo ${UNAME_MACHINE}-pc-mingw32
- exit ;;
- i*:MSYS*:*)
- echo ${UNAME_MACHINE}-pc-msys
- exit ;;
- i*:windows32*:*)
- # uname -m includes "-pc" on this system.
- echo ${UNAME_MACHINE}-mingw32
- exit ;;
- i*:PW*:*)
- echo ${UNAME_MACHINE}-pc-pw32
- exit ;;
- *:Interix*:*)
- case ${UNAME_MACHINE} in
- x86)
- echo i586-pc-interix${UNAME_RELEASE}
- exit ;;
- authenticamd | genuineintel | EM64T)
- echo x86_64-unknown-interix${UNAME_RELEASE}
- exit ;;
- IA64)
- echo ia64-unknown-interix${UNAME_RELEASE}
- exit ;;
- esac ;;
- [345]86:Windows_95:* | [345]86:Windows_98:* | [345]86:Windows_NT:*)
- echo i${UNAME_MACHINE}-pc-mks
- exit ;;
- 8664:Windows_NT:*)
- echo x86_64-pc-mks
- exit ;;
- i*:Windows_NT*:* | Pentium*:Windows_NT*:*)
- # How do we know it's Interix rather than the generic POSIX subsystem?
- # It also conflicts with pre-2.0 versions of AT&T UWIN. Should we
- # UNAME_MACHINE based on the output of uname instead of i386?
- echo i586-pc-interix
- exit ;;
- i*:UWIN*:*)
- echo ${UNAME_MACHINE}-pc-uwin
- exit ;;
- amd64:CYGWIN*:*:* | x86_64:CYGWIN*:*:*)
- echo x86_64-unknown-cygwin
- exit ;;
- p*:CYGWIN*:*)
- echo powerpcle-unknown-cygwin
- exit ;;
- prep*:SunOS:5.*:*)
- echo powerpcle-unknown-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'`
- exit ;;
- *:GNU:*:*)
- # the GNU system
- echo `echo ${UNAME_MACHINE}|sed -e 's,[-/].*$,,'`-unknown-${LIBC}`echo ${UNAME_RELEASE}|sed -e 's,/.*$,,'`
- exit ;;
- *:GNU/*:*:*)
- # other systems with GNU libc and userland
- echo ${UNAME_MACHINE}-unknown-`echo ${UNAME_SYSTEM} | sed 's,^[^/]*/,,' | tr '[A-Z]' '[a-z]'``echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'`-${LIBC}
- exit ;;
- i*86:Minix:*:*)
- echo ${UNAME_MACHINE}-pc-minix
- exit ;;
- aarch64:Linux:*:*)
- echo ${UNAME_MACHINE}-unknown-linux-${LIBC}
- exit ;;
- aarch64_be:Linux:*:*)
- UNAME_MACHINE=aarch64_be
- echo ${UNAME_MACHINE}-unknown-linux-${LIBC}
- exit ;;
- alpha:Linux:*:*)
- case `sed -n '/^cpu model/s/^.*: \(.*\)/\1/p' < /proc/cpuinfo` in
- EV5) UNAME_MACHINE=alphaev5 ;;
- EV56) UNAME_MACHINE=alphaev56 ;;
- PCA56) UNAME_MACHINE=alphapca56 ;;
- PCA57) UNAME_MACHINE=alphapca56 ;;
- EV6) UNAME_MACHINE=alphaev6 ;;
- EV67) UNAME_MACHINE=alphaev67 ;;
- EV68*) UNAME_MACHINE=alphaev68 ;;
- esac
- objdump --private-headers /bin/sh | grep -q ld.so.1
- if test "$?" = 0 ; then LIBC="gnulibc1" ; fi
- echo ${UNAME_MACHINE}-unknown-linux-${LIBC}
- exit ;;
- arc:Linux:*:* | arceb:Linux:*:*)
- echo ${UNAME_MACHINE}-unknown-linux-${LIBC}
- exit ;;
- arm*:Linux:*:*)
- eval $set_cc_for_build
- if echo __ARM_EABI__ | $CC_FOR_BUILD -E - 2>/dev/null \
- | grep -q __ARM_EABI__
- then
- echo ${UNAME_MACHINE}-unknown-linux-${LIBC}
- else
- if echo __ARM_PCS_VFP | $CC_FOR_BUILD -E - 2>/dev/null \
- | grep -q __ARM_PCS_VFP
- then
- echo ${UNAME_MACHINE}-unknown-linux-${LIBC}eabi
- else
- echo ${UNAME_MACHINE}-unknown-linux-${LIBC}eabihf
- fi
- fi
- exit ;;
- avr32*:Linux:*:*)
- echo ${UNAME_MACHINE}-unknown-linux-${LIBC}
- exit ;;
- cris:Linux:*:*)
- echo ${UNAME_MACHINE}-axis-linux-${LIBC}
- exit ;;
- crisv32:Linux:*:*)
- echo ${UNAME_MACHINE}-axis-linux-${LIBC}
- exit ;;
- frv:Linux:*:*)
- echo ${UNAME_MACHINE}-unknown-linux-${LIBC}
- exit ;;
- hexagon:Linux:*:*)
- echo ${UNAME_MACHINE}-unknown-linux-${LIBC}
- exit ;;
- i*86:Linux:*:*)
- echo ${UNAME_MACHINE}-pc-linux-${LIBC}
- exit ;;
- ia64:Linux:*:*)
- echo ${UNAME_MACHINE}-unknown-linux-${LIBC}
- exit ;;
- m32r*:Linux:*:*)
- echo ${UNAME_MACHINE}-unknown-linux-${LIBC}
- exit ;;
- m68*:Linux:*:*)
- echo ${UNAME_MACHINE}-unknown-linux-${LIBC}
- exit ;;
- mips:Linux:*:* | mips64:Linux:*:*)
- eval $set_cc_for_build
- sed 's/^ //' << EOF >$dummy.c
- #undef CPU
- #undef ${UNAME_MACHINE}
- #undef ${UNAME_MACHINE}el
- #if defined(__MIPSEL__) || defined(__MIPSEL) || defined(_MIPSEL) || defined(MIPSEL)
- CPU=${UNAME_MACHINE}el
- #else
- #if defined(__MIPSEB__) || defined(__MIPSEB) || defined(_MIPSEB) || defined(MIPSEB)
- CPU=${UNAME_MACHINE}
- #else
- CPU=
- #endif
- #endif
-EOF
- eval `$CC_FOR_BUILD -E $dummy.c 2>/dev/null | grep '^CPU'`
- test x"${CPU}" != x && { echo "${CPU}-unknown-linux-${LIBC}"; exit; }
- ;;
- or1k:Linux:*:*)
- echo ${UNAME_MACHINE}-unknown-linux-${LIBC}
- exit ;;
- or32:Linux:*:*)
- echo ${UNAME_MACHINE}-unknown-linux-${LIBC}
- exit ;;
- padre:Linux:*:*)
- echo sparc-unknown-linux-${LIBC}
- exit ;;
- parisc64:Linux:*:* | hppa64:Linux:*:*)
- echo hppa64-unknown-linux-${LIBC}
- exit ;;
- parisc:Linux:*:* | hppa:Linux:*:*)
- # Look for CPU level
- case `grep '^cpu[^a-z]*:' /proc/cpuinfo 2>/dev/null | cut -d' ' -f2` in
- PA7*) echo hppa1.1-unknown-linux-${LIBC} ;;
- PA8*) echo hppa2.0-unknown-linux-${LIBC} ;;
- *) echo hppa-unknown-linux-${LIBC} ;;
- esac
- exit ;;
- ppc64:Linux:*:*)
- echo powerpc64-unknown-linux-${LIBC}
- exit ;;
- ppc:Linux:*:*)
- echo powerpc-unknown-linux-${LIBC}
- exit ;;
- ppc64le:Linux:*:*)
- echo powerpc64le-unknown-linux-${LIBC}
- exit ;;
- ppcle:Linux:*:*)
- echo powerpcle-unknown-linux-${LIBC}
- exit ;;
- s390:Linux:*:* | s390x:Linux:*:*)
- echo ${UNAME_MACHINE}-ibm-linux-${LIBC}
- exit ;;
- sh64*:Linux:*:*)
- echo ${UNAME_MACHINE}-unknown-linux-${LIBC}
- exit ;;
- sh*:Linux:*:*)
- echo ${UNAME_MACHINE}-unknown-linux-${LIBC}
- exit ;;
- sparc:Linux:*:* | sparc64:Linux:*:*)
- echo ${UNAME_MACHINE}-unknown-linux-${LIBC}
- exit ;;
- tile*:Linux:*:*)
- echo ${UNAME_MACHINE}-unknown-linux-${LIBC}
- exit ;;
- vax:Linux:*:*)
- echo ${UNAME_MACHINE}-dec-linux-${LIBC}
- exit ;;
- x86_64:Linux:*:*)
- echo ${UNAME_MACHINE}-unknown-linux-${LIBC}
- exit ;;
- xtensa*:Linux:*:*)
- echo ${UNAME_MACHINE}-unknown-linux-${LIBC}
- exit ;;
- i*86:DYNIX/ptx:4*:*)
- # ptx 4.0 does uname -s correctly, with DYNIX/ptx in there.
- # earlier versions are messed up and put the nodename in both
- # sysname and nodename.
- echo i386-sequent-sysv4
- exit ;;
- i*86:UNIX_SV:4.2MP:2.*)
- # Unixware is an offshoot of SVR4, but it has its own version
- # number series starting with 2...
- # I am not positive that other SVR4 systems won't match this,
- # I just have to hope. -- rms.
- # Use sysv4.2uw... so that sysv4* matches it.
- echo ${UNAME_MACHINE}-pc-sysv4.2uw${UNAME_VERSION}
- exit ;;
- i*86:OS/2:*:*)
- # If we were able to find `uname', then EMX Unix compatibility
- # is probably installed.
- echo ${UNAME_MACHINE}-pc-os2-emx
- exit ;;
- i*86:XTS-300:*:STOP)
- echo ${UNAME_MACHINE}-unknown-stop
- exit ;;
- i*86:atheos:*:*)
- echo ${UNAME_MACHINE}-unknown-atheos
- exit ;;
- i*86:syllable:*:*)
- echo ${UNAME_MACHINE}-pc-syllable
- exit ;;
- i*86:LynxOS:2.*:* | i*86:LynxOS:3.[01]*:* | i*86:LynxOS:4.[02]*:*)
- echo i386-unknown-lynxos${UNAME_RELEASE}
- exit ;;
- i*86:*DOS:*:*)
- echo ${UNAME_MACHINE}-pc-msdosdjgpp
- exit ;;
- i*86:*:4.*:* | i*86:SYSTEM_V:4.*:*)
- UNAME_REL=`echo ${UNAME_RELEASE} | sed 's/\/MP$//'`
- if grep Novell /usr/include/link.h >/dev/null 2>/dev/null; then
- echo ${UNAME_MACHINE}-univel-sysv${UNAME_REL}
- else
- echo ${UNAME_MACHINE}-pc-sysv${UNAME_REL}
- fi
- exit ;;
- i*86:*:5:[678]*)
- # UnixWare 7.x, OpenUNIX and OpenServer 6.
- case `/bin/uname -X | grep "^Machine"` in
- *486*) UNAME_MACHINE=i486 ;;
- *Pentium) UNAME_MACHINE=i586 ;;
- *Pent*|*Celeron) UNAME_MACHINE=i686 ;;
- esac
- echo ${UNAME_MACHINE}-unknown-sysv${UNAME_RELEASE}${UNAME_SYSTEM}${UNAME_VERSION}
- exit ;;
- i*86:*:3.2:*)
- if test -f /usr/options/cb.name; then
- UNAME_REL=`sed -n 's/.*Version //p' /dev/null >/dev/null ; then
- UNAME_REL=`(/bin/uname -X|grep Release|sed -e 's/.*= //')`
- (/bin/uname -X|grep i80486 >/dev/null) && UNAME_MACHINE=i486
- (/bin/uname -X|grep '^Machine.*Pentium' >/dev/null) \
- && UNAME_MACHINE=i586
- (/bin/uname -X|grep '^Machine.*Pent *II' >/dev/null) \
- && UNAME_MACHINE=i686
- (/bin/uname -X|grep '^Machine.*Pentium Pro' >/dev/null) \
- && UNAME_MACHINE=i686
- echo ${UNAME_MACHINE}-pc-sco$UNAME_REL
- else
- echo ${UNAME_MACHINE}-pc-sysv32
- fi
- exit ;;
- pc:*:*:*)
- # Left here for compatibility:
- # uname -m prints for DJGPP always 'pc', but it prints nothing about
- # the processor, so we play safe by assuming i586.
- # Note: whatever this is, it MUST be the same as what config.sub
- # prints for the "djgpp" host, or else GDB configury will decide that
- # this is a cross-build.
- echo i586-pc-msdosdjgpp
- exit ;;
- Intel:Mach:3*:*)
- echo i386-pc-mach3
- exit ;;
- paragon:*:*:*)
- echo i860-intel-osf1
- exit ;;
- i860:*:4.*:*) # i860-SVR4
- if grep Stardent /usr/include/sys/uadmin.h >/dev/null 2>&1 ; then
- echo i860-stardent-sysv${UNAME_RELEASE} # Stardent Vistra i860-SVR4
- else # Add other i860-SVR4 vendors below as they are discovered.
- echo i860-unknown-sysv${UNAME_RELEASE} # Unknown i860-SVR4
- fi
- exit ;;
- mini*:CTIX:SYS*5:*)
- # "miniframe"
- echo m68010-convergent-sysv
- exit ;;
- mc68k:UNIX:SYSTEM5:3.51m)
- echo m68k-convergent-sysv
- exit ;;
- M680?0:D-NIX:5.3:*)
- echo m68k-diab-dnix
- exit ;;
- M68*:*:R3V[5678]*:*)
- test -r /sysV68 && { echo 'm68k-motorola-sysv'; exit; } ;;
- 3[345]??:*:4.0:3.0 | 3[34]??A:*:4.0:3.0 | 3[34]??,*:*:4.0:3.0 | 3[34]??/*:*:4.0:3.0 | 4400:*:4.0:3.0 | 4850:*:4.0:3.0 | SKA40:*:4.0:3.0 | SDS2:*:4.0:3.0 | SHG2:*:4.0:3.0 | S7501*:*:4.0:3.0)
- OS_REL=''
- test -r /etc/.relid \
- && OS_REL=.`sed -n 's/[^ ]* [^ ]* \([0-9][0-9]\).*/\1/p' < /etc/.relid`
- /bin/uname -p 2>/dev/null | grep 86 >/dev/null \
- && { echo i486-ncr-sysv4.3${OS_REL}; exit; }
- /bin/uname -p 2>/dev/null | /bin/grep entium >/dev/null \
- && { echo i586-ncr-sysv4.3${OS_REL}; exit; } ;;
- 3[34]??:*:4.0:* | 3[34]??,*:*:4.0:*)
- /bin/uname -p 2>/dev/null | grep 86 >/dev/null \
- && { echo i486-ncr-sysv4; exit; } ;;
- NCR*:*:4.2:* | MPRAS*:*:4.2:*)
- OS_REL='.3'
- test -r /etc/.relid \
- && OS_REL=.`sed -n 's/[^ ]* [^ ]* \([0-9][0-9]\).*/\1/p' < /etc/.relid`
- /bin/uname -p 2>/dev/null | grep 86 >/dev/null \
- && { echo i486-ncr-sysv4.3${OS_REL}; exit; }
- /bin/uname -p 2>/dev/null | /bin/grep entium >/dev/null \
- && { echo i586-ncr-sysv4.3${OS_REL}; exit; }
- /bin/uname -p 2>/dev/null | /bin/grep pteron >/dev/null \
- && { echo i586-ncr-sysv4.3${OS_REL}; exit; } ;;
- m68*:LynxOS:2.*:* | m68*:LynxOS:3.0*:*)
- echo m68k-unknown-lynxos${UNAME_RELEASE}
- exit ;;
- mc68030:UNIX_System_V:4.*:*)
- echo m68k-atari-sysv4
- exit ;;
- TSUNAMI:LynxOS:2.*:*)
- echo sparc-unknown-lynxos${UNAME_RELEASE}
- exit ;;
- rs6000:LynxOS:2.*:*)
- echo rs6000-unknown-lynxos${UNAME_RELEASE}
- exit ;;
- PowerPC:LynxOS:2.*:* | PowerPC:LynxOS:3.[01]*:* | PowerPC:LynxOS:4.[02]*:*)
- echo powerpc-unknown-lynxos${UNAME_RELEASE}
- exit ;;
- SM[BE]S:UNIX_SV:*:*)
- echo mips-dde-sysv${UNAME_RELEASE}
- exit ;;
- RM*:ReliantUNIX-*:*:*)
- echo mips-sni-sysv4
- exit ;;
- RM*:SINIX-*:*:*)
- echo mips-sni-sysv4
- exit ;;
- *:SINIX-*:*:*)
- if uname -p 2>/dev/null >/dev/null ; then
- UNAME_MACHINE=`(uname -p) 2>/dev/null`
- echo ${UNAME_MACHINE}-sni-sysv4
- else
- echo ns32k-sni-sysv
- fi
- exit ;;
- PENTIUM:*:4.0*:*) # Unisys `ClearPath HMP IX 4000' SVR4/MP effort
- # says
- echo i586-unisys-sysv4
- exit ;;
- *:UNIX_System_V:4*:FTX*)
- # From Gerald Hewes .
- # How about differentiating between stratus architectures? -djm
- echo hppa1.1-stratus-sysv4
- exit ;;
- *:*:*:FTX*)
- # From seanf@swdc.stratus.com.
- echo i860-stratus-sysv4
- exit ;;
- i*86:VOS:*:*)
- # From Paul.Green@stratus.com.
- echo ${UNAME_MACHINE}-stratus-vos
- exit ;;
- *:VOS:*:*)
- # From Paul.Green@stratus.com.
- echo hppa1.1-stratus-vos
- exit ;;
- mc68*:A/UX:*:*)
- echo m68k-apple-aux${UNAME_RELEASE}
- exit ;;
- news*:NEWS-OS:6*:*)
- echo mips-sony-newsos6
- exit ;;
- R[34]000:*System_V*:*:* | R4000:UNIX_SYSV:*:* | R*000:UNIX_SV:*:*)
- if [ -d /usr/nec ]; then
- echo mips-nec-sysv${UNAME_RELEASE}
- else
- echo mips-unknown-sysv${UNAME_RELEASE}
- fi
- exit ;;
- BeBox:BeOS:*:*) # BeOS running on hardware made by Be, PPC only.
- echo powerpc-be-beos
- exit ;;
- BeMac:BeOS:*:*) # BeOS running on Mac or Mac clone, PPC only.
- echo powerpc-apple-beos
- exit ;;
- BePC:BeOS:*:*) # BeOS running on Intel PC compatible.
- echo i586-pc-beos
- exit ;;
- BePC:Haiku:*:*) # Haiku running on Intel PC compatible.
- echo i586-pc-haiku
- exit ;;
- x86_64:Haiku:*:*)
- echo x86_64-unknown-haiku
- exit ;;
- SX-4:SUPER-UX:*:*)
- echo sx4-nec-superux${UNAME_RELEASE}
- exit ;;
- SX-5:SUPER-UX:*:*)
- echo sx5-nec-superux${UNAME_RELEASE}
- exit ;;
- SX-6:SUPER-UX:*:*)
- echo sx6-nec-superux${UNAME_RELEASE}
- exit ;;
- SX-7:SUPER-UX:*:*)
- echo sx7-nec-superux${UNAME_RELEASE}
- exit ;;
- SX-8:SUPER-UX:*:*)
- echo sx8-nec-superux${UNAME_RELEASE}
- exit ;;
- SX-8R:SUPER-UX:*:*)
- echo sx8r-nec-superux${UNAME_RELEASE}
- exit ;;
- Power*:Rhapsody:*:*)
- echo powerpc-apple-rhapsody${UNAME_RELEASE}
- exit ;;
- *:Rhapsody:*:*)
- echo ${UNAME_MACHINE}-apple-rhapsody${UNAME_RELEASE}
- exit ;;
- *:Darwin:*:*)
- UNAME_PROCESSOR=`uname -p` || UNAME_PROCESSOR=unknown
- eval $set_cc_for_build
- if test "$UNAME_PROCESSOR" = unknown ; then
- UNAME_PROCESSOR=powerpc
- fi
- if test `echo "$UNAME_RELEASE" | sed -e 's/\..*//'` -le 10 ; then
- if [ "$CC_FOR_BUILD" != 'no_compiler_found' ]; then
- if (echo '#ifdef __LP64__'; echo IS_64BIT_ARCH; echo '#endif') | \
- (CCOPTS= $CC_FOR_BUILD -E - 2>/dev/null) | \
- grep IS_64BIT_ARCH >/dev/null
- then
- case $UNAME_PROCESSOR in
- i386) UNAME_PROCESSOR=x86_64 ;;
- powerpc) UNAME_PROCESSOR=powerpc64 ;;
- esac
- fi
- fi
- elif test "$UNAME_PROCESSOR" = i386 ; then
- # Avoid executing cc on OS X 10.9, as it ships with a stub
- # that puts up a graphical alert prompting to install
- # developer tools. Any system running Mac OS X 10.7 or
- # later (Darwin 11 and later) is required to have a 64-bit
- # processor. This is not true of the ARM version of Darwin
- # that Apple uses in portable devices.
- UNAME_PROCESSOR=x86_64
- fi
- echo ${UNAME_PROCESSOR}-apple-darwin${UNAME_RELEASE}
- exit ;;
- *:procnto*:*:* | *:QNX:[0123456789]*:*)
- UNAME_PROCESSOR=`uname -p`
- if test "$UNAME_PROCESSOR" = "x86"; then
- UNAME_PROCESSOR=i386
- UNAME_MACHINE=pc
- fi
- echo ${UNAME_PROCESSOR}-${UNAME_MACHINE}-nto-qnx${UNAME_RELEASE}
- exit ;;
- *:QNX:*:4*)
- echo i386-pc-qnx
- exit ;;
- NEO-?:NONSTOP_KERNEL:*:*)
- echo neo-tandem-nsk${UNAME_RELEASE}
- exit ;;
- NSE-*:NONSTOP_KERNEL:*:*)
- echo nse-tandem-nsk${UNAME_RELEASE}
- exit ;;
- NSR-?:NONSTOP_KERNEL:*:*)
- echo nsr-tandem-nsk${UNAME_RELEASE}
- exit ;;
- *:NonStop-UX:*:*)
- echo mips-compaq-nonstopux
- exit ;;
- BS2000:POSIX*:*:*)
- echo bs2000-siemens-sysv
- exit ;;
- DS/*:UNIX_System_V:*:*)
- echo ${UNAME_MACHINE}-${UNAME_SYSTEM}-${UNAME_RELEASE}
- exit ;;
- *:Plan9:*:*)
- # "uname -m" is not consistent, so use $cputype instead. 386
- # is converted to i386 for consistency with other x86
- # operating systems.
- if test "$cputype" = "386"; then
- UNAME_MACHINE=i386
- else
- UNAME_MACHINE="$cputype"
- fi
- echo ${UNAME_MACHINE}-unknown-plan9
- exit ;;
- *:TOPS-10:*:*)
- echo pdp10-unknown-tops10
- exit ;;
- *:TENEX:*:*)
- echo pdp10-unknown-tenex
- exit ;;
- KS10:TOPS-20:*:* | KL10:TOPS-20:*:* | TYPE4:TOPS-20:*:*)
- echo pdp10-dec-tops20
- exit ;;
- XKL-1:TOPS-20:*:* | TYPE5:TOPS-20:*:*)
- echo pdp10-xkl-tops20
- exit ;;
- *:TOPS-20:*:*)
- echo pdp10-unknown-tops20
- exit ;;
- *:ITS:*:*)
- echo pdp10-unknown-its
- exit ;;
- SEI:*:*:SEIUX)
- echo mips-sei-seiux${UNAME_RELEASE}
- exit ;;
- *:DragonFly:*:*)
- echo ${UNAME_MACHINE}-unknown-dragonfly`echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'`
- exit ;;
- *:*VMS:*:*)
- UNAME_MACHINE=`(uname -p) 2>/dev/null`
- case "${UNAME_MACHINE}" in
- A*) echo alpha-dec-vms ; exit ;;
- I*) echo ia64-dec-vms ; exit ;;
- V*) echo vax-dec-vms ; exit ;;
- esac ;;
- *:XENIX:*:SysV)
- echo i386-pc-xenix
- exit ;;
- i*86:skyos:*:*)
- echo ${UNAME_MACHINE}-pc-skyos`echo ${UNAME_RELEASE}` | sed -e 's/ .*$//'
- exit ;;
- i*86:rdos:*:*)
- echo ${UNAME_MACHINE}-pc-rdos
- exit ;;
- i*86:AROS:*:*)
- echo ${UNAME_MACHINE}-pc-aros
- exit ;;
- x86_64:VMkernel:*:*)
- echo ${UNAME_MACHINE}-unknown-esx
- exit ;;
-esac
-
-eval $set_cc_for_build
-cat >$dummy.c <
-# include
-#endif
-main ()
-{
-#if defined (sony)
-#if defined (MIPSEB)
- /* BFD wants "bsd" instead of "newsos". Perhaps BFD should be changed,
- I don't know.... */
- printf ("mips-sony-bsd\n"); exit (0);
-#else
-#include
- printf ("m68k-sony-newsos%s\n",
-#ifdef NEWSOS4
- "4"
-#else
- ""
-#endif
- ); exit (0);
-#endif
-#endif
-
-#if defined (__arm) && defined (__acorn) && defined (__unix)
- printf ("arm-acorn-riscix\n"); exit (0);
-#endif
-
-#if defined (hp300) && !defined (hpux)
- printf ("m68k-hp-bsd\n"); exit (0);
-#endif
-
-#if defined (NeXT)
-#if !defined (__ARCHITECTURE__)
-#define __ARCHITECTURE__ "m68k"
-#endif
- int version;
- version=`(hostinfo | sed -n 's/.*NeXT Mach \([0-9]*\).*/\1/p') 2>/dev/null`;
- if (version < 4)
- printf ("%s-next-nextstep%d\n", __ARCHITECTURE__, version);
- else
- printf ("%s-next-openstep%d\n", __ARCHITECTURE__, version);
- exit (0);
-#endif
-
-#if defined (MULTIMAX) || defined (n16)
-#if defined (UMAXV)
- printf ("ns32k-encore-sysv\n"); exit (0);
-#else
-#if defined (CMU)
- printf ("ns32k-encore-mach\n"); exit (0);
-#else
- printf ("ns32k-encore-bsd\n"); exit (0);
-#endif
-#endif
-#endif
-
-#if defined (__386BSD__)
- printf ("i386-pc-bsd\n"); exit (0);
-#endif
-
-#if defined (sequent)
-#if defined (i386)
- printf ("i386-sequent-dynix\n"); exit (0);
-#endif
-#if defined (ns32000)
- printf ("ns32k-sequent-dynix\n"); exit (0);
-#endif
-#endif
-
-#if defined (_SEQUENT_)
- struct utsname un;
-
- uname(&un);
-
- if (strncmp(un.version, "V2", 2) == 0) {
- printf ("i386-sequent-ptx2\n"); exit (0);
- }
- if (strncmp(un.version, "V1", 2) == 0) { /* XXX is V1 correct? */
- printf ("i386-sequent-ptx1\n"); exit (0);
- }
- printf ("i386-sequent-ptx\n"); exit (0);
-
-#endif
-
-#if defined (vax)
-# if !defined (ultrix)
-# include
-# if defined (BSD)
-# if BSD == 43
- printf ("vax-dec-bsd4.3\n"); exit (0);
-# else
-# if BSD == 199006
- printf ("vax-dec-bsd4.3reno\n"); exit (0);
-# else
- printf ("vax-dec-bsd\n"); exit (0);
-# endif
-# endif
-# else
- printf ("vax-dec-bsd\n"); exit (0);
-# endif
-# else
- printf ("vax-dec-ultrix\n"); exit (0);
-# endif
-#endif
-
-#if defined (alliant) && defined (i860)
- printf ("i860-alliant-bsd\n"); exit (0);
-#endif
-
- exit (1);
-}
-EOF
-
-$CC_FOR_BUILD -o $dummy $dummy.c 2>/dev/null && SYSTEM_NAME=`$dummy` &&
- { echo "$SYSTEM_NAME"; exit; }
-
-# Apollos put the system type in the environment.
-
-test -d /usr/apollo && { echo ${ISP}-apollo-${SYSTYPE}; exit; }
-
-# Convex versions that predate uname can use getsysinfo(1)
-
-if [ -x /usr/convex/getsysinfo ]
-then
- case `getsysinfo -f cpu_type` in
- c1*)
- echo c1-convex-bsd
- exit ;;
- c2*)
- if getsysinfo -f scalar_acc
- then echo c32-convex-bsd
- else echo c2-convex-bsd
- fi
- exit ;;
- c34*)
- echo c34-convex-bsd
- exit ;;
- c38*)
- echo c38-convex-bsd
- exit ;;
- c4*)
- echo c4-convex-bsd
- exit ;;
- esac
-fi
-
-cat >&2 < in order to provide the needed
-information to handle your system.
-
-config.guess timestamp = $timestamp
-
-uname -m = `(uname -m) 2>/dev/null || echo unknown`
-uname -r = `(uname -r) 2>/dev/null || echo unknown`
-uname -s = `(uname -s) 2>/dev/null || echo unknown`
-uname -v = `(uname -v) 2>/dev/null || echo unknown`
-
-/usr/bin/uname -p = `(/usr/bin/uname -p) 2>/dev/null`
-/bin/uname -X = `(/bin/uname -X) 2>/dev/null`
-
-hostinfo = `(hostinfo) 2>/dev/null`
-/bin/universe = `(/bin/universe) 2>/dev/null`
-/usr/bin/arch -k = `(/usr/bin/arch -k) 2>/dev/null`
-/bin/arch = `(/bin/arch) 2>/dev/null`
-/usr/bin/oslevel = `(/usr/bin/oslevel) 2>/dev/null`
-/usr/convex/getsysinfo = `(/usr/convex/getsysinfo) 2>/dev/null`
-
-UNAME_MACHINE = ${UNAME_MACHINE}
-UNAME_RELEASE = ${UNAME_RELEASE}
-UNAME_SYSTEM = ${UNAME_SYSTEM}
-UNAME_VERSION = ${UNAME_VERSION}
-EOF
-
-exit 1
-
-# Local variables:
-# eval: (add-hook 'write-file-hooks 'time-stamp)
-# time-stamp-start: "timestamp='"
-# time-stamp-format: "%:y-%02m-%02d"
-# time-stamp-end: "'"
-# End:
diff --git a/config.sub b/config.sub
deleted file mode 100755
index 61cb4bc22..000000000
--- a/config.sub
+++ /dev/null
@@ -1,1793 +0,0 @@
-#! /bin/sh
-# Configuration validation subroutine script.
-# Copyright 1992-2013 Free Software Foundation, Inc.
-
-timestamp='2013-10-01'
-
-# This file is free software; you can redistribute it and/or modify it
-# under the terms of the GNU General Public License as published by
-# the Free Software Foundation; either version 3 of the License, or
-# (at your option) any later version.
-#
-# This program 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
-# General Public License for more details.
-#
-# You should have received a copy of the GNU General Public License
-# along with this program; if not, see .
-#
-# As a special exception to the GNU General Public License, if you
-# distribute this file as part of a program that contains a
-# configuration script generated by Autoconf, you may include it under
-# the same distribution terms that you use for the rest of that
-# program. This Exception is an additional permission under section 7
-# of the GNU General Public License, version 3 ("GPLv3").
-
-
-# Please send patches with a ChangeLog entry to config-patches@gnu.org.
-#
-# Configuration subroutine to validate and canonicalize a configuration type.
-# Supply the specified configuration type as an argument.
-# If it is invalid, we print an error message on stderr and exit with code 1.
-# Otherwise, we print the canonical config type on stdout and succeed.
-
-# You can get the latest version of this script from:
-# http://git.savannah.gnu.org/gitweb/?p=config.git;a=blob_plain;f=config.sub;hb=HEAD
-
-# This file is supposed to be the same for all GNU packages
-# and recognize all the CPU types, system types and aliases
-# that are meaningful with *any* GNU software.
-# Each package is responsible for reporting which valid configurations
-# it does not support. The user should be able to distinguish
-# a failure to support a valid configuration from a meaningless
-# configuration.
-
-# The goal of this file is to map all the various variations of a given
-# machine specification into a single specification in the form:
-# CPU_TYPE-MANUFACTURER-OPERATING_SYSTEM
-# or in some cases, the newer four-part form:
-# CPU_TYPE-MANUFACTURER-KERNEL-OPERATING_SYSTEM
-# It is wrong to echo any other type of specification.
-
-me=`echo "$0" | sed -e 's,.*/,,'`
-
-usage="\
-Usage: $0 [OPTION] CPU-MFR-OPSYS
- $0 [OPTION] ALIAS
-
-Canonicalize a configuration name.
-
-Operation modes:
- -h, --help print this help, then exit
- -t, --time-stamp print date of last modification, then exit
- -v, --version print version number, then exit
-
-Report bugs and patches to ."
-
-version="\
-GNU config.sub ($timestamp)
-
-Copyright 1992-2013 Free Software Foundation, Inc.
-
-This is free software; see the source for copying conditions. There is NO
-warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE."
-
-help="
-Try \`$me --help' for more information."
-
-# Parse command line
-while test $# -gt 0 ; do
- case $1 in
- --time-stamp | --time* | -t )
- echo "$timestamp" ; exit ;;
- --version | -v )
- echo "$version" ; exit ;;
- --help | --h* | -h )
- echo "$usage"; exit ;;
- -- ) # Stop option processing
- shift; break ;;
- - ) # Use stdin as input.
- break ;;
- -* )
- echo "$me: invalid option $1$help"
- exit 1 ;;
-
- *local*)
- # First pass through any local machine types.
- echo $1
- exit ;;
-
- * )
- break ;;
- esac
-done
-
-case $# in
- 0) echo "$me: missing argument$help" >&2
- exit 1;;
- 1) ;;
- *) echo "$me: too many arguments$help" >&2
- exit 1;;
-esac
-
-# Separate what the user gave into CPU-COMPANY and OS or KERNEL-OS (if any).
-# Here we must recognize all the valid KERNEL-OS combinations.
-maybe_os=`echo $1 | sed 's/^\(.*\)-\([^-]*-[^-]*\)$/\2/'`
-case $maybe_os in
- nto-qnx* | linux-gnu* | linux-android* | linux-dietlibc | linux-newlib* | \
- linux-musl* | linux-uclibc* | uclinux-uclibc* | uclinux-gnu* | kfreebsd*-gnu* | \
- knetbsd*-gnu* | netbsd*-gnu* | \
- kopensolaris*-gnu* | \
- storm-chaos* | os2-emx* | rtmk-nova*)
- os=-$maybe_os
- basic_machine=`echo $1 | sed 's/^\(.*\)-\([^-]*-[^-]*\)$/\1/'`
- ;;
- android-linux)
- os=-linux-android
- basic_machine=`echo $1 | sed 's/^\(.*\)-\([^-]*-[^-]*\)$/\1/'`-unknown
- ;;
- *)
- basic_machine=`echo $1 | sed 's/-[^-]*$//'`
- if [ $basic_machine != $1 ]
- then os=`echo $1 | sed 's/.*-/-/'`
- else os=; fi
- ;;
-esac
-
-### Let's recognize common machines as not being operating systems so
-### that things like config.sub decstation-3100 work. We also
-### recognize some manufacturers as not being operating systems, so we
-### can provide default operating systems below.
-case $os in
- -sun*os*)
- # Prevent following clause from handling this invalid input.
- ;;
- -dec* | -mips* | -sequent* | -encore* | -pc532* | -sgi* | -sony* | \
- -att* | -7300* | -3300* | -delta* | -motorola* | -sun[234]* | \
- -unicom* | -ibm* | -next | -hp | -isi* | -apollo | -altos* | \
- -convergent* | -ncr* | -news | -32* | -3600* | -3100* | -hitachi* |\
- -c[123]* | -convex* | -sun | -crds | -omron* | -dg | -ultra | -tti* | \
- -harris | -dolphin | -highlevel | -gould | -cbm | -ns | -masscomp | \
- -apple | -axis | -knuth | -cray | -microblaze*)
- os=
- basic_machine=$1
- ;;
- -bluegene*)
- os=-cnk
- ;;
- -sim | -cisco | -oki | -wec | -winbond)
- os=
- basic_machine=$1
- ;;
- -scout)
- ;;
- -wrs)
- os=-vxworks
- basic_machine=$1
- ;;
- -chorusos*)
- os=-chorusos
- basic_machine=$1
- ;;
- -chorusrdb)
- os=-chorusrdb
- basic_machine=$1
- ;;
- -hiux*)
- os=-hiuxwe2
- ;;
- -sco6)
- os=-sco5v6
- basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'`
- ;;
- -sco5)
- os=-sco3.2v5
- basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'`
- ;;
- -sco4)
- os=-sco3.2v4
- basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'`
- ;;
- -sco3.2.[4-9]*)
- os=`echo $os | sed -e 's/sco3.2./sco3.2v/'`
- basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'`
- ;;
- -sco3.2v[4-9]*)
- # Don't forget version if it is 3.2v4 or newer.
- basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'`
- ;;
- -sco5v6*)
- # Don't forget version if it is 3.2v4 or newer.
- basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'`
- ;;
- -sco*)
- os=-sco3.2v2
- basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'`
- ;;
- -udk*)
- basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'`
- ;;
- -isc)
- os=-isc2.2
- basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'`
- ;;
- -clix*)
- basic_machine=clipper-intergraph
- ;;
- -isc*)
- basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'`
- ;;
- -lynx*178)
- os=-lynxos178
- ;;
- -lynx*5)
- os=-lynxos5
- ;;
- -lynx*)
- os=-lynxos
- ;;
- -ptx*)
- basic_machine=`echo $1 | sed -e 's/86-.*/86-sequent/'`
- ;;
- -windowsnt*)
- os=`echo $os | sed -e 's/windowsnt/winnt/'`
- ;;
- -psos*)
- os=-psos
- ;;
- -mint | -mint[0-9]*)
- basic_machine=m68k-atari
- os=-mint
- ;;
-esac
-
-# Decode aliases for certain CPU-COMPANY combinations.
-case $basic_machine in
- # Recognize the basic CPU types without company name.
- # Some are omitted here because they have special meanings below.
- 1750a | 580 \
- | a29k \
- | aarch64 | aarch64_be \
- | alpha | alphaev[4-8] | alphaev56 | alphaev6[78] | alphapca5[67] \
- | alpha64 | alpha64ev[4-8] | alpha64ev56 | alpha64ev6[78] | alpha64pca5[67] \
- | am33_2.0 \
- | arc | arceb \
- | arm | arm[bl]e | arme[lb] | armv[2-8] | armv[3-8][lb] | armv7[arm] \
- | avr | avr32 \
- | be32 | be64 \
- | bfin \
- | c4x | c8051 | clipper \
- | d10v | d30v | dlx | dsp16xx \
- | epiphany \
- | fido | fr30 | frv \
- | h8300 | h8500 | hppa | hppa1.[01] | hppa2.0 | hppa2.0[nw] | hppa64 \
- | hexagon \
- | i370 | i860 | i960 | ia64 \
- | ip2k | iq2000 \
- | k1om \
- | le32 | le64 \
- | lm32 \
- | m32c | m32r | m32rle | m68000 | m68k | m88k \
- | maxq | mb | microblaze | microblazeel | mcore | mep | metag \
- | mips | mipsbe | mipseb | mipsel | mipsle \
- | mips16 \
- | mips64 | mips64el \
- | mips64octeon | mips64octeonel \
- | mips64orion | mips64orionel \
- | mips64r5900 | mips64r5900el \
- | mips64vr | mips64vrel \
- | mips64vr4100 | mips64vr4100el \
- | mips64vr4300 | mips64vr4300el \
- | mips64vr5000 | mips64vr5000el \
- | mips64vr5900 | mips64vr5900el \
- | mipsisa32 | mipsisa32el \
- | mipsisa32r2 | mipsisa32r2el \
- | mipsisa64 | mipsisa64el \
- | mipsisa64r2 | mipsisa64r2el \
- | mipsisa64sb1 | mipsisa64sb1el \
- | mipsisa64sr71k | mipsisa64sr71kel \
- | mipsr5900 | mipsr5900el \
- | mipstx39 | mipstx39el \
- | mn10200 | mn10300 \
- | moxie \
- | mt \
- | msp430 \
- | nds32 | nds32le | nds32be \
- | nios | nios2 | nios2eb | nios2el \
- | ns16k | ns32k \
- | open8 \
- | or1k | or32 \
- | pdp10 | pdp11 | pj | pjl \
- | powerpc | powerpc64 | powerpc64le | powerpcle \
- | pyramid \
- | rl78 | rx \
- | score \
- | sh | sh[1234] | sh[24]a | sh[24]aeb | sh[23]e | sh[34]eb | sheb | shbe | shle | sh[1234]le | sh3ele \
- | sh64 | sh64le \
- | sparc | sparc64 | sparc64b | sparc64v | sparc86x | sparclet | sparclite \
- | sparcv8 | sparcv9 | sparcv9b | sparcv9v \
- | spu \
- | tahoe | tic4x | tic54x | tic55x | tic6x | tic80 | tron \
- | ubicom32 \
- | v850 | v850e | v850e1 | v850e2 | v850es | v850e2v3 \
- | we32k \
- | x86 | xc16x | xstormy16 | xtensa \
- | z8k | z80)
- basic_machine=$basic_machine-unknown
- ;;
- c54x)
- basic_machine=tic54x-unknown
- ;;
- c55x)
- basic_machine=tic55x-unknown
- ;;
- c6x)
- basic_machine=tic6x-unknown
- ;;
- m6811 | m68hc11 | m6812 | m68hc12 | m68hcs12x | nvptx | picochip)
- basic_machine=$basic_machine-unknown
- os=-none
- ;;
- m88110 | m680[12346]0 | m683?2 | m68360 | m5200 | v70 | w65 | z8k)
- ;;
- ms1)
- basic_machine=mt-unknown
- ;;
-
- strongarm | thumb | xscale)
- basic_machine=arm-unknown
- ;;
- xgate)
- basic_machine=$basic_machine-unknown
- os=-none
- ;;
- xscaleeb)
- basic_machine=armeb-unknown
- ;;
-
- xscaleel)
- basic_machine=armel-unknown
- ;;
-
- # We use `pc' rather than `unknown'
- # because (1) that's what they normally are, and
- # (2) the word "unknown" tends to confuse beginning users.
- i*86 | x86_64)
- basic_machine=$basic_machine-pc
- ;;
- # Object if more than one company name word.
- *-*-*)
- echo Invalid configuration \`$1\': machine \`$basic_machine\' not recognized 1>&2
- exit 1
- ;;
- # Recognize the basic CPU types with company name.
- 580-* \
- | a29k-* \
- | aarch64-* | aarch64_be-* \
- | alpha-* | alphaev[4-8]-* | alphaev56-* | alphaev6[78]-* \
- | alpha64-* | alpha64ev[4-8]-* | alpha64ev56-* | alpha64ev6[78]-* \
- | alphapca5[67]-* | alpha64pca5[67]-* | arc-* | arceb-* \
- | arm-* | armbe-* | armle-* | armeb-* | armv*-* \
- | avr-* | avr32-* \
- | be32-* | be64-* \
- | bfin-* | bs2000-* \
- | c[123]* | c30-* | [cjt]90-* | c4x-* \
- | c8051-* | clipper-* | craynv-* | cydra-* \
- | d10v-* | d30v-* | dlx-* \
- | elxsi-* \
- | f30[01]-* | f700-* | fido-* | fr30-* | frv-* | fx80-* \
- | h8300-* | h8500-* \
- | hppa-* | hppa1.[01]-* | hppa2.0-* | hppa2.0[nw]-* | hppa64-* \
- | hexagon-* \
- | i*86-* | i860-* | i960-* | ia64-* \
- | ip2k-* | iq2000-* \
- | k1om-* \
- | le32-* | le64-* \
- | lm32-* \
- | m32c-* | m32r-* | m32rle-* \
- | m68000-* | m680[012346]0-* | m68360-* | m683?2-* | m68k-* \
- | m88110-* | m88k-* | maxq-* | mcore-* | metag-* \
- | microblaze-* | microblazeel-* \
- | mips-* | mipsbe-* | mipseb-* | mipsel-* | mipsle-* \
- | mips16-* \
- | mips64-* | mips64el-* \
- | mips64octeon-* | mips64octeonel-* \
- | mips64orion-* | mips64orionel-* \
- | mips64r5900-* | mips64r5900el-* \
- | mips64vr-* | mips64vrel-* \
- | mips64vr4100-* | mips64vr4100el-* \
- | mips64vr4300-* | mips64vr4300el-* \
- | mips64vr5000-* | mips64vr5000el-* \
- | mips64vr5900-* | mips64vr5900el-* \
- | mipsisa32-* | mipsisa32el-* \
- | mipsisa32r2-* | mipsisa32r2el-* \
- | mipsisa64-* | mipsisa64el-* \
- | mipsisa64r2-* | mipsisa64r2el-* \
- | mipsisa64sb1-* | mipsisa64sb1el-* \
- | mipsisa64sr71k-* | mipsisa64sr71kel-* \
- | mipsr5900-* | mipsr5900el-* \
- | mipstx39-* | mipstx39el-* \
- | mmix-* \
- | mt-* \
- | msp430-* \
- | nds32-* | nds32le-* | nds32be-* \
- | nios-* | nios2-* | nios2eb-* | nios2el-* \
- | none-* | np1-* | ns16k-* | ns32k-* \
- | open8-* \
- | orion-* \
- | pdp10-* | pdp11-* | pj-* | pjl-* | pn-* | power-* \
- | powerpc-* | powerpc64-* | powerpc64le-* | powerpcle-* \
- | pyramid-* \
- | rl78-* | romp-* | rs6000-* | rx-* \
- | sh-* | sh[1234]-* | sh[24]a-* | sh[24]aeb-* | sh[23]e-* | sh[34]eb-* | sheb-* | shbe-* \
- | shle-* | sh[1234]le-* | sh3ele-* | sh64-* | sh64le-* \
- | sparc-* | sparc64-* | sparc64b-* | sparc64v-* | sparc86x-* | sparclet-* \
- | sparclite-* \
- | sparcv8-* | sparcv9-* | sparcv9b-* | sparcv9v-* | sv1-* | sx?-* \
- | tahoe-* \
- | tic30-* | tic4x-* | tic54x-* | tic55x-* | tic6x-* | tic80-* \
- | tile*-* \
- | tron-* \
- | ubicom32-* \
- | v850-* | v850e-* | v850e1-* | v850es-* | v850e2-* | v850e2v3-* \
- | vax-* \
- | we32k-* \
- | x86-* | x86_64-* | xc16x-* | xps100-* \
- | xstormy16-* | xtensa*-* \
- | ymp-* \
- | z8k-* | z80-*)
- ;;
- # Recognize the basic CPU types without company name, with glob match.
- xtensa*)
- basic_machine=$basic_machine-unknown
- ;;
- # Recognize the various machine names and aliases which stand
- # for a CPU type and a company and sometimes even an OS.
- 386bsd)
- basic_machine=i386-unknown
- os=-bsd
- ;;
- 3b1 | 7300 | 7300-att | att-7300 | pc7300 | safari | unixpc)
- basic_machine=m68000-att
- ;;
- 3b*)
- basic_machine=we32k-att
- ;;
- a29khif)
- basic_machine=a29k-amd
- os=-udi
- ;;
- abacus)
- basic_machine=abacus-unknown
- ;;
- adobe68k)
- basic_machine=m68010-adobe
- os=-scout
- ;;
- alliant | fx80)
- basic_machine=fx80-alliant
- ;;
- altos | altos3068)
- basic_machine=m68k-altos
- ;;
- am29k)
- basic_machine=a29k-none
- os=-bsd
- ;;
- amd64)
- basic_machine=x86_64-pc
- ;;
- amd64-*)
- basic_machine=x86_64-`echo $basic_machine | sed 's/^[^-]*-//'`
- ;;
- amdahl)
- basic_machine=580-amdahl
- os=-sysv
- ;;
- amiga | amiga-*)
- basic_machine=m68k-unknown
- ;;
- amigaos | amigados)
- basic_machine=m68k-unknown
- os=-amigaos
- ;;
- amigaunix | amix)
- basic_machine=m68k-unknown
- os=-sysv4
- ;;
- apollo68)
- basic_machine=m68k-apollo
- os=-sysv
- ;;
- apollo68bsd)
- basic_machine=m68k-apollo
- os=-bsd
- ;;
- aros)
- basic_machine=i386-pc
- os=-aros
- ;;
- aux)
- basic_machine=m68k-apple
- os=-aux
- ;;
- balance)
- basic_machine=ns32k-sequent
- os=-dynix
- ;;
- blackfin)
- basic_machine=bfin-unknown
- os=-linux
- ;;
- blackfin-*)
- basic_machine=bfin-`echo $basic_machine | sed 's/^[^-]*-//'`
- os=-linux
- ;;
- bluegene*)
- basic_machine=powerpc-ibm
- os=-cnk
- ;;
- c54x-*)
- basic_machine=tic54x-`echo $basic_machine | sed 's/^[^-]*-//'`
- ;;
- c55x-*)
- basic_machine=tic55x-`echo $basic_machine | sed 's/^[^-]*-//'`
- ;;
- c6x-*)
- basic_machine=tic6x-`echo $basic_machine | sed 's/^[^-]*-//'`
- ;;
- c90)
- basic_machine=c90-cray
- os=-unicos
- ;;
- cegcc)
- basic_machine=arm-unknown
- os=-cegcc
- ;;
- convex-c1)
- basic_machine=c1-convex
- os=-bsd
- ;;
- convex-c2)
- basic_machine=c2-convex
- os=-bsd
- ;;
- convex-c32)
- basic_machine=c32-convex
- os=-bsd
- ;;
- convex-c34)
- basic_machine=c34-convex
- os=-bsd
- ;;
- convex-c38)
- basic_machine=c38-convex
- os=-bsd
- ;;
- cray | j90)
- basic_machine=j90-cray
- os=-unicos
- ;;
- craynv)
- basic_machine=craynv-cray
- os=-unicosmp
- ;;
- cr16 | cr16-*)
- basic_machine=cr16-unknown
- os=-elf
- ;;
- crds | unos)
- basic_machine=m68k-crds
- ;;
- crisv32 | crisv32-* | etraxfs*)
- basic_machine=crisv32-axis
- ;;
- cris | cris-* | etrax*)
- basic_machine=cris-axis
- ;;
- crx)
- basic_machine=crx-unknown
- os=-elf
- ;;
- da30 | da30-*)
- basic_machine=m68k-da30
- ;;
- decstation | decstation-3100 | pmax | pmax-* | pmin | dec3100 | decstatn)
- basic_machine=mips-dec
- ;;
- decsystem10* | dec10*)
- basic_machine=pdp10-dec
- os=-tops10
- ;;
- decsystem20* | dec20*)
- basic_machine=pdp10-dec
- os=-tops20
- ;;
- delta | 3300 | motorola-3300 | motorola-delta \
- | 3300-motorola | delta-motorola)
- basic_machine=m68k-motorola
- ;;
- delta88)
- basic_machine=m88k-motorola
- os=-sysv3
- ;;
- dicos)
- basic_machine=i686-pc
- os=-dicos
- ;;
- djgpp)
- basic_machine=i586-pc
- os=-msdosdjgpp
- ;;
- dpx20 | dpx20-*)
- basic_machine=rs6000-bull
- os=-bosx
- ;;
- dpx2* | dpx2*-bull)
- basic_machine=m68k-bull
- os=-sysv3
- ;;
- ebmon29k)
- basic_machine=a29k-amd
- os=-ebmon
- ;;
- elxsi)
- basic_machine=elxsi-elxsi
- os=-bsd
- ;;
- encore | umax | mmax)
- basic_machine=ns32k-encore
- ;;
- es1800 | OSE68k | ose68k | ose | OSE)
- basic_machine=m68k-ericsson
- os=-ose
- ;;
- fx2800)
- basic_machine=i860-alliant
- ;;
- genix)
- basic_machine=ns32k-ns
- ;;
- gmicro)
- basic_machine=tron-gmicro
- os=-sysv
- ;;
- go32)
- basic_machine=i386-pc
- os=-go32
- ;;
- h3050r* | hiux*)
- basic_machine=hppa1.1-hitachi
- os=-hiuxwe2
- ;;
- h8300hms)
- basic_machine=h8300-hitachi
- os=-hms
- ;;
- h8300xray)
- basic_machine=h8300-hitachi
- os=-xray
- ;;
- h8500hms)
- basic_machine=h8500-hitachi
- os=-hms
- ;;
- harris)
- basic_machine=m88k-harris
- os=-sysv3
- ;;
- hp300-*)
- basic_machine=m68k-hp
- ;;
- hp300bsd)
- basic_machine=m68k-hp
- os=-bsd
- ;;
- hp300hpux)
- basic_machine=m68k-hp
- os=-hpux
- ;;
- hp3k9[0-9][0-9] | hp9[0-9][0-9])
- basic_machine=hppa1.0-hp
- ;;
- hp9k2[0-9][0-9] | hp9k31[0-9])
- basic_machine=m68000-hp
- ;;
- hp9k3[2-9][0-9])
- basic_machine=m68k-hp
- ;;
- hp9k6[0-9][0-9] | hp6[0-9][0-9])
- basic_machine=hppa1.0-hp
- ;;
- hp9k7[0-79][0-9] | hp7[0-79][0-9])
- basic_machine=hppa1.1-hp
- ;;
- hp9k78[0-9] | hp78[0-9])
- # FIXME: really hppa2.0-hp
- basic_machine=hppa1.1-hp
- ;;
- hp9k8[67]1 | hp8[67]1 | hp9k80[24] | hp80[24] | hp9k8[78]9 | hp8[78]9 | hp9k893 | hp893)
- # FIXME: really hppa2.0-hp
- basic_machine=hppa1.1-hp
- ;;
- hp9k8[0-9][13679] | hp8[0-9][13679])
- basic_machine=hppa1.1-hp
- ;;
- hp9k8[0-9][0-9] | hp8[0-9][0-9])
- basic_machine=hppa1.0-hp
- ;;
- hppa-next)
- os=-nextstep3
- ;;
- hppaosf)
- basic_machine=hppa1.1-hp
- os=-osf
- ;;
- hppro)
- basic_machine=hppa1.1-hp
- os=-proelf
- ;;
- i370-ibm* | ibm*)
- basic_machine=i370-ibm
- ;;
- i*86v32)
- basic_machine=`echo $1 | sed -e 's/86.*/86-pc/'`
- os=-sysv32
- ;;
- i*86v4*)
- basic_machine=`echo $1 | sed -e 's/86.*/86-pc/'`
- os=-sysv4
- ;;
- i*86v)
- basic_machine=`echo $1 | sed -e 's/86.*/86-pc/'`
- os=-sysv
- ;;
- i*86sol2)
- basic_machine=`echo $1 | sed -e 's/86.*/86-pc/'`
- os=-solaris2
- ;;
- i386mach)
- basic_machine=i386-mach
- os=-mach
- ;;
- i386-vsta | vsta)
- basic_machine=i386-unknown
- os=-vsta
- ;;
- iris | iris4d)
- basic_machine=mips-sgi
- case $os in
- -irix*)
- ;;
- *)
- os=-irix4
- ;;
- esac
- ;;
- isi68 | isi)
- basic_machine=m68k-isi
- os=-sysv
- ;;
- m68knommu)
- basic_machine=m68k-unknown
- os=-linux
- ;;
- m68knommu-*)
- basic_machine=m68k-`echo $basic_machine | sed 's/^[^-]*-//'`
- os=-linux
- ;;
- m88k-omron*)
- basic_machine=m88k-omron
- ;;
- magnum | m3230)
- basic_machine=mips-mips
- os=-sysv
- ;;
- merlin)
- basic_machine=ns32k-utek
- os=-sysv
- ;;
- microblaze*)
- basic_machine=microblaze-xilinx
- ;;
- mingw64)
- basic_machine=x86_64-pc
- os=-mingw64
- ;;
- mingw32)
- basic_machine=i686-pc
- os=-mingw32
- ;;
- mingw32ce)
- basic_machine=arm-unknown
- os=-mingw32ce
- ;;
- miniframe)
- basic_machine=m68000-convergent
- ;;
- *mint | -mint[0-9]* | *MiNT | *MiNT[0-9]*)
- basic_machine=m68k-atari
- os=-mint
- ;;
- mips3*-*)
- basic_machine=`echo $basic_machine | sed -e 's/mips3/mips64/'`
- ;;
- mips3*)
- basic_machine=`echo $basic_machine | sed -e 's/mips3/mips64/'`-unknown
- ;;
- monitor)
- basic_machine=m68k-rom68k
- os=-coff
- ;;
- morphos)
- basic_machine=powerpc-unknown
- os=-morphos
- ;;
- msdos)
- basic_machine=i386-pc
- os=-msdos
- ;;
- ms1-*)
- basic_machine=`echo $basic_machine | sed -e 's/ms1-/mt-/'`
- ;;
- msys)
- basic_machine=i686-pc
- os=-msys
- ;;
- mvs)
- basic_machine=i370-ibm
- os=-mvs
- ;;
- nacl)
- basic_machine=le32-unknown
- os=-nacl
- ;;
- ncr3000)
- basic_machine=i486-ncr
- os=-sysv4
- ;;
- netbsd386)
- basic_machine=i386-unknown
- os=-netbsd
- ;;
- netwinder)
- basic_machine=armv4l-rebel
- os=-linux
- ;;
- news | news700 | news800 | news900)
- basic_machine=m68k-sony
- os=-newsos
- ;;
- news1000)
- basic_machine=m68030-sony
- os=-newsos
- ;;
- news-3600 | risc-news)
- basic_machine=mips-sony
- os=-newsos
- ;;
- necv70)
- basic_machine=v70-nec
- os=-sysv
- ;;
- next | m*-next )
- basic_machine=m68k-next
- case $os in
- -nextstep* )
- ;;
- -ns2*)
- os=-nextstep2
- ;;
- *)
- os=-nextstep3
- ;;
- esac
- ;;
- nh3000)
- basic_machine=m68k-harris
- os=-cxux
- ;;
- nh[45]000)
- basic_machine=m88k-harris
- os=-cxux
- ;;
- nindy960)
- basic_machine=i960-intel
- os=-nindy
- ;;
- mon960)
- basic_machine=i960-intel
- os=-mon960
- ;;
- nonstopux)
- basic_machine=mips-compaq
- os=-nonstopux
- ;;
- np1)
- basic_machine=np1-gould
- ;;
- neo-tandem)
- basic_machine=neo-tandem
- ;;
- nse-tandem)
- basic_machine=nse-tandem
- ;;
- nsr-tandem)
- basic_machine=nsr-tandem
- ;;
- op50n-* | op60c-*)
- basic_machine=hppa1.1-oki
- os=-proelf
- ;;
- openrisc | openrisc-*)
- basic_machine=or32-unknown
- ;;
- os400)
- basic_machine=powerpc-ibm
- os=-os400
- ;;
- OSE68000 | ose68000)
- basic_machine=m68000-ericsson
- os=-ose
- ;;
- os68k)
- basic_machine=m68k-none
- os=-os68k
- ;;
- pa-hitachi)
- basic_machine=hppa1.1-hitachi
- os=-hiuxwe2
- ;;
- paragon)
- basic_machine=i860-intel
- os=-osf
- ;;
- parisc)
- basic_machine=hppa-unknown
- os=-linux
- ;;
- parisc-*)
- basic_machine=hppa-`echo $basic_machine | sed 's/^[^-]*-//'`
- os=-linux
- ;;
- pbd)
- basic_machine=sparc-tti
- ;;
- pbb)
- basic_machine=m68k-tti
- ;;
- pc532 | pc532-*)
- basic_machine=ns32k-pc532
- ;;
- pc98)
- basic_machine=i386-pc
- ;;
- pc98-*)
- basic_machine=i386-`echo $basic_machine | sed 's/^[^-]*-//'`
- ;;
- pentium | p5 | k5 | k6 | nexgen | viac3)
- basic_machine=i586-pc
- ;;
- pentiumpro | p6 | 6x86 | athlon | athlon_*)
- basic_machine=i686-pc
- ;;
- pentiumii | pentium2 | pentiumiii | pentium3)
- basic_machine=i686-pc
- ;;
- pentium4)
- basic_machine=i786-pc
- ;;
- pentium-* | p5-* | k5-* | k6-* | nexgen-* | viac3-*)
- basic_machine=i586-`echo $basic_machine | sed 's/^[^-]*-//'`
- ;;
- pentiumpro-* | p6-* | 6x86-* | athlon-*)
- basic_machine=i686-`echo $basic_machine | sed 's/^[^-]*-//'`
- ;;
- pentiumii-* | pentium2-* | pentiumiii-* | pentium3-*)
- basic_machine=i686-`echo $basic_machine | sed 's/^[^-]*-//'`
- ;;
- pentium4-*)
- basic_machine=i786-`echo $basic_machine | sed 's/^[^-]*-//'`
- ;;
- pn)
- basic_machine=pn-gould
- ;;
- power) basic_machine=power-ibm
- ;;
- ppc | ppcbe) basic_machine=powerpc-unknown
- ;;
- ppc-* | ppcbe-*)
- basic_machine=powerpc-`echo $basic_machine | sed 's/^[^-]*-//'`
- ;;
- ppcle | powerpclittle | ppc-le | powerpc-little)
- basic_machine=powerpcle-unknown
- ;;
- ppcle-* | powerpclittle-*)
- basic_machine=powerpcle-`echo $basic_machine | sed 's/^[^-]*-//'`
- ;;
- ppc64) basic_machine=powerpc64-unknown
- ;;
- ppc64-*) basic_machine=powerpc64-`echo $basic_machine | sed 's/^[^-]*-//'`
- ;;
- ppc64le | powerpc64little | ppc64-le | powerpc64-little)
- basic_machine=powerpc64le-unknown
- ;;
- ppc64le-* | powerpc64little-*)
- basic_machine=powerpc64le-`echo $basic_machine | sed 's/^[^-]*-//'`
- ;;
- ps2)
- basic_machine=i386-ibm
- ;;
- pw32)
- basic_machine=i586-unknown
- os=-pw32
- ;;
- rdos | rdos64)
- basic_machine=x86_64-pc
- os=-rdos
- ;;
- rdos32)
- basic_machine=i386-pc
- os=-rdos
- ;;
- rom68k)
- basic_machine=m68k-rom68k
- os=-coff
- ;;
- rm[46]00)
- basic_machine=mips-siemens
- ;;
- rtpc | rtpc-*)
- basic_machine=romp-ibm
- ;;
- s390 | s390-*)
- basic_machine=s390-ibm
- ;;
- s390x | s390x-*)
- basic_machine=s390x-ibm
- ;;
- sa29200)
- basic_machine=a29k-amd
- os=-udi
- ;;
- sb1)
- basic_machine=mipsisa64sb1-unknown
- ;;
- sb1el)
- basic_machine=mipsisa64sb1el-unknown
- ;;
- sde)
- basic_machine=mipsisa32-sde
- os=-elf
- ;;
- sei)
- basic_machine=mips-sei
- os=-seiux
- ;;
- sequent)
- basic_machine=i386-sequent
- ;;
- sh)
- basic_machine=sh-hitachi
- os=-hms
- ;;
- sh5el)
- basic_machine=sh5le-unknown
- ;;
- sh64)
- basic_machine=sh64-unknown
- ;;
- sparclite-wrs | simso-wrs)
- basic_machine=sparclite-wrs
- os=-vxworks
- ;;
- sps7)
- basic_machine=m68k-bull
- os=-sysv2
- ;;
- spur)
- basic_machine=spur-unknown
- ;;
- st2000)
- basic_machine=m68k-tandem
- ;;
- stratus)
- basic_machine=i860-stratus
- os=-sysv4
- ;;
- strongarm-* | thumb-*)
- basic_machine=arm-`echo $basic_machine | sed 's/^[^-]*-//'`
- ;;
- sun2)
- basic_machine=m68000-sun
- ;;
- sun2os3)
- basic_machine=m68000-sun
- os=-sunos3
- ;;
- sun2os4)
- basic_machine=m68000-sun
- os=-sunos4
- ;;
- sun3os3)
- basic_machine=m68k-sun
- os=-sunos3
- ;;
- sun3os4)
- basic_machine=m68k-sun
- os=-sunos4
- ;;
- sun4os3)
- basic_machine=sparc-sun
- os=-sunos3
- ;;
- sun4os4)
- basic_machine=sparc-sun
- os=-sunos4
- ;;
- sun4sol2)
- basic_machine=sparc-sun
- os=-solaris2
- ;;
- sun3 | sun3-*)
- basic_machine=m68k-sun
- ;;
- sun4)
- basic_machine=sparc-sun
- ;;
- sun386 | sun386i | roadrunner)
- basic_machine=i386-sun
- ;;
- sv1)
- basic_machine=sv1-cray
- os=-unicos
- ;;
- symmetry)
- basic_machine=i386-sequent
- os=-dynix
- ;;
- t3e)
- basic_machine=alphaev5-cray
- os=-unicos
- ;;
- t90)
- basic_machine=t90-cray
- os=-unicos
- ;;
- tile*)
- basic_machine=$basic_machine-unknown
- os=-linux-gnu
- ;;
- tx39)
- basic_machine=mipstx39-unknown
- ;;
- tx39el)
- basic_machine=mipstx39el-unknown
- ;;
- toad1)
- basic_machine=pdp10-xkl
- os=-tops20
- ;;
- tower | tower-32)
- basic_machine=m68k-ncr
- ;;
- tpf)
- basic_machine=s390x-ibm
- os=-tpf
- ;;
- udi29k)
- basic_machine=a29k-amd
- os=-udi
- ;;
- ultra3)
- basic_machine=a29k-nyu
- os=-sym1
- ;;
- v810 | necv810)
- basic_machine=v810-nec
- os=-none
- ;;
- vaxv)
- basic_machine=vax-dec
- os=-sysv
- ;;
- vms)
- basic_machine=vax-dec
- os=-vms
- ;;
- vpp*|vx|vx-*)
- basic_machine=f301-fujitsu
- ;;
- vxworks960)
- basic_machine=i960-wrs
- os=-vxworks
- ;;
- vxworks68)
- basic_machine=m68k-wrs
- os=-vxworks
- ;;
- vxworks29k)
- basic_machine=a29k-wrs
- os=-vxworks
- ;;
- w65*)
- basic_machine=w65-wdc
- os=-none
- ;;
- w89k-*)
- basic_machine=hppa1.1-winbond
- os=-proelf
- ;;
- xbox)
- basic_machine=i686-pc
- os=-mingw32
- ;;
- xps | xps100)
- basic_machine=xps100-honeywell
- ;;
- xscale-* | xscalee[bl]-*)
- basic_machine=`echo $basic_machine | sed 's/^xscale/arm/'`
- ;;
- ymp)
- basic_machine=ymp-cray
- os=-unicos
- ;;
- z8k-*-coff)
- basic_machine=z8k-unknown
- os=-sim
- ;;
- z80-*-coff)
- basic_machine=z80-unknown
- os=-sim
- ;;
- none)
- basic_machine=none-none
- os=-none
- ;;
-
-# Here we handle the default manufacturer of certain CPU types. It is in
-# some cases the only manufacturer, in others, it is the most popular.
- w89k)
- basic_machine=hppa1.1-winbond
- ;;
- op50n)
- basic_machine=hppa1.1-oki
- ;;
- op60c)
- basic_machine=hppa1.1-oki
- ;;
- romp)
- basic_machine=romp-ibm
- ;;
- mmix)
- basic_machine=mmix-knuth
- ;;
- rs6000)
- basic_machine=rs6000-ibm
- ;;
- vax)
- basic_machine=vax-dec
- ;;
- pdp10)
- # there are many clones, so DEC is not a safe bet
- basic_machine=pdp10-unknown
- ;;
- pdp11)
- basic_machine=pdp11-dec
- ;;
- we32k)
- basic_machine=we32k-att
- ;;
- sh[1234] | sh[24]a | sh[24]aeb | sh[34]eb | sh[1234]le | sh[23]ele)
- basic_machine=sh-unknown
- ;;
- sparc | sparcv8 | sparcv9 | sparcv9b | sparcv9v)
- basic_machine=sparc-sun
- ;;
- cydra)
- basic_machine=cydra-cydrome
- ;;
- orion)
- basic_machine=orion-highlevel
- ;;
- orion105)
- basic_machine=clipper-highlevel
- ;;
- mac | mpw | mac-mpw)
- basic_machine=m68k-apple
- ;;
- pmac | pmac-mpw)
- basic_machine=powerpc-apple
- ;;
- *-unknown)
- # Make sure to match an already-canonicalized machine name.
- ;;
- *)
- echo Invalid configuration \`$1\': machine \`$basic_machine\' not recognized 1>&2
- exit 1
- ;;
-esac
-
-# Here we canonicalize certain aliases for manufacturers.
-case $basic_machine in
- *-digital*)
- basic_machine=`echo $basic_machine | sed 's/digital.*/dec/'`
- ;;
- *-commodore*)
- basic_machine=`echo $basic_machine | sed 's/commodore.*/cbm/'`
- ;;
- *)
- ;;
-esac
-
-# Decode manufacturer-specific aliases for certain operating systems.
-
-if [ x"$os" != x"" ]
-then
-case $os in
- # First match some system type aliases
- # that might get confused with valid system types.
- # -solaris* is a basic system type, with this one exception.
- -auroraux)
- os=-auroraux
- ;;
- -solaris1 | -solaris1.*)
- os=`echo $os | sed -e 's|solaris1|sunos4|'`
- ;;
- -solaris)
- os=-solaris2
- ;;
- -svr4*)
- os=-sysv4
- ;;
- -unixware*)
- os=-sysv4.2uw
- ;;
- -gnu/linux*)
- os=`echo $os | sed -e 's|gnu/linux|linux-gnu|'`
- ;;
- # First accept the basic system types.
- # The portable systems comes first.
- # Each alternative MUST END IN A *, to match a version number.
- # -sysv* is not here because it comes later, after sysvr4.
- -gnu* | -bsd* | -mach* | -minix* | -genix* | -ultrix* | -irix* \
- | -*vms* | -sco* | -esix* | -isc* | -aix* | -cnk* | -sunos | -sunos[34]*\
- | -hpux* | -unos* | -osf* | -luna* | -dgux* | -auroraux* | -solaris* \
- | -sym* | -kopensolaris* | -plan9* \
- | -amigaos* | -amigados* | -msdos* | -newsos* | -unicos* | -aof* \
- | -aos* | -aros* \
- | -nindy* | -vxsim* | -vxworks* | -ebmon* | -hms* | -mvs* \
- | -clix* | -riscos* | -uniplus* | -iris* | -rtu* | -xenix* \
- | -hiux* | -386bsd* | -knetbsd* | -mirbsd* | -netbsd* \
- | -bitrig* | -openbsd* | -solidbsd* \
- | -ekkobsd* | -kfreebsd* | -freebsd* | -riscix* | -lynxos* \
- | -bosx* | -nextstep* | -cxux* | -aout* | -elf* | -oabi* \
- | -ptx* | -coff* | -ecoff* | -winnt* | -domain* | -vsta* \
- | -udi* | -eabi* | -lites* | -ieee* | -go32* | -aux* \
- | -chorusos* | -chorusrdb* | -cegcc* \
- | -cygwin* | -msys* | -pe* | -psos* | -moss* | -proelf* | -rtems* \
- | -mingw32* | -mingw64* | -linux-gnu* | -linux-android* \
- | -linux-newlib* | -linux-musl* | -linux-uclibc* \
- | -uxpv* | -beos* | -mpeix* | -udk* \
- | -interix* | -uwin* | -mks* | -rhapsody* | -darwin* | -opened* \
- | -openstep* | -oskit* | -conix* | -pw32* | -nonstopux* \
- | -storm-chaos* | -tops10* | -tenex* | -tops20* | -its* \
- | -os2* | -vos* | -palmos* | -uclinux* | -nucleus* \
- | -morphos* | -superux* | -rtmk* | -rtmk-nova* | -windiss* \
- | -powermax* | -dnix* | -nx6 | -nx7 | -sei* | -dragonfly* \
- | -skyos* | -haiku* | -rdos* | -toppers* | -drops* | -es*)
- # Remember, each alternative MUST END IN *, to match a version number.
- ;;
- -qnx*)
- case $basic_machine in
- x86-* | i*86-*)
- ;;
- *)
- os=-nto$os
- ;;
- esac
- ;;
- -nto-qnx*)
- ;;
- -nto*)
- os=`echo $os | sed -e 's|nto|nto-qnx|'`
- ;;
- -sim | -es1800* | -hms* | -xray | -os68k* | -none* | -v88r* \
- | -windows* | -osx | -abug | -netware* | -os9* | -beos* | -haiku* \
- | -macos* | -mpw* | -magic* | -mmixware* | -mon960* | -lnews*)
- ;;
- -mac*)
- os=`echo $os | sed -e 's|mac|macos|'`
- ;;
- -linux-dietlibc)
- os=-linux-dietlibc
- ;;
- -linux*)
- os=`echo $os | sed -e 's|linux|linux-gnu|'`
- ;;
- -sunos5*)
- os=`echo $os | sed -e 's|sunos5|solaris2|'`
- ;;
- -sunos6*)
- os=`echo $os | sed -e 's|sunos6|solaris3|'`
- ;;
- -opened*)
- os=-openedition
- ;;
- -os400*)
- os=-os400
- ;;
- -wince*)
- os=-wince
- ;;
- -osfrose*)
- os=-osfrose
- ;;
- -osf*)
- os=-osf
- ;;
- -utek*)
- os=-bsd
- ;;
- -dynix*)
- os=-bsd
- ;;
- -acis*)
- os=-aos
- ;;
- -atheos*)
- os=-atheos
- ;;
- -syllable*)
- os=-syllable
- ;;
- -386bsd)
- os=-bsd
- ;;
- -ctix* | -uts*)
- os=-sysv
- ;;
- -nova*)
- os=-rtmk-nova
- ;;
- -ns2 )
- os=-nextstep2
- ;;
- -nsk*)
- os=-nsk
- ;;
- # Preserve the version number of sinix5.
- -sinix5.*)
- os=`echo $os | sed -e 's|sinix|sysv|'`
- ;;
- -sinix*)
- os=-sysv4
- ;;
- -tpf*)
- os=-tpf
- ;;
- -triton*)
- os=-sysv3
- ;;
- -oss*)
- os=-sysv3
- ;;
- -svr4)
- os=-sysv4
- ;;
- -svr3)
- os=-sysv3
- ;;
- -sysvr4)
- os=-sysv4
- ;;
- # This must come after -sysvr4.
- -sysv*)
- ;;
- -ose*)
- os=-ose
- ;;
- -es1800*)
- os=-ose
- ;;
- -xenix)
- os=-xenix
- ;;
- -*mint | -mint[0-9]* | -*MiNT | -MiNT[0-9]*)
- os=-mint
- ;;
- -aros*)
- os=-aros
- ;;
- -zvmoe)
- os=-zvmoe
- ;;
- -dicos*)
- os=-dicos
- ;;
- -nacl*)
- ;;
- -none)
- ;;
- *)
- # Get rid of the `-' at the beginning of $os.
- os=`echo $os | sed 's/[^-]*-//'`
- echo Invalid configuration \`$1\': system \`$os\' not recognized 1>&2
- exit 1
- ;;
-esac
-else
-
-# Here we handle the default operating systems that come with various machines.
-# The value should be what the vendor currently ships out the door with their
-# machine or put another way, the most popular os provided with the machine.
-
-# Note that if you're going to try to match "-MANUFACTURER" here (say,
-# "-sun"), then you have to tell the case statement up towards the top
-# that MANUFACTURER isn't an operating system. Otherwise, code above
-# will signal an error saying that MANUFACTURER isn't an operating
-# system, and we'll never get to this point.
-
-case $basic_machine in
- score-*)
- os=-elf
- ;;
- spu-*)
- os=-elf
- ;;
- *-acorn)
- os=-riscix1.2
- ;;
- arm*-rebel)
- os=-linux
- ;;
- arm*-semi)
- os=-aout
- ;;
- c4x-* | tic4x-*)
- os=-coff
- ;;
- c8051-*)
- os=-elf
- ;;
- hexagon-*)
- os=-elf
- ;;
- tic54x-*)
- os=-coff
- ;;
- tic55x-*)
- os=-coff
- ;;
- tic6x-*)
- os=-coff
- ;;
- # This must come before the *-dec entry.
- pdp10-*)
- os=-tops20
- ;;
- pdp11-*)
- os=-none
- ;;
- *-dec | vax-*)
- os=-ultrix4.2
- ;;
- m68*-apollo)
- os=-domain
- ;;
- i386-sun)
- os=-sunos4.0.2
- ;;
- m68000-sun)
- os=-sunos3
- ;;
- m68*-cisco)
- os=-aout
- ;;
- mep-*)
- os=-elf
- ;;
- mips*-cisco)
- os=-elf
- ;;
- mips*-*)
- os=-elf
- ;;
- or1k-*)
- os=-elf
- ;;
- or32-*)
- os=-coff
- ;;
- *-tti) # must be before sparc entry or we get the wrong os.
- os=-sysv3
- ;;
- sparc-* | *-sun)
- os=-sunos4.1.1
- ;;
- *-be)
- os=-beos
- ;;
- *-haiku)
- os=-haiku
- ;;
- *-ibm)
- os=-aix
- ;;
- *-knuth)
- os=-mmixware
- ;;
- *-wec)
- os=-proelf
- ;;
- *-winbond)
- os=-proelf
- ;;
- *-oki)
- os=-proelf
- ;;
- *-hp)
- os=-hpux
- ;;
- *-hitachi)
- os=-hiux
- ;;
- i860-* | *-att | *-ncr | *-altos | *-motorola | *-convergent)
- os=-sysv
- ;;
- *-cbm)
- os=-amigaos
- ;;
- *-dg)
- os=-dgux
- ;;
- *-dolphin)
- os=-sysv3
- ;;
- m68k-ccur)
- os=-rtu
- ;;
- m88k-omron*)
- os=-luna
- ;;
- *-next )
- os=-nextstep
- ;;
- *-sequent)
- os=-ptx
- ;;
- *-crds)
- os=-unos
- ;;
- *-ns)
- os=-genix
- ;;
- i370-*)
- os=-mvs
- ;;
- *-next)
- os=-nextstep3
- ;;
- *-gould)
- os=-sysv
- ;;
- *-highlevel)
- os=-bsd
- ;;
- *-encore)
- os=-bsd
- ;;
- *-sgi)
- os=-irix
- ;;
- *-siemens)
- os=-sysv4
- ;;
- *-masscomp)
- os=-rtu
- ;;
- f30[01]-fujitsu | f700-fujitsu)
- os=-uxpv
- ;;
- *-rom68k)
- os=-coff
- ;;
- *-*bug)
- os=-coff
- ;;
- *-apple)
- os=-macos
- ;;
- *-atari*)
- os=-mint
- ;;
- *)
- os=-none
- ;;
-esac
-fi
-
-# Here we handle the case where we know the os, and the CPU type, but not the
-# manufacturer. We pick the logical manufacturer.
-vendor=unknown
-case $basic_machine in
- *-unknown)
- case $os in
- -riscix*)
- vendor=acorn
- ;;
- -sunos*)
- vendor=sun
- ;;
- -cnk*|-aix*)
- vendor=ibm
- ;;
- -beos*)
- vendor=be
- ;;
- -hpux*)
- vendor=hp
- ;;
- -mpeix*)
- vendor=hp
- ;;
- -hiux*)
- vendor=hitachi
- ;;
- -unos*)
- vendor=crds
- ;;
- -dgux*)
- vendor=dg
- ;;
- -luna*)
- vendor=omron
- ;;
- -genix*)
- vendor=ns
- ;;
- -mvs* | -opened*)
- vendor=ibm
- ;;
- -os400*)
- vendor=ibm
- ;;
- -ptx*)
- vendor=sequent
- ;;
- -tpf*)
- vendor=ibm
- ;;
- -vxsim* | -vxworks* | -windiss*)
- vendor=wrs
- ;;
- -aux*)
- vendor=apple
- ;;
- -hms*)
- vendor=hitachi
- ;;
- -mpw* | -macos*)
- vendor=apple
- ;;
- -*mint | -mint[0-9]* | -*MiNT | -MiNT[0-9]*)
- vendor=atari
- ;;
- -vos*)
- vendor=stratus
- ;;
- esac
- basic_machine=`echo $basic_machine | sed "s/unknown/$vendor/"`
- ;;
-esac
-
-echo $basic_machine$os
-exit
-
-# Local variables:
-# eval: (add-hook 'write-file-hooks 'time-stamp)
-# time-stamp-start: "timestamp='"
-# time-stamp-format: "%:y-%02m-%02d"
-# time-stamp-end: "'"
-# End:
diff --git a/configh.in b/configh.in
deleted file mode 100644
index 73a28fa2c..000000000
--- a/configh.in
+++ /dev/null
@@ -1,342 +0,0 @@
-/*
- * Configuration file for the Fast Light Tool Kit (FLTK).
- *
- * Copyright 1998-2024 by Bill Spitzak and others.
- *
- * This library is free software. Distribution and use rights are outlined in
- * the file "COPYING" which should have been included with this file. If this
- * file is missing or damaged, see the license at:
- *
- * https://www.fltk.org/COPYING.php
- *
- * Please see the following page on how to report bugs and issues:
- *
- * https://www.fltk.org/bugs.php
- */
-
-/*
- * Note: configure syntax vs. CMake syntax in source files (examples):
- *
- * configh.in configh.cmake.in
- * --------------------- ----------------------------
- * [#]define HAVE_GL 0 [#]cmakedefine01 HAVE_GL
- * [#]undef HAVE_SNPRINTF [#]cmakedefine HAVE_SNPRINTF 1
- *
- * The former defines the given macro either as 0 or 1,
- * the latter either does not define the macro or defines it as 1.
- */
-
-/*
- * Always include the public build configuration header
- */
-
-#include
-
-/*
- * Where to find files...
- */
-
-#define FLTK_DATADIR ""
-#define FLTK_DOCDIR ""
-
-/*
- * BORDER_WIDTH:
- *
- * Thickness of FL_UP_BOX and FL_DOWN_BOX. Current 1,2, and 3 are
- * supported.
- *
- * 3 is the historic FLTK look.
- * 2 is the default and looks like Microsoft Windows, KDE, and Qt.
- * 1 is a plausible future evolution...
- *
- * Note that this may be simulated at runtime by redefining the boxtypes
- * using Fl::set_boxtype().
- */
-
-#define BORDER_WIDTH 2
-
-/*
- * HAVE_GL:
- *
- * Do you have OpenGL? Set this to 0 if you don't have or plan to use
- * OpenGL, and FLTK will be smaller.
- */
-
-#define HAVE_GL 0
-
-/*
- * HAVE_GL_GLU_H:
- *
- * Do you have the OpenGL Utility Library header file?
- * (many broken Mesa RPMs do not...)
- */
-
-#define HAVE_GL_GLU_H 0
-
-/*
- * HAVE_GLXGETPROCADDRESSARB:
- *
- * Do you have the OpenGL glXGetProcAddressARB() function?
- */
-
-#undef HAVE_GLXGETPROCADDRESSARB
-
-/*
- * USE_COLORMAP:
- *
- * Setting this to zero will save a good deal of code (especially for
- * fl_draw_image), but FLTK will only work on TrueColor visuals.
- */
-
-#define USE_COLORMAP 1
-
-/*
- * HAVE_XINERAMA
- *
- * Do we have the Xinerama library to support multi-head displays?
- */
-
-#define HAVE_XINERAMA 0
-
-/*
- * USE_XFT
- *
- * Use the Xft library to draw anti-aliased text.
- */
-
-#define USE_XFT 0
-
-/*
- * USE_PANGO
- *
- * Use the pango library to draw UTF-8 text.
- */
-
-#define USE_PANGO 0
-
-/*
- * HAVE_XFIXES:
- *
- * Do we have the X fixes extension?
- */
-
-#define HAVE_XFIXES 0
-
-/*
- * HAVE_XCURSOR:
- *
- * Do we have the X cursor library?
- */
-
-#define HAVE_XCURSOR 0
-
-/*
- * HAVE_XRENDER:
- *
- * Do we have the X render library?
- */
-
-#define HAVE_XRENDER 0
-
-/*
- * HAVE_X11_XREGION_H:
- *
- * Do we have the X11 Xregion.h header file ?
- */
-
-#define HAVE_X11_XREGION_H 0
-
-/*
- * HAVE_GL_OVERLAY:
- *
- * It is possible your GL has an overlay even if X does not. If so,
- * set this to 1.
- */
-
-#define HAVE_GL_OVERLAY 0
-
-/*
- * WORDS_BIGENDIAN:
- *
- * Byte order of your machine: 1 = big-endian, 0 = little-endian.
- */
-
-#ifdef __APPLE__
-#include
-#else
-#define WORDS_BIGENDIAN 0
-#endif
-
-/*
- * U16, U32, U64:
- *
- * Types used by fl_draw_image. One of U32 or U64 must be defined.
- * U16 is optional but FLTK will work better with it!
- */
-
-#undef U16
-#undef U32
-#undef U64
-
-/*
- * HAVE_DIRENT_H, HAVE_SYS_NDIR_H, HAVE_SYS_DIR_H, HAVE_NDIR_H,
- * HAVE_SCANDIR, HAVE_SCANDIR_POSIX:
- *
- * Where is (used only by fl_file_chooser and scandir).
- */
-
-#undef HAVE_DIRENT_H
-#undef HAVE_SYS_NDIR_H
-#undef HAVE_SYS_DIR_H
-#undef HAVE_NDIR_H
-#undef HAVE_SCANDIR
-#undef HAVE_SCANDIR_POSIX
-
-/*
- * Possibly missing sprintf-style functions:
- */
-
-#undef HAVE_VSNPRINTF
-#undef HAVE_SNPRINTF
-
-/*
- * String functions and headers...
- */
-
-#undef HAVE_STRINGS_H
-#undef HAVE_STRCASECMP
-#undef HAVE_STRLCAT
-#undef HAVE_STRLCPY
-
-/*
- * Do we have POSIX locale support?
- */
-
-#undef HAVE_LOCALE_H
-#undef HAVE_LOCALECONV
-
-/*
- * HAVE_SYS_SELECT_H:
- *
- * Whether or not select() call has its own header file.
- */
-
-#define HAVE_SYS_SELECT_H 0
-
-/*
- * HAVE_SYS_STDTYPES_H:
- *
- * Whether or not we have the header file.
- */
-
-#undef HAVE_SYS_STDTYPES_H
-
-/*
- * USE_POLL:
- *
- * Use the poll() call provided on Linux and Irix instead of select()
- */
-
-#define USE_POLL 0
-
-/*
- * HAVE_SETENV:
- *
- * Whether or not POSIX setenv() is available from stdlib.h.
- */
-
-#define HAVE_SETENV 0
-
-/*
- * HAVE_TRUNC:
- *
- * Whether or not POSIX trunc() is available from math.h.
- */
-
-#define HAVE_TRUNC 0
-
-/*
- * Do we have various image libraries?
- */
-
-#undef HAVE_LIBPNG
-#undef HAVE_LIBZ
-#undef HAVE_LIBJPEG
-
-/*
- * Which header file do we include for libpng?
- * ifdef HAVE_PNG_H :
- * else :
- * There is no other choice.
- */
-
-#undef HAVE_PNG_H
-
-/*
- * Do we have the png_xyz() functions?
- */
-
-#undef HAVE_PNG_GET_VALID
-#undef HAVE_PNG_SET_TRNS_TO_ALPHA
-
-
-/*
- * Do we have POSIX threading?
- */
-
-#undef HAVE_PTHREAD
-#undef HAVE_PTHREAD_H
-
-/*
- * Do we have PTHREAD_MUTEX_RECURSIVE?
- */
-
-#undef HAVE_PTHREAD_MUTEX_RECURSIVE
-
-/*
- * Do we have the ALSA library?
- */
-
-#undef HAVE_ALSA_ASOUNDLIB_H
-
-/*
- * Do we have the long long type?
- */
-
-#undef HAVE_LONG_LONG
-
-#ifdef HAVE_LONG_LONG
-# define FLTK_LLFMT "%lld"
-# define FLTK_LLCAST (long long)
-#else
-# define FLTK_LLFMT "%ld"
-# define FLTK_LLCAST (long)
-#endif /* HAVE_LONG_LONG */
-
-/*
- * Do we have the dlsym() function and header?
- */
-
-#define HAVE_DLFCN_H 0
-#define HAVE_DLSYM 0
-
-/*
- * Do we want print support?
- */
-
-#undef FL_NO_PRINT_SUPPORT
-
-/*
- * Do we use GDI+ to get antialiased graphics?
- */
-
-#ifdef _WIN32
-#define USE_GDIPLUS 0
-#endif
-
-/*
- * Do we want filename handling and a filechooser?
- * *FIXME* FL_CFG_NO_FILESYSTEM_SUPPORT not yet implemented in configure !
- */
-
-#undef FL_CFG_NO_FILESYSTEM_SUPPORT
diff --git a/configure.ac b/configure.ac
deleted file mode 100644
index 2127a35f3..000000000
--- a/configure.ac
+++ /dev/null
@@ -1,1969 +0,0 @@
-dnl -*- sh -*-
-dnl the "configure" script is made from this by running GNU "autoconf"
-dnl
-dnl Configuration script for the Fast Light Tool Kit (FLTK).
-dnl
-dnl Copyright 1998-2025 by Bill Spitzak and others.
-dnl
-dnl This library is free software. Distribution and use rights are outlined in
-dnl the file "COPYING" which should have been included with this file. If this
-dnl file is missing or damaged, see the license at:
-dnl
-dnl https://www.fltk.org/COPYING.php
-dnl
-dnl Please see the following page on how to report bugs and issues:
-dnl
-dnl https://www.fltk.org/bugs.php
-dnl
-
-dnl We need at least autoconf 2.50...
-AC_PREREQ([2.50])
-
-
-dnl Package name and version
-AC_INIT([fltk], [1.4.2], [https://github.com/fltk/fltk/issues], [fltk], [https://www.fltk.org/])
-
-FLTK_VERSION="AC_PACKAGE_VERSION"
-FLTK_VERSION_MAJOR=$(echo AC_PACKAGE_VERSION | awk -F. '{print $1}')
-FLTK_VERSION_MINOR=$(echo AC_PACKAGE_VERSION | awk -F. '{print $2}')
-FLTK_VERSION_PATCH=$(echo AC_PACKAGE_VERSION | awk -F. '{print $3}')
-
-FL_DSO_VERSION="${FLTK_VERSION_MAJOR}.${FLTK_VERSION_MINOR}"
-FL_ABI_VERSION="${FLTK_VERSION_MAJOR}.${FLTK_VERSION_MINOR}.0"
-
-AC_SUBST(FLTK_VERSION)
-AC_SUBST(FLTK_VERSION_MAJOR)
-AC_SUBST(FLTK_VERSION_MINOR)
-AC_SUBST(FLTK_VERSION_PATCH)
-AC_SUBST(FL_DSO_VERSION)
-AC_SUBST(FL_ABI_VERSION)
-
-
-dnl Required file in package...
-AC_CONFIG_SRCDIR([src/Fl.cxx])
-
-
-AC_CANONICAL_HOST
-
-
-dnl determine whether we're cross-compiling
-AS_IF([test "$host" != "$build"], [
- fltk_cross_compiling="yes"
-], [
- fltk_cross_compiling="no"
-])
-
-
-dnl Do not automatically add "-g" to compiler options...
-dnl This must be _before_ "Find compiler commands..."
-CFLAGS="${CFLAGS:=}"
-CPPFLAGS="${CPPFLAGS:=}"
-CXXFLAGS="${CXXFLAGS:=}"
-DSOFLAGS="${DSOFLAGS:=}"
-LDFLAGS="${LDFLAGS:=}"
-LIBS="${LDFLAGS:=}"
-
-
-dnl Find common commands...
-AC_PROG_CC
-AC_PROG_CXX
-AC_PATH_TOOL(PKGCONFIG, pkg-config)
-
-
-dnl Architecture and optimization options...
-ARCHFLAGS="${ARCHFLAGS:=}"
-AC_ARG_WITH([archflags], AS_HELP_STRING([--with-archflags="flags"], [use custom architecture flags (default=none, macOS values include "-arch arm64", "-arch i386", "-arch ppc", and "-arch x86_64")]), [
- ARCHFLAGS="$withval"
-])
-AC_SUBST(ARCHFLAGS)
-
-OPTIM="${OPTIM:=}"
-AC_ARG_WITH(optim, AS_HELP_STRING([--with-optim="flags"], [use custom optimization flags]), [
- OPTIM="$withval"
-])
-AC_SUBST(OPTIM)
-
-
-dnl Other options
-AC_ARG_ENABLE([cairo], AS_HELP_STRING([--enable-cairo], [add support for Fl_Cairo_Window]))
-AC_ARG_ENABLE([cairoext], AS_HELP_STRING([--enable-cairoext], [use FLTK code instrumentation for Cairo extended use]))
-
-AC_ARG_ENABLE([cp936], AS_HELP_STRING([--enable-cp936], [turn on CP936]))
-AS_IF([test x$enable_cp936 = xyes], [
- CFLAGS="$CFLAGS -DCP936"
-])
-
-AC_ARG_ENABLE([cygwin], AS_HELP_STRING([--enable-cygwin], [use the Cygwin DLL (default=no)]))
-
-AC_ARG_ENABLE([debug], AS_HELP_STRING([--enable-debug], [turn on debugging]))
-AS_IF([test x$enable_debug = xyes], [
- DEBUGFLAG="-g "
-], [
- DEBUGFLAG=""
-])
-
-AC_ARG_ENABLE([test], AS_HELP_STRING([--disable-test], [build test programs (default=yes)]))
-AS_IF([test x$enable_test = xno], [
- TESTDIR=""
-], [
- TESTDIR="test"
-])
-AC_SUBST(TESTDIR)
-
-AC_ARG_ENABLE([forms], AS_HELP_STRING([--disable-forms], [build Forms compatibility library (default=yes)]))
-
-AC_ARG_ENABLE([gl], AS_HELP_STRING([--disable-gl], [turn off OpenGL support]))
-
-AC_ARG_ENABLE([localjpeg], AS_HELP_STRING([--enable-localjpeg], [use local JPEG library (default=auto)]))
-AC_ARG_ENABLE([localpng], AS_HELP_STRING([--enable-localpng], [use local PNG library (default=auto)]))
-AC_ARG_ENABLE([localzlib], AS_HELP_STRING([--enable-localzlib], [use local ZLIB library (default=auto)]))
-
-AC_ARG_ENABLE([pango], AS_HELP_STRING([--enable-pango], [turn on Pango support]))
-
-AC_ARG_ENABLE([wayland], AS_HELP_STRING([--disable-wayland], [turn off hybrid Wayland/X11 support]))
-
-AC_ARG_ENABLE([usecairo], AS_HELP_STRING([--enable-usecairo], [all drawing to X11 windows uses Cairo]))
-
-AC_ARG_ENABLE([use_std], AS_HELP_STRING([--enable-use_std], [allow FLTK to use std::string etc.]))
-
-AC_ARG_ENABLE([print], AS_HELP_STRING([--disable-print], [turn off print support (X11)]))
-AS_IF([test x$enable_print = xno], [
- AC_DEFINE([FL_NO_PRINT_SUPPORT], [Disable X11 print support?])
-])
-
-AC_ARG_ENABLE([shared], AS_HELP_STRING([--enable-shared], [turn on shared libraries]))
-
-AC_ARG_ENABLE([svg], AS_HELP_STRING([--disable-svg], [disable SVG support]))
-AS_IF([test x$enable_svg != xno], [
- AC_DEFINE([FLTK_USE_SVG], 1, [SVG image support])
-])
-
-AC_ARG_ENABLE([threads], AS_HELP_STRING([--disable-threads], [turn off multi-threading support]))
-
-AC_ARG_ENABLE([x11], AS_HELP_STRING([--enable-x11], [use X11 with Cygwin or macOS (default=no)]))
-
-AC_ARG_ENABLE([xcursor], AS_HELP_STRING([--disable-xcursor], [turn off Xcursor support]))
-
-AC_ARG_ENABLE([xfixes], AS_HELP_STRING([--disable-xfixes], [turn off Xfixes support]))
-
-AC_ARG_ENABLE([xft], AS_HELP_STRING([--disable-xft], [turn off Xft support]))
-
-AC_ARG_ENABLE([xinerama], AS_HELP_STRING([--disable-xinerama], [turn off Xinerama support]))
-
-AC_ARG_ENABLE([xrender], AS_HELP_STRING([--disable-xrender], [turn off Xrender support]))
-
-AC_ARG_ENABLE([fluid], AS_HELP_STRING([--disable-fluid], [turn off fluid building]))
-
-AS_CASE([$host_os], [cygwin* | mingw*], [
- AC_ARG_ENABLE([gdiplus], AS_HELP_STRING([--disable-gdiplus], [don't use GDI+ for antialiased graphics]))
-
- gdiplus_found=no
- AS_IF([test x$enable_gdiplus != xno], [
- AC_CHECK_HEADERS([wtypes.h gdiplus.h], [
- AC_DEFINE([USE_GDIPLUS])
- LIBS="-lgdiplus $LIBS"
- gdiplus_found=yes
- ], [],
- [[#include ]])
- ])
-
-])
-
-AS_IF([test x$enable_pango = xyes -a x$enable_xft = xno], [
- AC_MSG_ERROR([--disable-xft and --enable-pango are incompatible because Xft is necessary for Pango.])
-])
-
-
-dnl So --with-archflags option is used during "checking size of long"
-# TODO: Fix long long test
-AS_IF([test "x$with_archflags" != x], [
- CFLAGS="$CFLAGS $with_archflags"
-])
-
-dnl FLTK build options to be used in Makefiles (defined in makeinclude)
-BUILD=""
-
-
-dnl OS-specific pre-tests...
-dnl host_os_gui equals $host_os unless we target Cygwin or Darwin in combination with X11.
-host_os_gui=$host_os
-AS_CASE([$host_os], [cygwin*], [
- # Handle Cygwin option *first*, before all other tests.
- AS_IF([test x$enable_cygwin = xyes], [
- # we target Cygwin in combination with X11
- AS_IF([test x$enable_x11 = xyes], [
- host_os_gui="X11$host_os"
- ])
- ])
-], [darwin*], [
- AS_IF([test x$enable_x11 = xyes], [
- host_os_gui="X11"
- macosversion=$(sw_vers -productVersion | cut -d. -f2)
- macosversion_maj=$(sw_vers -productVersion | cut -d. -f1)
- AS_IF([test $macosversion_maj -ge 11 -o $macosversion -ge 13], [
- CXXFLAGS="$CXXFLAGS -mmacosx-version-min=10.9 -D_LIBCPP_HAS_THREAD_API_PTHREAD"
- ])
- ])
-])
-
-
-dnl Define the libraries and link options we will need.
-LINKFLTK="../lib/libfltk.a"
-LINKFLTKGL="../lib/libfltk_gl.a"
-LINKFLTKIMG="../lib/libfltk_images.a"
-GLDEMOS="gldemos"
-
-LIBEXT=".a"
-LIBNAME="../lib/libfltk.a"
-GLLIBNAME="../lib/libfltk_gl.a"
-IMGLIBNAME="../lib/libfltk_images.a"
-CAIROLIBNAME="../lib/libfltk_cairo.a"
-
-LIBBASENAME="libfltk.a"
-GLLIBBASENAME="libfltk_gl.a"
-IMGLIBBASENAME="libfltk_images.a"
-CAIROLIBBASENAME="libfltk_cairo.a"
-
-dnl set library names etc. for the optional forms library and set 'build_forms'
-dnl to make conditional code independent of the default value of 'enable_forms'
-dnl which is 'yes' (enabled) in 1.4.0 (default may be changed later)
-AS_IF([test x$enable_forms != xno], [
- build_forms="yes"
- LINKFLTKFORMS="../lib/libfltk_forms.a"
- FLLIBNAME="../lib/libfltk_forms.a"
- FLLIBBASENAME="libfltk_forms.a"
- AC_DEFINE([FLTK_HAVE_FORMS])
-], [
- build_forms="no"
- LINKFLTKFORMS=""
- FLLIBNAME=""
- FLLIBBASENAME=""
-])
-
-
-dnl Check for Cairo library unless disabled...
-CAIRODIR=""
-CAIROFLAGS=""
-LINKFLTKCAIRO=""
-FLTKCAIROOPTION=""
-CAIROLIBS=""
-
-AS_IF([test x$enable_cairoext = xyes], [
- AS_IF([$PKGCONFIG --exists cairo], [
- AC_DEFINE([FLTK_HAVE_CAIROEXT])
- AC_DEFINE([FLTK_HAVE_CAIRO])
- CAIRODIR="cairo"
- CAIROFLAGS="$($PKGCONFIG --cflags cairo)"
- CAIROLIBS="$($PKGCONFIG --libs cairo)"
- CXXFLAGS="$CAIROFLAGS $CXXFLAGS"
- LINKFLTKCAIRO="../lib/libfltk_cairo.a"
- FLTKCAIROOPTION="-L ../cairo -lfltk_cairo$SHAREDSUFFIX"
- LIBS="$CAIROLIBS $LIBS"
- LINKFLTK="$LINKFLTK $LINKFLTKCAIRO"
- ], [
- AC_MSG_ERROR([Cairo requested but not found.])
- ])
-], [test x$enable_cairo = xyes], [
- AS_IF([$PKGCONFIG --exists cairo], [
- AC_DEFINE(FLTK_HAVE_CAIRO)
- CAIRODIR="cairo"
- CAIROFLAGS="$($PKGCONFIG --cflags cairo)"
- CAIROLIBS="$($PKGCONFIG --libs cairo)"
- CXXFLAGS="$CAIROFLAGS $CXXFLAGS"
- LINKFLTKCAIRO="../lib/libfltk_cairo.a"
- FLTKCAIROOPTION="-L ../cairo -lfltk_cairo$SHAREDSUFFIX"
- ], [
- AC_MSG_ERROR([Cairo requested but not found.])
- ])
-])
-
-AC_SUBST(CAIRODIR)
-AC_SUBST(CAIROFLAGS)
-AC_SUBST(CAIROLIBS)
-AC_SUBST(LINKFLTKCAIRO)
-AC_SUBST(FLTKCAIROOPTION)
-
-AC_SUBST(GLDEMOS)
-AC_SUBST(GLLIBNAME)
-AC_SUBST(IMGLIBNAME)
-AC_SUBST(CAIROLIBNAME)
-AC_SUBST(LIBEXT)
-AC_SUBST(LIBNAME)
-AC_SUBST(LINKFLTK)
-AC_SUBST(LINKFLTKGL)
-AC_SUBST(LINKFLTKIMG)
-
-AC_SUBST(LIBBASENAME)
-AC_SUBST(GLLIBBASENAME)
-AC_SUBST(IMGLIBBASENAME)
-AC_SUBST(CAIROLIBBASENAME)
-
-AC_ARG_WITH([abiversion], AS_HELP_STRING([--with-abiversion], [Build with FL_ABI_VERSION, e.g. 10304 for FLTK 1.3.4]))
-has_abiversion="$with_abiversion"
-AS_IF([test "x$has_abiversion" = xyes -o "x$has_abiversion" = xno], [
- has_abiversion=""
-])
-AS_IF([test "x$has_abiversion" != x], [
- AC_DEFINE_UNQUOTED([FL_ABI_VERSION], [$has_abiversion], [ABI version number])
-])
-
-
-dnl Handle compile-time options...
-AS_IF([test "x$enable_shared" = xyes], [
- PICFLAG=1
- SHAREDSUFFIX=""
- FLUID="fluid-shared"
- FLTK_OPTIONS="fltk-options-shared"
-
- AS_CASE([$host_os], [darwin*], [
- DSONAME="libfltk.$FL_DSO_VERSION.dylib"
- FLDSONAME="libfltk_forms.$FL_DSO_VERSION.dylib"
- GLDSONAME="libfltk_gl.$FL_DSO_VERSION.dylib"
- IMGDSONAME="libfltk_images.$FL_DSO_VERSION.dylib"
- CAIRODSONAME="libfltk_cairo.$FL_DSO_VERSION.dylib"
- DSOCOMMAND="\$(CXX) \$(ARCHFLAGS) \$(DSOFLAGS) -dynamiclib -lc -o"
- ], [solaris*], [
- DSONAME="libfltk.so.$FL_DSO_VERSION"
- FLDSONAME="libfltk_forms.so.$FL_DSO_VERSION"
- GLDSONAME="libfltk_gl.so.$FL_DSO_VERSION"
- IMGDSONAME="libfltk_images.so.$FL_DSO_VERSION"
- CAIRODSONAME="libfltk_cairo.so.$FL_DSO_VERSION"
- DSOCOMMAND="\$(CXX) \$(DSOFLAGS) -Wl,-soname,\$@ \$(LDLIBS) -shared -fPIC $DEBUGFLAG -o"
- AS_IF([test "x$libdir" != "x/usr/lib"], [
- DSOLINK="-R$libdir"
- ])
- ], [hpux*], [
- DSONAME="libfltk.sl.$FL_DSO_VERSION"
- FLDSONAME="libfltk_forms.sl.$FL_DSO_VERSION"
- GLDSONAME="libfltk_gl.sl.$FL_DSO_VERSION"
- IMGDSONAME="libfltk_images.sl.$FL_DSO_VERSION"
- CAIRODSONAME="libfltk_cairo.sl.$FL_DSO_VERSION"
- DSOCOMMAND="ld \$(DSOFLAGS) -b -z +h \$@ $DEBUGFLAG -o"
- AS_IF([test "x$libdir" != "x/usr/lib"], [
- DSOLINK="-Wl,-rpath,$libdir"
- ])
- ], [irix*], [
- DSONAME="libfltk.so.$FL_DSO_VERSION"
- FLDSONAME="libfltk_forms.so.$FL_DSO_VERSION"
- GLDSONAME="libfltk_gl.so.$FL_DSO_VERSION"
- IMGDSONAME="libfltk_images.so.$FL_DSO_VERSION"
- CAIRODSONAME="libfltk_cairo.so.$FL_DSO_VERSION"
- DSOCOMMAND="\$(CXX) \$(DSOFLAGS) -Wl,-soname,\$@,-set_version,sgi1.1 \$(LDLIBS) -shared $DEBUGFLAG -o"
- AS_IF([test "x$libdir" != "x/usr/lib" -a "x$libdir" != "x/usr/lib32" -a "x$libdir" != "x/usr/lib64"], [
- DSOLINK="-Wl,-rpath,$libdir"
- ])
- ], [osf*], [
- DSONAME="libfltk.so.$FL_DSO_VERSION"
- FLDSONAME="libfltk_forms.so.$FL_DSO_VERSION"
- GLDSONAME="libfltk_gl.so.$FL_DSO_VERSION"
- IMGDSONAME="libfltk_images.so.$FL_DSO_VERSION"
- CAIRODSONAME="libfltk_cairo.so.$FL_DSO_VERSION"
- DSOCOMMAND="\$(CXX) \$(DSOFLAGS) -Wl,-soname,\$@ \$(LDLIBS) -shared $DEBUGFLAG -o"
- AS_IF([test "x$libdir" != "x/usr/lib" -a "x$libdir" != "x/usr/lib32"], [
- DSOLINK="-Wl,-rpath,$libdir"
- ])
- ], [linux*|*bsd*], [
- DSONAME="libfltk.so.$FL_DSO_VERSION"
- FLDSONAME="libfltk_forms.so.$FL_DSO_VERSION"
- GLDSONAME="libfltk_gl.so.$FL_DSO_VERSION"
- IMGDSONAME="libfltk_images.so.$FL_DSO_VERSION"
- CAIRODSONAME="libfltk_cairo.so.$FL_DSO_VERSION"
- DSOCOMMAND="\$(CXX) \$(DSOFLAGS) -Wl,-soname,\$@ \$(LDLIBS) -shared -fPIC $DEBUGFLAG -o"
-
- # See if the compiler supports -fvisibility...
- AC_CACHE_CHECK([if the compiler supports -fvisibility], ac_cv_cxx_fvisibility, [
- OLDCXXFLAGS="$CXXFLAGS"
- CXXFLAGS="$CXXFLAGS -fvisibility=hidden"
- AC_LANG_PUSH([C++])
- AC_COMPILE_IFELSE(
- [AC_LANG_PROGRAM([[]], [[]])],
- [ac_cv_cxx_fvisibility=yes],
- [ac_cv_cxx_fvisibility=no])
- CXXFLAGS="$OLDCXXFLAGS"
- AC_LANG_POP([])
- ])
- AS_IF([test x"$ac_cv_cxx_fvisibility" = xyes], [
- OPTIM="$OPTIM -fvisibility=hidden"
- ])
-
- # See if the compiler supports -fvisibility-inlines-hidden...
- AC_CACHE_CHECK([if the compiler supports -fvisibility-inlines-hidden], [ac_cv_cxx_fvisibility_inlines], [
- OLDCXXFLAGS="$CXXFLAGS"
- CXXFLAGS="$CXXFLAGS -fvisibility-inlines-hidden"
- AC_LANG_PUSH([C++])
- AC_COMPILE_IFELSE(
- [AC_LANG_PROGRAM([[]], [[]])],
- [ac_cv_cxx_fvisibility_inlines=yes],
- [ac_cv_cxx_fvisibility_inlines=no])
- CXXFLAGS="$OLDCXXFLAGS"
- AC_LANG_POP([])
- ])
- AS_IF([test x"$ac_cv_cxx_fvisibility_inlines" = xyes], [
- CXXFLAGS="$CXXFLAGS -fvisibility-inlines-hidden"
- ])
-
- AS_IF([test "x$libdir" != "x/usr/lib" -a "x$libdir" != "x/usr/lib64"], [
- DSOLINK="-Wl,-rpath,$libdir"
- ])
- ], [aix*], [
- DSONAME="libfltk_s.a"
- FLDSONAME="libfltk_forms_s.a"
- GLDSONAME="libfltk_gl_s.a"
- IMGDSONAME="libfltk_images_s.a"
- CAIRODSONAME="libfltk_cairo_s.a"
- DSOCOMMAND="\$(CXX) \$(DSOFLAGS) -Wl,-bexpall,-bM:SRE,-bnoentry -o"
- SHAREDSUFFIX="_s"
- ], [cygwin* | mingw*], [
- PICFLAG=0
- AS_IF([test x$enable_cygwin != xyes], [
- DSONAME="mgwfltknox-$FL_DSO_VERSION.dll"
- FLDSONAME="mgwfltknox_forms-$FL_DSO_VERSION.dll"
- GLDSONAME="mgwfltknox_gl-$FL_DSO_VERSION.dll"
- IMGDSONAME="mgwfltknox_images-$FL_DSO_VERSION.dll"
- CAIRODSONAME="mgwfltknox_cairo-$FL_DSO_VERSION.dll"
- ], [test x$enable_x11 = xyes], [
- DSONAME="cygfltk-$FL_DSO_VERSION.dll"
- FLDSONAME="cygfltk_forms-$FL_DSO_VERSION.dll"
- GLDSONAME="cygfltk_gl-$FL_DSO_VERSION.dll"
- IMGDSONAME="cygfltk_images-$FL_DSO_VERSION.dll"
- CAIRODSONAME="cygfltk_cairo-$FL_DSO_VERSION.dll"
- ], [
- DSONAME="cygfltknox-$FL_DSO_VERSION.dll"
- FLDSONAME="cygfltknox_forms-$FL_DSO_VERSION.dll"
- GLDSONAME="cygfltknox_gl-$FL_DSO_VERSION.dll"
- IMGDSONAME="cygfltknox_images-$FL_DSO_VERSION.dll"
- CAIRODSONAME="cygfltknox_cairo-$FL_DSO_VERSION.dll"
- ])
-
- #-----------------------------------------------------------
- # -Wl,--enable-runtime-pseudo-reloc: See str 1585
- # appears to be necessary for older binutils versions < 2.16
- #-----------------------------------------------------------
- LDFLAGS="$LDFLAGS -Wl,--enable-auto-import -Wl,--enable-runtime-pseudo-reloc"
- DSOCOMMAND="\$(CXX) \$(DSOFLAGS) -shared -Wl,--whole-archive -Wl,--export-all-symbols -Wl,--enable-runtime-pseudo-reloc -Wl,--enable-auto-import -Wl,--enable-auto-image-base -o \$@"
- ], [*], [
- AC_MSG_WARN([Shared libraries may not be supported. Trying -shared option with compiler.])
- DSONAME="libfltk.so.$FL_DSO_VERSION"
- FLDSONAME="libfltk_forms.so.$FL_DSO_VERSION"
- GLDSONAME="libfltk_gl.so.$FL_DSO_VERSION"
- IMGDSONAME="libfltk_images.so.$FL_DSO_VERSION"
- CAIRODSONAME="libfltk_cairo.so.$FL_DSO_VERSION"
- DSOCOMMAND="\$(CXX) \$(DSOFLAGS) -Wl,-soname,\$@ \$(LDLIBS) -shared $DEBUGFLAG -o"
- ])
-
- LINKSHARED="-L../src $FLTKCAIROOPTION -lfltk_images$SHAREDSUFFIX -lfltk$SHAREDSUFFIX"
-], [
- DSOCOMMAND="echo"
- DSOLINK=""
- DSONAME=""
- FLDSONAME=""
- GLDSONAME=""
- IMGDSONAME=""
- CAIRODSONAME=""
- PICFLAG=0
- SHAREDSUFFIX=""
- FLUID="fluid"
- FLTK_OPTIONS="fltk-options"
- LINKSHARED="$LINKFLTKCAIRO ../lib/libfltk_images.a ../lib/libfltk.a"
-])
-
-dnl reset FLDSONAME if the Forms compatibility library is disabled (not built):
-dnl overwrite the variable because this is easier than adding conditional code above
-AS_IF([test x$build_forms = xno], [
- FLDSONAME=""
-])
-
-AC_SUBST([FLLIBNAME])
-AC_SUBST([FLLIBBASENAME])
-AC_SUBST([FLDSONAME])
-AC_SUBST([LINKFLTKFORMS])
-AC_SUBST([LINKSHARED])
-
-
-dnl Define the fluid executable used when building the test programs.
-dnl In a native build we use the fluid executable created during the build,
-dnl in a cross-compilation we use "fluid" which must exist on the build system
-dnl and must be in the PATH, i.e. executable as 'fluid' (w/o $EXEEXT).
-AS_IF([test "x$fltk_cross_compiling" = xyes], [
- FLUID_BUILD="fluid"
-], [
- FLUID_BUILD="../fluid/fluid$EXEEXT"
-])
-
-AC_SUBST([DSOCOMMAND])
-AC_SUBST([DSOFLAGS])
-AC_SUBST([DSOLINK])
-AC_SUBST([DSONAME])
-AC_SUBST([GLDSONAME])
-AC_SUBST([IMGDSONAME])
-AC_SUBST([CAIRODSONAME])
-AC_SUBST([SHAREDSUFFIX])
-AC_SUBST([FLUID])
-AC_SUBST([FLUID_BUILD])
-AC_SUBST([FLTK_OPTIONS])
-
-
-dnl Find commands...
-AC_PROG_INSTALL
-AS_CASE([$host_os],
-[osf*], [
- INSTALL="$(pwd)/install-sh -c"
-])
-
-AS_IF([test "x$INSTALL" = "x$ac_install_sh"], [
- # Use full path to install-sh script...
- INSTALL="$(pwd)/install-sh -c"
-])
-
-AC_PATH_PROGS([NROFF], [nroff groff], [echo])
-AC_PATH_PROG([DOXYDOC], [doxygen])
-
-dnl How do we make libraries?
-AC_PROG_RANLIB
-AC_PATH_TOOL([AR], [ar])
-
-AS_IF([test "x$AR" = "x:"], [
- AC_MSG_ERROR([Configure could not find the library archiver, aborting.])
-])
-
-AS_IF([test "x$RANLIB" != "x:"], [
- LIBCOMMAND="$AR cr"
-], [
- LIBCOMMAND="$AR crs"
-])
-
-AC_SUBST(LIBCOMMAND)
-
-dnl how to compile (Windows) resource files
-dnl this will only be used to compile resources for Windows .exe files
-AC_PATH_TOOL(RC,windres)
-
-dnl Architecture checks...
-AC_CHECK_SIZEOF(short, 2)
-AC_CHECK_SIZEOF(int, 4)
-AC_CHECK_SIZEOF(long, 4)
-AS_IF([test $ac_cv_sizeof_short -eq 2], [
- AC_DEFINE([U16], [unsigned short])
-])
-AS_IF([test $ac_cv_sizeof_int -eq 4], [
- AC_DEFINE([U32], [unsigned])
-], [test $ac_cv_sizeof_long -eq 4], [
- AC_DEFINE([U32],[unsigned long])
-])
-
-AS_CASE([$host_os], [darwin*], [
-], [*], [
- AC_C_BIGENDIAN
-
- AS_IF([test $ac_cv_sizeof_int -eq 8], [
- AC_DEFINE([U64], [unsigned])
- ], [test $ac_cv_sizeof_long -eq 8], [
- AC_DEFINE([U64], [unsigned long])
- ])
-])
-
-
-dnl Standard headers and functions...
-AC_HEADER_DIRENT
-AC_CHECK_HEADERS([sys/select.h sys/stdtypes.h])
-
-dnl Do we have the POSIX compatible scandir() prototype?
-AC_CACHE_CHECK([whether we have the POSIX compatible scandir() prototype], ac_cv_cxx_scandir_posix,[
- AC_LANG_PUSH([C++])
- AC_COMPILE_IFELSE(
- [AC_LANG_PROGRAM(
- [[#include
- int func (const char *d, dirent ***list, void *sort) {
- int n = scandir(d, list, 0, (int(*)(const dirent **, const dirent **))sort);
- return n;
- }
- ]], [[
- ]])],
- [ac_cv_cxx_scandir_posix=yes],
- [ac_cv_cxx_scandir_posix=no])
- AC_LANG_POP([])
-])
-
-dnl Define both HAVE_SCANDIR... macros, if the POSIX compatible function is
-dnl available. Otherwise: check, whether any scandir prototype is available,
-dnl but dont use it on SunOS and QNX because of an incompatibility in pre-Y2K
-dnl SunOS scandir versions. We assume, though, that the POSIX compatible
-dnl version on newer SunOS/Solaris versions works as expected.
-AS_IF([test "x$ac_cv_cxx_scandir_posix" = xyes], [
- AC_DEFINE([HAVE_SCANDIR])
- AC_DEFINE([HAVE_SCANDIR_POSIX])
-], [
- AC_CHECK_FUNC([scandir], [
- AS_CASE([$host_os], [solaris* | *qnx*], [
- AC_MSG_WARN([Not using $host_os scandir emulation function.])
- ], [*], [
- AC_DEFINE([HAVE_SCANDIR])
- ])
- ])
-])
-
-AC_CHECK_FUNC([vsnprintf], [
- AS_CASE([$host_os], [hpux1020], [
- AC_MSG_WARN([Not using built-in vsnprintf function because you are running HP-UX 10.20.])
- ], [osf4], [
- AC_MSG_WARN([Not using built-in vsnprintf function because you are running Tru64 4.0.])
- ], [*], [
- AC_DEFINE([HAVE_VSNPRINTF])
- ])
-])
-
-AC_CHECK_FUNC([snprintf], [
- AS_CASE([$host_os], [hpux1020], [
- AC_MSG_WARN([Not using built-in snprintf function because you are running HP-UX 10.20.])
- ], [osf4], [
- AC_MSG_WARN([Not using built-in snprintf function because you are running Tru64 4.0.])
- ], [*], [
- AC_DEFINE([HAVE_SNPRINTF])
- ])
-])
-
-AC_CHECK_HEADERS([strings.h])
-AC_CHECK_FUNCS([strcasecmp strlcat strlcpy])
-
-AC_CHECK_HEADERS([locale.h])
-AC_CHECK_FUNCS([localeconv])
-
-dnl HP-UX 11.11 does not provide setenv()
-AC_CHECK_FUNCS([setenv])
-
-
-dnl FLTK library uses math library functions...
-AC_SEARCH_LIBS([pow], [m])
-
-AC_CHECK_HEADERS([math.h])
-AC_CHECK_FUNCS([trunc])
-
-
-dnl Check for largefile support...
-AC_SYS_LARGEFILE
-
-LARGEFILE=""
-AS_IF([test x$enable_largefile != xno], [
- LARGEFILE="-D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE"
-
- AS_IF([test x$ac_cv_sys_large_files = x1], [
- LARGEFILE="$LARGEFILE -D_LARGE_FILES"
- ])
-
- AS_IF([test x$ac_cv_sys_file_offset_bits = x64], [
- LARGEFILE="$LARGEFILE -D_FILE_OFFSET_BITS=64"
- ])
-])
-AC_SUBST(LARGEFILE)
-
-
-dnl Check for "long long" support...
-AC_CACHE_CHECK([for long long int], [ac_cv_c_long_long], [
- AS_IF([test "$GCC" = yes], [
- ac_cv_c_long_long=yes
- ], [
- AC_COMPILE_IFELSE(
- [AC_LANG_PROGRAM([[]],
- [[long long int i;]])],
- [ac_cv_c_long_long=yes],
- [ac_cv_c_long_long=no])
- ])
-])
-
-AS_IF([test $ac_cv_c_long_long = yes], [
- AC_DEFINE([HAVE_LONG_LONG])
-])
-
-
-dnl Check for dlopen/dlsym...
-AC_SEARCH_LIBS([dlsym], [dl], AC_DEFINE([HAVE_DLSYM]))
-AC_CHECK_HEADER([dlfcn.h], AC_DEFINE([HAVE_DLFCN_H]))
-
-
-dnl Check for audio libraries...
-AUDIOLIBS=""
-
-AS_CASE([$host_os], [cygwin* | mingw*], [
- dnl Cygwin environment...
- AUDIOLIBS="-lwinmm"
-], [darwin*], [
- AUDIOLIBS="-framework CoreAudio"
-], [*], [
- AC_CHECK_HEADER([alsa/asoundlib.h], [
- AC_DEFINE([HAVE_ALSA_ASOUNDLIB_H])
- AUDIOLIBS="-lasound"
- ])
-])
-
-AC_SUBST(AUDIOLIBS)
-
-
-dnl Check for image libraries...
-SAVELIBS="$LIBS"
-IMAGELIBS=""
-STATICIMAGELIBS=""
-
-AC_SUBST([IMAGELIBS])
-AC_SUBST([STATICIMAGELIBS])
-
-
-# Handle the JPEG lib linking mode (use fltk local or system lib)
-# If --enable-(resp. --disable-)localjpeg parameter is not set by user
-# Then we check the JPEG lib usability, with result in sysjpeglib_ok variable
-# Check for System lib use if automatic mode or --disable-localjpeg is requested
-sysjpeglib_ok=no
-sysjpeginc_ok=no
-AS_IF([test x$enable_localjpeg != xyes], [
- AC_CHECK_LIB([jpeg], [jpeg_CreateCompress], [
- AC_CHECK_HEADER([jpeglib.h], [sysjpeginc_ok=yes])
- AS_IF([test x$sysjpeginc_ok = xyes], [
- sysjpeglib_ok=yes
- ])
- ])
-])
-
-# Now set the jpeg lib and include flags according to the requested mode and availability
-AS_IF([test x$enable_localjpeg = xyes -o x$sysjpeglib_ok = xno], [
- JPEGINC="-I../jpeg"
- JPEG="jpeg"
- IMAGELIBS="-lfltk_jpeg $IMAGELIBS"
- STATICIMAGELIBS="\$libdir/libfltk_jpeg.a $STATICIMAGELIBS"
- AC_DEFINE([HAVE_LIBJPEG])
- # Finally, warn user if system lib was requested but not found
- AS_IF([test x$enable_localjpeg = xno], [
- AC_MSG_WARN([Cannot find system jpeg lib or header: choosing the local lib mode.])
- ])
-], [
- JPEGINC=""
- JPEG=""
- IMAGELIBS="-ljpeg $IMAGELIBS"
- STATICIMAGELIBS="-ljpeg $STATICIMAGELIBS"
- AC_DEFINE([HAVE_LIBJPEG])
-])
-
-
-# Handle the ZLIB lib linking mode (use fltk local or system lib)
-# If --enable-(resp. --disable-)localzlib parameter is not set by user
-# Then we check the ZLIB lib usability, with result in syszlib_ok variable
-# Check for System lib use if automatic mode or --disable-localzlib is requested
-syszlib_ok=no
-syszinc_ok=no
-AS_IF([test x$enable_localzlib != xyes], [
- AC_CHECK_LIB([z], [gzgets], [
- AC_CHECK_HEADER([zlib.h], [syszinc_ok=yes])
- AS_IF([test x$syszinc_ok = xyes], [
- syszlib_ok=yes
- ])
- ])
-])
-
-
-# Handle the PNG lib linking mode (use fltk local or system lib)
-# If --enable-(resp. --disable-)localpng parameter is not set by user
-# Then we check the png lib usability with result in syspng_lib variable
-
-# Now check if system lib is usable, we check Lib AND include availability with inc variant,
-# but only, if the builtin lib is not requested
-syspnglib_ok=no
-syspnginc_ok=no
-AS_IF([test x$enable_localpng != xyes -a x$PKGCONFIG != x], [
- AC_MSG_CHECKING([for libpng-1.6.x])
- AS_IF([$PKGCONFIG --exists libpng16], [
- AC_MSG_RESULT([yes])
- AC_DEFINE([HAVE_PNG_H], 1, [Have PNG library?])
- syspnginc_ok=yes
- syspnglib_ok=yes
- PNGINC="$($PKGCONFIG --cflags libpng16)"
- IMAGELIBS="$($PKGCONFIG --libs libpng16) $IMAGELIBS"
- STATICIMAGELIBS="$($PKGCONFIG --libs libpng16) $STATICIMAGELIBS"
- ], [
- AC_MSG_RESULT([no])
- ])
-])
-
-AS_IF([test x$enable_localpng != xyes -a $syspnglib_ok = no], [
- AC_CHECK_LIB([png], [png_read_info], [
- AC_CHECK_HEADER([png.h], [
- AC_DEFINE([HAVE_PNG_H])
- syspnginc_ok=yes
- ])
- AC_CHECK_HEADER([libpng/png.h], [
- syspnginc_ok=yes
- ])
- AS_IF([test x$syspnginc_ok = xyes], [
- syspnglib_ok=yes
- ])
- ])
-])
-
-
-# If we use the system zlib, we must also use the system png lib and vice versa.
-# If either of them is not available, we fall back to using both local libraries
-AS_IF([test x$syspnglib_ok = xyes -a x$syszlib_ok != xyes], [
- syspnglib_ok=no
- enable_localpng=yes
- AC_MSG_WARN([Local z lib selected: overriding png lib to local for compatibility.])
-])
-AS_IF([test x$syszlib_ok = xyes -a x$syspnglib_ok != xyes], [
- syszlib_ok=no
- enable_localzlib=yes
- AC_MSG_WARN([Local png lib selected: overriding z lib to local for compatibility.])
-])
-
-
-# Now set the Z lib and include flags according to the requested mode and availability
-AS_IF([test x$enable_localzlib = xyes -o x$syszlib_ok = xno], [
- ZLIBINC="-I../zlib"
- ZLIB="zlib"
- LIBS="-lfltk_z $LIBS"
- IMAGELIBS="-lfltk_z $IMAGELIBS"
- STATICIMAGELIBS="\$libdir/libfltk_z.a $STATICIMAGELIBS"
- AC_DEFINE([HAVE_LIBZ])
- ac_cv_lib_z_gzgets=no # fc: is still necessary ?
- # Finally, warn user if system lib was requested but not found
- AS_IF([test x$enable_localzlib = xno], [
- AC_MSG_WARN([Cannot find system z lib or header: choosing the local lib mode.])
- ])
-], [
- ZLIBINC=""
- ZLIB=""
- LIBS="-lz $LIBS"
- IMAGELIBS="-lz $IMAGELIBS"
- STATICIMAGELIBS="-lz $STATICIMAGELIBS"
- AC_DEFINE([HAVE_LIBZ])
-])
-
-
-# The following is executed if the png lib was not found usable or if local lib is required explicitly
-AS_IF([test x$enable_localpng = xyes -o x$syspnglib_ok = xno], [
- PNGINC="-I../png"
- PNG="png"
- IMAGELIBS="-lfltk_png $IMAGELIBS"
- STATICIMAGELIBS="\$libdir/libfltk_png.a $STATICIMAGELIBS"
- AC_DEFINE([HAVE_LIBPNG])
- AC_DEFINE([HAVE_PNG_H])
- AC_DEFINE([HAVE_PNG_GET_VALID])
- AC_DEFINE([HAVE_PNG_SET_TRNS_TO_ALPHA])
- # Finally, warn user if system lib was requested but not found
- AS_IF([test x$enable_localpng = xno], [
- AC_MSG_WARN([Cannot find system png lib or header: choosing the local lib mode.])
- ])
-], [
- PNGINC=""
- PNG=""
- IMAGELIBS="-lpng $IMAGELIBS"
- STATICIMAGELIBS="-lpng $STATICIMAGELIBS"
- AC_DEFINE([HAVE_LIBPNG])
- AC_CHECK_LIB([png], [png_get_valid], [
- AC_DEFINE([HAVE_PNG_GET_VALID])
- ])
- AC_CHECK_LIB([png], [png_set_tRNS_to_alpha], [
- AC_DEFINE([HAVE_PNG_SET_TRNS_TO_ALPHA])
- ])
-])
-
-
-AC_SUBST([JPEG])
-AC_SUBST([JPEGINC])
-AC_SUBST([PNG])
-AC_SUBST([PNGINC])
-AC_SUBST([HAVE_PNG_H])
-AC_SUBST([ZLIB])
-AC_SUBST([ZLIBINC])
-
-
-# Control the usage of the nanosvg lib and SVG output
-
-dnl Restore original LIBS settings...
-LIBS="$SAVELIBS"
-
-dnl See if we need a .exe extension on executables...
-AC_EXEEXT
-
-dnl Check for pthreads for multi-threaded apps...
-have_pthread=no
-PTHREAD_FLAGS=""
-
-dnl Test whether we want to check for pthreads. We must not do it on Windows
-dnl unless we run under Cygwin with --enable-cygwin, since we always use
-dnl native threads on Windows (even if libpthread is available)
-check_pthread=yes
-AS_CASE([$host_os], [mingw*], [
- check_pthread=no
-], [cygwin*], [
- AS_IF([test "x$enable_cygwin" != xyes], [
- check_pthread=no
- ])
-])
-
-AS_IF([test "x$enable_threads" != xno -a x$check_pthread = xyes], [
- AC_CHECK_HEADERS([pthread.h])
-
- AS_IF([test x$ac_cv_header_pthread_h = xyes], [
- dnl Check various threading options for the platforms we support
- for flag in -lpthreads -lpthread -pthread; do
- AC_MSG_CHECKING([for pthread_create using $flag])
- SAVELIBS="$LIBS"
- LIBS="$flag $LIBS"
- AC_LINK_IFELSE(
- [AC_LANG_PROGRAM(
- [[#include ]],
- [[pthread_create(0, 0, 0, 0);]])],
- [have_pthread=yes],
- [LIBS="$SAVELIBS"])
- AC_MSG_RESULT([$have_pthread])
-
- AS_IF([test $have_pthread = yes], [
- AC_DEFINE([HAVE_PTHREAD])
- PTHREAD_FLAGS="-D_THREAD_SAFE -D_REENTRANT"
-
- # Solaris requires -D_POSIX_PTHREAD_SEMANTICS to
- # be POSIX-compliant... :(
- AS_CASE([$host_os], [solaris*], [
- PTHREAD_FLAGS="$PTHREAD_FLAGS -D_POSIX_PTHREAD_SEMANTICS"
- ])
- ])
- done
-
- dnl Check if we have PTHREAD_MUTEX_RECURSIVE
- AC_CACHE_CHECK([whether we have PTHREAD_MUTEX_RECURSIVE], ac_cv_pthread_mutex_recursive,[
- AC_LANG_PUSH([C])
- AC_COMPILE_IFELSE(
- [AC_LANG_PROGRAM(
- [[#include
- ]], [[
- return PTHREAD_MUTEX_RECURSIVE;
- ]])],
- [ac_cv_pthread_mutex_recursive=yes],
- [ac_cv_pthread_mutex_recursive=no])
- AC_LANG_POP([])
- ])
- AS_IF([test x$ac_cv_pthread_mutex_recursive = xyes], [
- AC_DEFINE([HAVE_PTHREAD_MUTEX_RECURSIVE])
- ])
- ])
-])
-
-AC_SUBST([PTHREAD_FLAGS])
-AC_SUBST([HAVE_PTHREAD_MUTEX_RECURSIVE])
-
-
-dnl Define OS-specific stuff...
-HLINKS=
-OSX_ONLY=:
-THREADS=
-LIBDECORDIR=""
-LIBDECORDBUS=""
-FLUIDDIR=""
-
-AC_ARG_WITH([links], AS_HELP_STRING([--with-links], [make header links for common misspellings (default=no)]))
-
-INSTALL_DESKTOP=""
-UNINSTALL_DESKTOP=""
-
-AS_IF([test x$enable_fluid != xno], [FLUIDDIR="fluid"])
-
-dnl Option use_std - allow std::string and maybe more
-AS_IF([test x$enable_use_std = xyes], [
- AC_DEFINE([FLTK_USE_STD])
- ]
-)
-
-dnl Platform specific Processing
-
-AS_CASE([$host_os_gui], [cygwin* | mingw*], [
- dnl Cygwin environment, using windows GDI ...
- # Recent versions of Cygwin are seriously broken and the size
- # checks don't work because the shell puts out \r\n instead of
- # \n. Here we just force U32 to be defined to "unsigned"...
- AC_DEFINE([U32], [unsigned])
- # We do no longer define WIN32 or _WIN32 (since FLTK 1.4.0)
- # and we don't need to define USE_OPENGL32 (added in svn r6657
- # but never used, see STR #2147)
- # CFLAGS="-mwindows -D_WIN32 -DUSE_OPENGL32 $CFLAGS"
- # CXXFLAGS="-mwindows -D_WIN32 -DUSE_OPENGL32 $CXXFLAGS"
- LDFLAGS="-mwindows $LDFLAGS"
- DSOFLAGS="-mwindows $DSOFLAGS"
- LIBS="$LIBS -lole32 -luuid -lcomctl32 -lws2_32 -lwinspool"
-
- BUILD="WIN"
- AS_IF([test "x$with_optim" = x], [
- dnl Avoid -Os optimization on Cygwin/MinGW
- with_optim="-O3"
- ])
-
- AS_IF([test x$enable_gl != xno], [
- AC_CHECK_HEADER([GL/gl.h], [
- AC_DEFINE([HAVE_GL])
- GLLIBS="-lopengl32"
- ])
- AC_CHECK_HEADER([GL/glu.h], [
- AC_DEFINE([HAVE_GL_GLU_H])
- GLLIBS="-lglu32 $GLLIBS"
- ])
- ], [
- LINKFLTKGL=""
- GLLIBNAME=""
- GLDSONAME=""
- GLDEMOS=""
- ])
-
- AS_IF([test "x$enable_threads" != xno -a x$have_pthread = xyes], [
- AC_DEFINE([HAVE_PTHREAD])
- ])
-
- THREADS="threads$EXEEXT"
-
- # Don't make symlinks since Windows is not case sensitive.
- AS_IF([test "x$with_links" != xyes], [
- HLINKS="#"
- ])
-], [darwin*], [
- BUILD="OSX"
-
- # MacOS X uses Cocoa for graphics.
- LIBS="$LIBS -framework Cocoa"
- # Add weak-linked additional frameworks for increasingly high macOS versions
- AC_LANG_PUSH([C])
- AC_COMPILE_IFELSE(
- [AC_LANG_PROGRAM(
- [[#include
- #if __MAC_OS_X_VERSION_MAX_ALLOWED < 110000
- #error __MAC_OS_X_VERSION_MAX_ALLOWED < 110000
- #endif
- ]], [[
- ]])],
- [LIBS="$LIBS -weak_framework UniformTypeIdentifiers"],
- [])
- AC_COMPILE_IFELSE(
- [AC_LANG_PROGRAM(
- [[#include
- #if __MAC_OS_X_VERSION_MAX_ALLOWED < 150000
- #error __MAC_OS_X_VERSION_MAX_ALLOWED < 150000
- #endif
- ]], [[
- ]])],
- [LIBS="$LIBS -weak_framework ScreenCaptureKit"],
- [])
- AC_LANG_POP([])
-
- AS_IF([test x$have_pthread = xyes], [
- AC_DEFINE([HAVE_PTHREAD])
- THREADS="threads$EXEEXT"
- ])
-
- AS_IF([test x$enable_gl != xno], [
- AC_DEFINE([HAVE_GL])
- AC_DEFINE([HAVE_GL_GLU_H])
- GLLIBS="-framework OpenGL"
- ], [
- LINKFLTKGL=""
- GLLIBNAME=""
- GLDSONAME=""
- GLDEMOS=""
- ])
-
- # Don't make symlinks because HFS+ is not case sensitive...
- AS_IF([test "x$with_links" != xyes], [
- HLINKS="#"
- ])
-
- # Some steps are only done for OS X package management
- OSX_ONLY=
-
- # Install/Uninstall FLUID application
- INSTALL_DESKTOP="install-osx"
- UNINSTALL_DESKTOP="uninstall-osx"
-], [*], [
- # All others are UNIX/X11...
- # This includes Cygwin target combined with X11
- AS_IF([test x$have_pthread = xyes], [
- AC_DEFINE([HAVE_PTHREAD])
- THREADS="threads$EXEEXT"
- ])
-
- AS_IF([test x$enable_wayland != xno], [
- AS_IF([test x$PKGCONFIG = x], [
- dnl pkg-config is not available, issue warning and possibly abort...
- AS_IF([test x$enable_wayland = xyes], [
- AC_MSG_WARN([--enable-wayland: please install pkg-config.])
- AC_MSG_ERROR([Aborting.])
- ],[
- AC_MSG_WARN([pkg-config is not found. Continuing with --disable-wayland])
- enable_wayland="no"
- ])
- ],[
- missing="no"
- AS_IF([$PKGCONFIG --exists 'wayland-client >= 1.18'],[],[missing="yes"])
- AS_IF([$PKGCONFIG --exists 'wayland-protocols >= 1.15'],[],[missing="yes"])
- AS_IF([$PKGCONFIG --exists wayland-cursor],[],[missing="yes"])
- AS_IF([$PKGCONFIG --exists xkbcommon],[],[missing="yes"])
- AS_IF([$PKGCONFIG --exists pangocairo],[],[missing="yes"])
- AS_IF([test x$missing = xyes], [
- AC_MSG_WARN([These packages 'wayland-client>=1.18 wayland-protocols>=1.15 wayland-cursor xkbcommon pangocairo' are required to build FLTK for wayland.])
- AC_MSG_WARN([At least one of them is missing.])
- AS_IF([test x$enable_wayland = xyes], [
- AC_MSG_ERROR([Building for Wayland is not possible. Aborting.])
- ],[
- AC_MSG_WARN([Continuing with --disable-wayland])
- enable_wayland="no"
- ])
- ])
- ])
- ])
-
- AS_IF([test x$enable_wayland != xno], [
- dnl Prepare for Wayland...
- dnl Turn option usecairo ON
- AC_DEFINE([FLTK_USE_CAIRO])
- AC_MSG_NOTICE([Turning on the usecairo option])
-
- BUILD="WAYLAND"
- AC_DEFINE([FLTK_USE_WAYLAND])
- graphics="Wayland"
- AS_IF([test x$enable_x11 != xno], [
- AC_DEFINE([FLTK_USE_X11]) # to build a hybrid Wayland/X11 library
- BUILD="WAYLANDX11"
- graphics="Wayland or X11 with cairo"
- ])
- AS_IF([$PKGCONFIG --exists 'libdecor-0 >= 0.2.0'],
- [
- libdecor="system"
- plugin_dir="$($PKGCONFIG --variable=libdir libdecor-0)/libdecor/plugins-1"
- CFLAGS="$CFLAGS -DUSE_SYSTEM_LIBDECOR"
- CXXFLAGS="$CXXFLAGS -DUSE_SYSTEM_LIBDECOR"
- CFLAGS="$CFLAGS -DLIBDECOR_PLUGIN_DIR=\\\"$plugin_dir\\\" "
- LIBS="$LIBS $($PKGCONFIG --libs libdecor-0)"
- ],
- [
- libdecor="bundled"
- CFLAGS="$CFLAGS -DUSE_SYSTEM_LIBDECOR=0 -DLIBDECOR_PLUGIN_DIR=\\\"\\\" "
- CXXFLAGS="$CXXFLAGS -DUSE_SYSTEM_LIBDECOR=0"
- ]
- )
- LIBS="$LIBS $($PKGCONFIG --libs wayland-cursor) $($PKGCONFIG --libs wayland-client) $($PKGCONFIG --libs xkbcommon) $($PKGCONFIG --libs pangocairo) "
- AS_IF([test x$enable_x11 != xno], [LIBS="$LIBS $($PKGCONFIG --libs x11)"] )
- LIBS="$LIBS -ldl"
- DSOFLAGS="$LIBS $DSOFLAGS"
- enable_pango=yes
- LIBDECORDIR="libdecor/build"
- AS_IF([$PKGCONFIG --exists dbus-1],
- [LIBDECORDBUS="-DHAS_DBUS $($PKGCONFIG --cflags dbus-1)" LIBS="$LIBS $($PKGCONFIG --libs dbus-1)"]
- )
- LDFLAGS="$LDFLAGS -rdynamic"
-
- AC_SEARCH_LIBS([dlopen], [dl])
-
- AS_IF([test x$enable_gl != xno], [
- AS_IF([$PKGCONFIG --exists gl], [
- AS_IF([$PKGCONFIG --exists egl], [
- AS_IF([$PKGCONFIG --exists wayland-egl], [
- AC_DEFINE([HAVE_GL])
- GLLIBS="$($PKGCONFIG --libs wayland-egl) $($PKGCONFIG --libs egl) $($PKGCONFIG --libs gl) $GLLIBS"
- ])])])
- AS_IF([$PKGCONFIG --exists glu], [
- AC_DEFINE([HAVE_GL_GLU_H])
- GLLIBS="$($PKGCONFIG --libs glu) $GLLIBS"
- ])
- AC_CHECK_LIB([GL], [glXGetProcAddressARB], [AC_DEFINE([HAVE_GLXGETPROCADDRESSARB])
- ],, [-lm])
- ], [
- LINKFLTKGL=""
- GLLIBNAME=""
- GLDSONAME=""
- GLDEMOS=""
- ])
-
- AS_IF([test x$libdecor = xbundled], [
- dnl Check for GTK-3 ...
- gtk_found=no
- CFLAGS="$($PKGCONFIG --cflags gtk+-3.0) $CFLAGS"
- AC_CHECK_HEADERS([gtk/gtk.h], [
- CFLAGS="$CFLAGS -DHAVE_GTK"
- LIBS="$LIBS $($PKGCONFIG --libs gtk+-3.0)"
- gtk_found=yes
- ])
- ])
-
- dnl Check for the Pango library ...
- pango_found=no
- CFLAGS="$($PKGCONFIG --cflags pangocairo) $CFLAGS"
- CXXFLAGS="$($PKGCONFIG --cflags pangocairo) $CXXFLAGS"
- LIBS="$LIBS $($PKGCONFIG --libs pangocairo)"
-
- AC_CHECK_HEADERS([pango/pangocairo.h], [
- AC_DEFINE([USE_PANGO])
- AC_DEFINE([USE_XFT])
- pango_found=yes
- ])
-
- dnl Early abort if Pango could not be found
- AS_IF([test x$pango_found != xyes], [
- AC_MSG_NOTICE([--enable-wayland: Pango libs and/or headers could not be found.])
- AC_MSG_ERROR([Aborting.])
- ])
-
- dnl check for Xinerama, Xcursor, Xfixes, Xrender, Xregion.h
- AS_IF([test x$enable_x11 != xno], [
- xinerama_found=no
- AS_IF([$PKGCONFIG --exists xinerama], [
- AC_DEFINE(HAVE_XINERAMA)
- LIBS="$LIBS $($PKGCONFIG --libs xinerama)"
- xinerama_found=yes
- ])
-
- xcursor_found=no
- AS_IF([$PKGCONFIG --exists xcursor], [
- AC_DEFINE(HAVE_XCURSOR)
- LIBS="$LIBS $($PKGCONFIG --libs xcursor)"
- xcursor_found=yes
- ])
-
- xfixes_found=no
- AS_IF([$PKGCONFIG --exists xfixes], [
- AC_DEFINE(HAVE_XFIXES)
- LIBS="$LIBS $($PKGCONFIG --libs xfixes)"
- xfixes_found=yes
- ])
-
- xrender_found=no
- AS_IF([$PKGCONFIG --exists xrender], [
- AC_DEFINE(HAVE_XRENDER)
- LIBS="$LIBS $($PKGCONFIG --libs xrender)"
- xrender_found=yes
- ])
-
- AC_CHECK_HEADER([X11/Xregion.h], [
- AC_DEFINE([HAVE_X11_XREGION_H])
- ], [], [#include ])
- ])
-
- ], [
-
- dnl Check for X11...
- AC_PATH_XTRA
-
- AS_IF([test x$no_x = xyes], [
- AC_MSG_ERROR([Configure could not find required X11 libraries, aborting.])
- ])
-
- AS_IF([test "x$X_PRE_LIBS" != x], [
- AC_MSG_WARN([Ignoring libraries "$X_PRE_LIBS" requested by configure.])
- ])
-
- LIBS="$LIBS -lX11 $X_EXTRA_LIBS"
- CFLAGS="$CFLAGS $X_CFLAGS"
- CXXFLAGS="$CXXFLAGS $X_CFLAGS"
- AS_CASE([$host_os], [darwin*], [
- DARWIN_LDFLAGS="$LDFLAGS"
- ])
- LDFLAGS="$X_LIBS $LDFLAGS"
- DSOFLAGS="$X_LIBS $DSOFLAGS"
- AC_DEFINE([FLTK_USE_X11])
- BUILD="X11"
- AS_IF([test "x$x_includes" != x], [
- ac_cpp="$ac_cpp -I$x_includes"
- ])
-
- dnl Check for OpenGL unless disabled...
- GLLIBS=
-
- AS_IF([test x$enable_gl != xno], [
- AC_SEARCH_LIBS([dlopen], [dl])
- AC_CHECK_HEADER([GL/gl.h], [
- AC_CHECK_LIB([GL], [glXMakeCurrent], [
- AC_DEFINE([HAVE_GL])
- GLLIBS="-lGL"
- ], [
- AC_CHECK_LIB([MesaGL], [glXMakeCurrent], [
- AC_DEFINE([HAVE_GL])
- GLLIBS="-lMesaGL"
- ],, [-lm]),
- ], [-lm])
- AC_CHECK_LIB([GL], [glXGetProcAddressARB], [
- AC_DEFINE([HAVE_GLXGETPROCADDRESSARB])
- ],, [-lm])
- ])
- AC_CHECK_HEADER([GL/glu.h], [
- AC_DEFINE([HAVE_GL_GLU_H])
- AS_IF([test x$ac_cv_lib_GL_glXMakeCurrent = xyes], [
- GLLIBS="-lGLU $GLLIBS"
- ])
- AS_IF([test x$ac_cv_lib_MesaGL_glXMakeCurrent = xyes], [
- GLLIBS="-lMesaGLU $GLLIBS"
- ])
- ])
-
- AS_IF([test x$ac_cv_lib_GL_glXMakeCurrent != xyes -a x$ac_cv_lib_MesaGL_glXMakeCurrent != xyes], [
- LINKFLTKGL=""
- GLLIBNAME=""
- GLDSONAME=""
- GLDEMOS=""
- ])
- ], [
- LINKFLTKGL=""
- GLLIBNAME=""
- GLDSONAME=""
- GLDEMOS=""
- ])
-
- xinerama_found=no
- AS_IF([test x$enable_xinerama != xno], [
- AC_CHECK_LIB([Xinerama], [XineramaIsActive], [
- AC_DEFINE([HAVE_XINERAMA])
- LIBS="-lXinerama $LIBS"
- xinerama_found=yes
- ])
- ])
-
- dnl Check for the Xft library unless disabled...
- xft_found=no
- AS_IF([test x$enable_xft != xno -a x$enable_wayland = xno], [
- # Try pkg-config first (freetype2 deprecated freetype-config from some version on)
- FT_FLAGS=""
- AS_IF([test "x$PKGCONFIG" != x], [
- FT_FLAGS="$($PKGCONFIG --cflags xft)"
- AS_IF([test "x$FT_FLAGS" = x], [
- FT_FLAGS="$($PKGCONFIG --cflags freetype2)"
- ])
- ])
-
- # if that failed, try freetype-config
- AS_IF([test "x$FT_FLAGS" = x], [
- AC_PATH_PROG([FTCONFIG], [freetype-config])
- AS_IF([test "x$FTCONFIG" != x], [
- FT_FLAGS="$($FTCONFIG --cflags)"
- ], [
- # abort if both methods failed
- AC_MSG_NOTICE([please install pkg-config or use 'configure --disable-xft'.])
- AC_MSG_ERROR([Aborting.])
- ])
- ])
- CPPFLAGS="$FT_FLAGS $CPPFLAGS"
- CXXFLAGS="$FT_FLAGS $CXXFLAGS"
- CFLAGS="$FT_FLAGS $CFLAGS"
-
- AC_CHECK_LIB([fontconfig], [FcPatternCreate])
- AC_CHECK_HEADER([X11/Xft/Xft.h], [
- AC_CHECK_LIB([Xft], [XftDrawCreate], [
- AC_DEFINE([USE_XFT])
- LIBS="-lXft $LIBS"
- BUILD="XFT"
- xft_found=yes
- ])
- ])
- ])
-
- dnl Issue a warning message if Xft was not found, abort configure
- dnl if Xft was requested explicitly (but not found)
- AS_IF([test x$enable_xft != xno -a x$xft_found != xyes], [
- AC_MSG_WARN([could not find the required Xft headers and/or libraries.])
- AC_MSG_NOTICE([please install Xft headers and libraries or use 'configure --disable-xft'.])
- AS_IF([test x$enable_xft = xyes], [
- AC_MSG_ERROR([Aborting.])
- ])
- ])
-
- dnl Option usecairo
- AS_IF([test x$enable_usecairo = xyes], [
- enable_pango=yes
- BUILD="CAIRO"
- AC_DEFINE([FLTK_USE_CAIRO])
- AC_MSG_NOTICE([Processing usecairo option])
- ]
- )
-
- dnl test if Pango is asked but xft was not found
- AS_IF([test x$enable_pango = xyes -a x$xft_found = xno], [
- AC_MSG_WARN([could not find the Xft headers and/or libraries required for Pango.])
- AC_MSG_NOTICE([please install Xft headers and libraries or don't use configure with '--enable-pango'.])
- AC_MSG_ERROR([Aborting.])
- ])
-
- dnl Check for the Pango library unless disabled...
- pango_found=no
- AS_IF([test x$enable_pango = xyes], [
- AS_IF([test x$PKGCONFIG != x], [
- dnl pkg-config is available, use it...
- dnl AC_MSG_NOTICE([--enable-pango: using pkg-config ...])
- CXXFLAGS="$($PKGCONFIG --cflags pangocairo) $CXXFLAGS"
- AS_CASE([$host_os], [darwin*], [], [*], [
- CXXFLAGS="$($PKGCONFIG --cflags pangoxft) $CXXFLAGS"
- ])
- AS_CASE([$host_os], [darwin*], [
- DARWIN_SAVE_LIBS=$LIBS
- DARWIN_PANGO_LIBS="$($PKGCONFIG --libs pangocairo)"
- LIBS="$($PKGCONFIG --libs pangocairo) $LIBS"
- ], [*], [
- LIBS="$($PKGCONFIG --libs pangocairo --libs pangoxft) $LIBS"
- ])
- ], [
- dnl pkg-config is not available, issue warning and continue...
- AC_MSG_WARN([--enable-pango: please install pkg-config. Continuing anyway.])
- ])
-
- CPPFLAGS="$CXXFLAGS"
- AS_CASE([$host_os], [darwin*],
- [AC_CHECK_HEADERS([pango/pango.h], [
- AC_CHECK_LIB([pango-1.0], [pango_layout_new], [
- AC_DEFINE([USE_PANGO])
- pango_found=yes
- LIBS=$DARWIN_SAVE_LIBS
- ])
- ])
- ],[*], [
- AC_CHECK_HEADERS([pango/pango.h pango/pangoxft.h], [
- AC_CHECK_LIB([pango-1.0], [pango_layout_new], [
- AC_CHECK_LIB([pangoxft-1.0], [pango_xft_render_layout], [
- AC_DEFINE([USE_PANGO])
- pango_found=yes
- ])
- ])
- ])
- ])
-
- dnl Early abort if --enable-pango was requested but Pango could not be found
- AS_IF([test x$pango_found != xyes], [
- AC_MSG_NOTICE([--enable-pango: Pango libs and/or headers could not be found.])
- AC_MSG_ERROR([Aborting.])
- ])
- ])
-
- dnl Check for the Xfixes extension unless disabled...
- xfixes_found=no
- AS_IF([test x$enable_xfixes != xno], [
- AC_CHECK_HEADER([X11/extensions/Xfixes.h], [
- AC_CHECK_LIB([Xfixes], [XFixesQueryExtension], [
- AC_DEFINE([HAVE_XFIXES])
- LIBS="-lXfixes $LIBS"
- xfixes_found=yes
- ])
- ], [], [#include ])
- ])
-
- dnl Check for the Xcursor library unless disabled...
- xcursor_found=no
- AS_IF([test x$enable_xcursor != xno], [
- AC_CHECK_HEADER([X11/Xcursor/Xcursor.h], [
- AC_CHECK_LIB([Xcursor], [XcursorImageCreate], [
- AC_DEFINE([HAVE_XCURSOR])
- LIBS="-lXcursor $LIBS"
- xcursor_found=yes
- ])
- ], [], [#include ])
- ])
-
- dnl Check for the Xrender library unless disabled...
- xrender_found=no
- AS_IF([test x$enable_xrender != xno], [
- AC_CHECK_HEADER([X11/extensions/Xrender.h], [
- AC_CHECK_LIB([Xrender], [XRenderQueryVersion], [
- AC_DEFINE([HAVE_XRENDER])
- LIBS="-lXrender $LIBS"
- xrender_found=yes
- ])
- ], [], [#include ])
- ])
-
- AS_CASE([$host_os], [darwin*], [
- AS_IF([test x$pango_found = xyes], [
- #place X_LIBS after homebrew's pango libs
- LIBS="$DARWIN_PANGO_LIBS $X_LIBS $LIBS"
- #remove X_LIBS from LDFLAGS while keeping its initial content
- LDFLAGS="$DARWIN_LDFLAGS"
- ])
- ])
-
- dnl Check for the X11/Xregion.h header file...
- AC_CHECK_HEADER([X11/Xregion.h], [
- AC_DEFINE([HAVE_X11_XREGION_H])
- ], [], [#include ])
-
- ])
-
- # Make symlinks since UNIX/Linux is case sensitive,
- # but Cygwin in general not.
- AS_CASE([$host_os], [cygwin*], [
- HLINKS="#"
- ])
-
- # Make symlinks since UNIX/Linux is case sensitive,
- # but only if explicitly configured (default=no)
- AS_IF([test "x$with_links" != xyes], [
- HLINKS="#"
- ])
-
- # Install/Uninstall FLUID application support files
- INSTALL_DESKTOP="install-linux"
- UNINSTALL_DESKTOP="uninstall-linux"
-])
-
-dnl End of platform specific Processing
-
-AC_SUBST([GLDEMOS])
-AC_SUBST([GLLIBS])
-AC_SUBST([HLINKS])
-AC_SUBST([OSX_ONLY])
-AC_SUBST([THREADS])
-
-AC_SUBST([FLUIDDIR])
-
-AC_SUBST([LIBDECORDIR])
-AC_SUBST([LIBDECORDBUS])
-
-AC_SUBST([INSTALL_DESKTOP])
-AC_SUBST([UNINSTALL_DESKTOP])
-
-AC_SUBST([BUILD])
-
-dnl Figure out the appropriate formatted man page extension...
-AS_CASE(["$host_os"], [*bsd* | darwin*], [
- # *BSD
- CAT1EXT=0
- CAT3EXT=0
- CAT6EXT=0
-], [irix*], [
- # SGI IRIX
- CAT1EXT=z
- CAT3EXT=z
- CAT6EXT=z
-], [*], [
- # All others
- CAT1EXT=1
- CAT3EXT=3
- CAT6EXT=6
-])
-
-AC_SUBST([CAT1EXT])
-AC_SUBST([CAT3EXT])
-AC_SUBST([CAT6EXT])
-
-dnl Fix "mandir" variable...
-AS_IF([test "$mandir" = "\${prefix}/man" -a "$prefix" = "/usr"], [
- AS_CASE(["$host_os"], [*bsd* | darwin* | linux*], [
- # *BSD, Darwin, and Linux
- mandir="\${prefix}/share/man"
- ], [irix*], [
- # SGI IRIX
- mandir="\${prefix}/share/catman"
- ])
-])
-
-dnl Fix "libdir" variable...
-AS_IF([test "$prefix" = NONE], [
- prefix=/usr/local
-])
-
-AS_IF([test "$exec_prefix" = NONE], [
- exec_prefix="\${prefix}"
-])
-
-AS_CASE([$host_os], [irix[1-5]*], [
-], [irix*], [
- AS_IF([test "$libdir" = "\${exec_prefix}/lib" -a "$exec_prefix" = "\${prefix}" -a "$prefix" = "/usr"], [
- libdir="/usr/lib32"
- ])
-])
-
-dnl Define the command used to update the dependencies (this option
-dnl mainly for FLTK core developers - not necessary for users)
-MAKEDEPEND="\$(CXX) -M"
-AC_SUBST([MAKEDEPEND])
-
-dnl Add warnings to compiler switches:
-dnl do this last so messing with switches does not break tests
-
-AS_IF([test -n "$GCC"], [
- # Show all standard warnings + unused variables, conversion errors,
- # and inlining problems when compiling...
- OPTIM="-Wall -Wunused -Wno-format-y2k $OPTIM"
-
- # The following additional warnings are useful for tracking down problems...
- #OPTIM="-Wshadow -Wconversion $OPTIM"
-
- # We know that Carbon is deprecated on OS X 10.4. To avoid hundreds of warnings
- # we will temporarily disable 'deprecated' warnings on OS X.
- AS_CASE([$host_os], [darwin[1-7]], [
- ], [darwin*], [
- OPTIM="-Wno-deprecated-declarations $OPTIM"
- ])
-
- # Set the default compiler optimizations...
- AS_IF([test -z "$DEBUGFLAG"], [
- #
- # Note: Can't use -fomit-frame-pointer - prevents tools like
- # libsafe from working!
- #
- # Don't use -fforce-mem, -fforce-addr, or -fcaller-saves.
- # They all seem to make either no difference or enlarge
- # the code by a few hundred bytes.
- #
- # "-Os" seems to be the best compromise between speed and
- # code size. "-O3" and higher seem to make no effective
- # difference in the speed of the code, but does bloat the
- # library 10+%.
- #
-
- AS_IF([test "x$with_optim" != x], [
- OPTIM="$with_optim $OPTIM"
- ], [
- OPTIM="-Os $OPTIM"
- ])
- ])
-
- # Generate position-independent code when needed...
- AS_IF([test $PICFLAG = 1], [
- OPTIM="$OPTIM -fPIC"
- ])
-
- # See if GCC supports -fno-exceptions...
- AC_MSG_CHECKING([if GCC supports -fno-exceptions])
- OLDCFLAGS="$CFLAGS"
- CFLAGS="$CFLAGS -fno-exceptions"
- AC_COMPILE_IFELSE(
- [AC_LANG_PROGRAM([[]], [[]])],
- [OPTIM="$OPTIM -fno-exceptions"
- AC_MSG_RESULT(yes)],
- [AC_MSG_RESULT(no)])
- CFLAGS="$OLDCFLAGS"
-
- # See if GCC supports -fno-strict-aliasing...
- AC_MSG_CHECKING([if GCC supports -fno-strict-aliasing])
- OLDCFLAGS="$CFLAGS"
- CFLAGS="$CFLAGS -fno-strict-aliasing"
- AC_COMPILE_IFELSE(
- [AC_LANG_PROGRAM([[]], [[]])],
- [OPTIM="$OPTIM -fno-strict-aliasing"
- AC_MSG_RESULT(yes)],
- [AC_MSG_RESULT(no)])
- CFLAGS="$OLDCFLAGS"
-
- dnl Make sure that shared libraries don't have undefined references
- # See if ld supports -no-undefined...
- AC_MSG_CHECKING([if ld supports -no-undefined])
- OLDLDFLAGS="$LDFLAGS"
- LDFLAGS="$LDFLAGS -Wl,-no-undefined"
- AC_LINK_IFELSE(
- [AC_LANG_PROGRAM([[]], [[]])],
- [DSOFLAGS="$DSOFLAGS -Wl,-no-undefined"
- AC_MSG_RESULT(yes)],
- [AC_MSG_RESULT(no)])
- LDFLAGS="$OLDLDFLAGS"
-
- # See if ld supports -Bsymbolic-functions...
- AC_MSG_CHECKING([if ld supports -Bsymbolic-functions])
- OLDLDFLAGS="$LDFLAGS"
- LDFLAGS="$LDFLAGS -Wl,-Bsymbolic-functions"
- AC_LINK_IFELSE(
- [AC_LANG_PROGRAM([[]], [[]])],
- [DSOFLAGS="$DSOFLAGS -Wl,-Bsymbolic-functions"
- AC_MSG_RESULT(yes)],
- [AC_MSG_RESULT(no)])
- LDFLAGS="$OLDLDFLAGS"
-
- # See if toolchain supports a sectioned build...
- AC_MSG_CHECKING([if toolchain supports sections])
- OLDLDFLAGS="$LDFLAGS"
- OLDCFLAGS="$CFLAGS"
- LDFLAGS="$LDFLAGS -Wl,-gc-sections"
- CFLAGS="$CFLAGS -ffunction-sections -fdata-sections"
- AC_LINK_IFELSE(
- [AC_LANG_PROGRAM([[]], [[]])],
- [DSOFLAGS="$DSOFLAGS -Wl,-gc-sections"
- OPTIM="$OPTIM -ffunction-sections -fdata-sections"
- AC_MSG_RESULT(yes)],
- [AC_MSG_RESULT(no)])
- LDFLAGS="$OLDLDFLAGS"
- CFLAGS="$OLDCFLAGS"
-
- # See if we are running Solaris; if so, try the -fpermissive option...
- # This option is required on some versions of Solaris to work around
- # bugs in the X headers up through Solaris 7.
- #
- # Unlike the other compiler/optimization settings, this one is placed
- # in CFLAGS and CXXFLAGS so that fltk-config will provide the option
- # to clients - otherwise client apps will not compile properly...
- AS_CASE([$host_os], [solaris*], [
- AC_MSG_CHECKING([if GCC supports -fpermissive])
-
- OLDCFLAGS="$CFLAGS"
- CFLAGS="$CFLAGS -fpermissive"
- AC_COMPILE_IFELSE(
- [AC_LANG_PROGRAM([[]], [[]])],
- [CXXFLAGS="$CXXFLAGS -fpermissive"
- AC_MSG_RESULT(yes)],
- [CFLAGS="$OLDCFLAGS"
- AC_MSG_RESULT(no)])
- ])
-], [
- AS_CASE(["$host_os"], [irix*], [
- # Running some flavor of IRIX; see which version and
- # set things up according...
- AS_IF([test "$uversion" -ge 62], [
- # We are running IRIX 6.2 or higher; uncomment the following
- # lines if you don't have IDO 7.2 or higher:
- #
- # CXX="CC -n32 -mips3"
- # CC="cc -n32 -mips3"
- # LD="ld -n32 -mips3"
- # MAKEDEPEND="CC -M"
-
- AS_IF([test "x`grep abi=n32 /etc/compiler.defaults`" = x], [
- AC_MSG_WARN([FOR BEST RESULTS BEFORE COMPILING: setenv SGI_ABI "-n32 -mips3"])
- ])
-
- OPTIM="-fullwarn $OPTIM"
- ])
-
- AS_IF([test -z "$DEBUGFLAG"], [
- AS_IF([test "x$with_optim" != x], [
- OPTIM="$with_optim $OPTIM"
- ], [
- OPTIM="-O2 $OPTIM"
- AS_IF([test $uversion -gt 62], [
- OPTIM="-OPT:Olimit=4000 $OPTIM"
- ])
- ])
- ])
- ], [hpux*], [
- # Running HP-UX; these options should work for the HP compilers.
- AS_IF([test -z "$DEBUGFLAG"], [
- AS_IF([test "x$with_optim" != x], [
- OPTIM="$with_optim $OPTIM"
- ], [
- OPTIM="+O2 $OPTIM"
- ])
- ])
-
- AS_IF([test $PICFLAG = 1], [
- OPTIM="+z $OPTIM"
- ])
-
- CXXFLAGS="$CXXFLAGS +W336,501,736,740,749,829"
- ], [OSF1*], [
- # Running Digital/Tru64 UNIX; these options should work for the
- # Digital/Compaq/NewHP compilers.
- AS_IF([test -z "$DEBUGFLAG"], [
- AS_IF([test "x$with_optim" != x], [
- OPTIM="$with_optim $OPTIM"
- ], [
- OPTIM="-O2 $OPTIM"
- ])
- ])
- ], [solaris*], [
- # Solaris
- AS_IF([test -z "$DEBUGFLAG"], [
- AS_IF([test "x$with_optim" != x], [
- OPTIM="$with_optim $OPTIM"
- ], [
- OPTIM="-xO3 $OPTIM"
- ])
- ])
-
- AS_IF([test $PICFLAG = 1], [
- OPTIM="-KPIC $OPTIM"
- ])
- ], [aix*], [
- AS_IF([test -z "$DEBUGFLAG"], [
- AS_IF([test "x$with_optim" != x], [
- OPTIM="$with_optim $OPTIM"
- ], [
- OPTIM="-O2 $OPTIM"
- ])
- ])
-
- AC_MSG_WARN([The AIX C and C++ compilers are known not to correctly compile the FLTK library.])
- ], [*], [
- # Running some other operating system; inform the user they
- # should contribute the necessary options via the STR form..
- AC_MSG_WARN([Building FLTK with default compiler optimizations])
- AC_MSG_WARN([Send the FLTK developers your uname and compiler options via https://www.fltk.org/bugs.php])
- ])
-])
-
-OPTIM="$DEBUGFLAG $OPTIM"
-
-dnl Take archflags away from CFLAGS (makefiles use ARCHFLAGS explicitly)
-AS_CASE([$host_os], [darwin*], [
- AS_IF([test "x$with_archflags" != x], [
- CFLAGS="$(echo $CFLAGS | sed -e 's/$with_archflags//g')"
- ])
-])
-
-dnl Define the FLTK documentation directory...
-AS_CASE([$host_os], [mingw*], [
- # Determine the path where MSys has /usr installed
- msyspath="$(mount | grep '/usr ' | cut -d ' ' -f -1 | sed -e's,\\,/, g')"
-
- # Then substitute that in the Windows path instead of /usr
- AC_DEFINE_UNQUOTED([FLTK_DOCDIR], "$msyspath/local/share/doc/fltk")
-], [*], [
- AS_IF([test x$prefix = xNONE], [
- AC_DEFINE_UNQUOTED([FLTK_DOCDIR], "/usr/local/share/doc/fltk")
- ], [
- AC_DEFINE_UNQUOTED([FLTK_DOCDIR], "$prefix/share/doc/fltk")
- ])
-])
-
-dnl Define the FLTK data directory...
-AS_IF([test x$prefix = xNONE], [
- AC_DEFINE_UNQUOTED([FLTK_DATADIR], "/usr/local/share/fltk")
-], [
- AC_DEFINE_UNQUOTED([FLTK_DATADIR], "$prefix/share/fltk")
-])
-
-
-dnl Summarize results of configure tests...
-echo ""
-echo "Configuration Summary"
-echo "-------------------------------------------------------------------------"
-
-AS_CASE([$host_os_gui], [cygwin* | mingw*], [
- AS_IF([test x$gdiplus_found = xyes], [graphics="GDI+"], [graphics="GDI"])
-], [darwin*], [
- graphics="Quartz"
-], [*], [
- AS_IF([test x$enable_wayland = xno], [
- graphics="X11"
- ])
- AS_IF([test x$xft_found = xyes], [
- graphics="$graphics + Xft"
- ])
- AS_IF([test x$xfixes_found = xyes], [
- graphics="$graphics + Xfixes"
- ])
- AS_IF([test x$xinerama_found = xyes], [
- graphics="$graphics + Xinerama"
- ])
- AS_IF([test x$xcursor_found = xyes], [
- graphics="$graphics + Xcursor"
- ])
- AS_IF([test x$xrender_found = xyes], [
- graphics="$graphics + Xrender"
- ])
- AS_IF([test x$enable_usecairo = xyes], [
- graphics="$graphics + Cairo"
- ])
- AS_IF([test x$pango_found = xyes], [
- graphics="$graphics + Pango"
- ])
-])
-
-echo " Directories: prefix=$prefix"
-echo " bindir=$bindir"
-echo " datadir=$datadir"
-echo " datarootdir=$datarootdir"
-echo " exec_prefix=$exec_prefix"
-echo " includedir=$includedir"
-echo " libdir=$libdir"
-echo " mandir=$mandir"
-AS_CASE([$host_os], [mingw*], [
- echo " MSys docpath=$msyspath/local/share/doc/fltk"
-])
-
-AS_IF([test x$enable_fluid != xno], [
- echo " Build fluid: YES"
- ],[
- echo " Build fluid: NO"
- ])
-
-AS_IF([test x$enable_test != xno], [
- echo " Build tests: YES"
- ],[
- echo " Build tests: NO"
- ])
-
-AS_IF([test "$fltk_cross_compiling" = "yes"], [
- echo "Cross-compiling: YES"
- echo " Build: $build -> Host: $host"
-], [
- echo "Cross-compiling: NO"
-])
-
-echo " Graphics: $graphics"
-dnl
-AS_IF([test x$JPEG = x], [
- echo "Image Libraries: JPEG=System"
-], [
- echo "Image Libraries: JPEG=Builtin"
-])
-AS_IF([test x$PNG = x], [
- echo " PNG=System"
-], [
- echo " PNG=Builtin"
-])
-AS_IF([test x$ZLIB = x], [
- echo " ZLIB=System"
-], [
- echo " ZLIB=Builtin"
-])
-
-AS_IF([test x$build_forms = xyes], [
- echo "Forms library: YES"
-], [
- echo "Forms library: NO"
-])
-
-AS_IF([test x$enable_cairo = xyes], [
- echo " CAIRO=lib"
-])
-AS_IF([test x$enable_cairoext = xyes], [
- echo " CAIRO=internal_use"
-])
-
-AS_IF([test x$enable_largefile != xno], [
- echo " Large Files: YES"
-], [
- echo " Large Files: NO"
-])
-
-AS_IF([test x$GLDEMOS = x], [
- echo " OpenGL: NO"
-], [
- echo " OpenGL: YES"
-])
-
-AS_IF([test x$THREADS = x], [
- echo " Threads: NO"
-], [
- echo " Threads: YES"
-])
-
-AS_IF([test x$enable_use_std != xyes], [
- echo " Allow std:: : NO"
-], [
- echo " Allow std:: : YES"
-])
-
-dnl Set empty BINARY_DIR variable for fltk-config.in (CMake compatibility)
-BINARY_DIR=
-AC_SUBST([BINARY_DIR])
-
-dnl Write all of the files...
-AC_CONFIG_HEADERS([config.h:configh.in])
-AC_CONFIG_HEADERS([FL/fl_config.h:fl_config.in])
-AC_CONFIG_FILES([makeinclude fltk.list fltk-config fltk.spec FL/Makefile])
-AC_OUTPUT
-
-dnl Make sure the fltk-config script is executable...
-chmod +x fltk-config
-
-echo ""
-echo "-------------------------------------------------------------------------"
-echo " IMPORTANT NOTE:"
-echo "-------------------------------------------------------------------------"
-echo ""
-echo " FLTK 1.4.x will be the last version(s) of FLTK supporting"
-echo " autotools (configure + provided Makefiles) to build FLTK."
-echo " FLTK 1.5.0 and higher will only support FLTK builds using CMake."
-echo ""
-echo " We suggest to explore and use the CMake build system generators"
-echo " for your own FLTK builds as soon as possible. Some new FLTK build"
-echo " options will only be supported by CMake based builds."
-echo " Please see README.CMake.txt for details and instructions."
-echo ""
-echo " User projects that use CMake for their own build can benefit"
-echo " substantially if the FLTK library has been built using CMake."
-echo ""
-echo "-------------------------------------------------------------------------"
-echo ""
diff --git a/documentation/Makefile b/documentation/Makefile
deleted file mode 100644
index 972c1b791..000000000
--- a/documentation/Makefile
+++ /dev/null
@@ -1,251 +0,0 @@
-#
-# Makefile for the Fast Light Tool Kit (FLTK) documentation.
-#
-# Copyright 1998-2024 by Bill Spitzak and others.
-#
-# This library is free software. Distribution and use rights are outlined in
-# the file "COPYING" which should have been included with this file. If this
-# file is missing or damaged, see the license at:
-#
-# https://www.fltk.org/COPYING.php
-#
-# Please see the following page on how to report bugs and issues:
-#
-# https://www.fltk.org/bugs.php
-#
-
-# Get configuration stuff...
-include ../makeinclude
-
-# make sure that all docs are (re-)created independent of missing deps
-.PHONY: pdf html refman.pdf
-
-SRC_DOCDIR = ./src
-
-# These are the HTML "source" files...
-HTMLFILES = \
- $(SRC_DOCDIR)/index.dox \
- $(SRC_DOCDIR)/preface.dox \
- $(SRC_DOCDIR)/intro.dox \
- $(SRC_DOCDIR)/basics.dox \
- $(SRC_DOCDIR)/common.dox \
- $(SRC_DOCDIR)/coordinates.dox \
- $(SRC_DOCDIR)/resize.dox \
- $(SRC_DOCDIR)/editor.dox \
- $(SRC_DOCDIR)/drawing.dox \
- $(SRC_DOCDIR)/events.dox \
- $(SRC_DOCDIR)/subclassing.dox \
- $(SRC_DOCDIR)/opengl.dox \
- $(SRC_DOCDIR)/fltk-options.dox \
- $(SRC_DOCDIR)/advanced.dox \
- $(SRC_DOCDIR)/unicode.dox \
- $(SRC_DOCDIR)/enumerations.dox \
- $(SRC_DOCDIR)/glut.dox \
- $(SRC_DOCDIR)/forms.dox \
- $(SRC_DOCDIR)/osissues.dox \
- $(SRC_DOCDIR)/migration_1_4.dox \
- $(SRC_DOCDIR)/development.dox \
- $(SRC_DOCDIR)/license.dox \
- $(SRC_DOCDIR)/examples.dox \
- $(SRC_DOCDIR)/faq.dox \
- $(SRC_DOCDIR)/Fl_Terminal.dox
-
-MANPAGES = $(SRC_DOCDIR)/fltk.$(CAT3EXT) $(SRC_DOCDIR)/fltk-config.$(CAT1EXT) \
- $(SRC_DOCDIR)/fluid.$(CAT1EXT) $(SRC_DOCDIR)/blocks.$(CAT6EXT) \
- $(SRC_DOCDIR)/checkers.$(CAT6EXT) $(SRC_DOCDIR)/sudoku.$(CAT6EXT) \
- $(SRC_DOCDIR)/fltk-options.$(CAT1EXT)
-
-# Get FLTK's Git Revision either from Git /or/ from fltk_git_rev.dat (Issue #499)
-#
-# Note: this may fail (return "unknown") if the sources were downloaded
-# from GitHub as a "release" (zip) archive. This is not supported.
-
-# Test/debug only: should be commented out unless used (see: debug_git_rev)
-# GIT_REV_FROM_GIT := "$$(git rev-parse HEAD 2>/dev/null)"
-# GIT_REV_FROM_FILE := "$$(cat ../fltk_git_rev.dat 2>/dev/null)"
-
-FLTK_GIT_REVISION := "`( (git rev-parse HEAD || cat ../fltk_git_rev.dat;) || echo 'unknown'; ) 2>/dev/null`"
-
-all: $(MANPAGES)
-
-# Use `make docs' to create all docs for distribution files.
-# You need installed versions of Doxygen and LaTeX for this.
-
-docs: all html pdf
-
-# Synonyms for docs:
-
-alldocs: docs
-dist: docs
-
-debug_git_rev:
- # echo "GIT_REV_FROM_GIT = $(GIT_REV_FROM_GIT)"
- # echo "GIT_REV_FROM_FILE = $(GIT_REV_FROM_FILE)"
- echo "FLTK_GIT_REVISION = $(FLTK_GIT_REVISION)"
-
-clean:
- $(RM) Doxyfile Doxybook
- $(RM) copyright.dox generated.dox
- $(RM) fltk.pdf refman.pdf src/fltk-title.tex src/fltk-book.tex.in src/fltk-book.tex
- $(RMDIR) html latex
- $(RM) *~ *.bck *.bak *.log
- $(RM) $(MANPAGES) $(SRC_DOCDIR)/*.0
-
-depend:
-
-install: $(MANPAGES)
- echo "Installing documentation files in $(DESTDIR)$(docdir) ..."
- -$(INSTALL_DIR) "$(DESTDIR)$(docdir)"
- if test -f html/index.html ; then \
- for file in html/* ; do \
- $(INSTALL_DATA) $$file "$(DESTDIR)$(docdir)"; \
- done \
- fi
- if test -f fltk.pdf ; then \
- echo "Installing fltk.pdf in $(DESTDIR)$(docdir) ..."; \
- $(INSTALL_DATA) fltk.pdf "$(DESTDIR)$(docdir)"; \
- fi
- echo "Installing man pages in $(DESTDIR)$(mandir) ..."
- -$(INSTALL_DIR) "$(DESTDIR)$(mandir)/cat1"
- $(INSTALL_MAN) $(SRC_DOCDIR)/fluid.$(CAT1EXT) "$(DESTDIR)$(mandir)/cat1"
- $(INSTALL_MAN) $(SRC_DOCDIR)/fltk-config.$(CAT1EXT) "$(DESTDIR)$(mandir)/cat1"
- $(INSTALL_MAN) $(SRC_DOCDIR)/fltk-options.$(CAT1EXT) "$(DESTDIR)$(mandir)/cat1"
- -$(INSTALL_DIR) "$(DESTDIR)$(mandir)/cat3"
- $(INSTALL_MAN) $(SRC_DOCDIR)/fltk.$(CAT3EXT) "$(DESTDIR)$(mandir)/cat3"
- -$(INSTALL_DIR) "$(DESTDIR)$(mandir)/man1"
- $(INSTALL_MAN) $(SRC_DOCDIR)/fluid.man "$(DESTDIR)$(mandir)/man1/fluid.1"
- $(INSTALL_MAN) $(SRC_DOCDIR)/fltk-config.man "$(DESTDIR)$(mandir)/man1/fltk-config.1"
- $(INSTALL_MAN) $(SRC_DOCDIR)/fltk-options.man "$(DESTDIR)$(mandir)/man1/fltk-options.1"
- -$(INSTALL_DIR) "$(DESTDIR)$(mandir)/man3"
- $(INSTALL_MAN) $(SRC_DOCDIR)/fltk.man "$(DESTDIR)$(mandir)/man3/fltk.3"
-
-install-linux install-osx:
- -$(INSTALL_DIR) "$(DESTDIR)$(mandir)/cat6"
- $(INSTALL_MAN) $(SRC_DOCDIR)/blocks.$(CAT6EXT) "$(DESTDIR)$(mandir)/cat6"
- $(INSTALL_MAN) $(SRC_DOCDIR)/checkers.$(CAT6EXT) "$(DESTDIR)$(mandir)/cat6"
- $(INSTALL_MAN) $(SRC_DOCDIR)/sudoku.$(CAT6EXT) "$(DESTDIR)$(mandir)/cat6"
- -$(INSTALL_DIR) "$(DESTDIR)$(mandir)/man6"
- $(INSTALL_MAN) $(SRC_DOCDIR)/blocks.man "$(DESTDIR)$(mandir)/man6/blocks.6"
- $(INSTALL_MAN) $(SRC_DOCDIR)/checkers.man "$(DESTDIR)$(mandir)/man6/checkers.6"
- $(INSTALL_MAN) $(SRC_DOCDIR)/sudoku.man "$(DESTDIR)$(mandir)/man6/sudoku.6"
-
-
-uninstall:
- $(RMDIR) "$(DESTDIR)$(docdir)"
- $(RM) "$(DESTDIR)$(mandir)/cat1/fluid.$(CAT1EXT)"
- $(RM) "$(DESTDIR)$(mandir)/man1/fluid.1"
- $(RM) "$(DESTDIR)$(mandir)/cat1/fltk-config.$(CAT1EXT)"
- $(RM) "$(DESTDIR)$(mandir)/man1/fltk-config.1"
- $(RM) "$(DESTDIR)$(mandir)/cat1/fltk-options.$(CAT1EXT)"
- $(RM) "$(DESTDIR)$(mandir)/man1/fltk-options.1"
- $(RM) "$(DESTDIR)$(mandir)/cat3/fltk.$(CAT3EXT)"
- $(RM) "$(DESTDIR)$(mandir)/man3/fltk.3"
-
-uninstall-linux uninstall-osx:
- $(RM) "$(DESTDIR)$(mandir)/cat6/blocks.$(CAT6EXT)"
- $(RM) "$(DESTDIR)$(mandir)/cat6/checkers.$(CAT6EXT)"
- $(RM) "$(DESTDIR)$(mandir)/cat6/sudoku.$(CAT6EXT)"
- $(RM) "$(DESTDIR)$(mandir)/man6/blocks.6"
- $(RM) "$(DESTDIR)$(mandir)/man6/checkers.6"
- $(RM) "$(DESTDIR)$(mandir)/man6/sudoku.6"
-
-# The documentation is generated using doxygen. There are two control files
-# for doxygen: Doxyfile for html documentation and Doxybook for pdf docs.
-# Both files are generated from the common source file Doxyfile.in.
-# Note that Doxyfile.in is shared with CMake to configure these files.
-
-# Note: There's no way to enable the "Driver Documentation" via configure+make,
-# please use CMake 'FLTK_INCLUDE_DRIVER_DOCS' instead.
-# Alternatively (if you really need it) edit this Makefile and
-# replace the two lines below containing "@DRIVER_DOCS@" to read:
-# -e's, @DRIVER_DOCS@, DriverDev,' \
-# (w/o leading '#') to enable the "Driver Documentation" section.
-# Please take care of copying tabs and spaces literally.
-# Note: There's no intention to enable this via configure option (use CMake).
-
-Doxyfile: Doxyfile.in generated.dox copyright.dox
- echo "Generating Doxyfile ..."
- ./convert_doxyfile "$(DOXYDOC)" $< $@ Doxyfile_error.log
- sed -e's,@FLTK_VERSION@,$(FLTK_VERSION),' \
- -e's,@GENERATE_HTML@,YES,' \
- -e's,@GENERATE_LATEX@,NO,' \
- -e's, @LATEX_HEADER@,,' \
- -e's, @DRIVER_DOCS@,,' \
- -e's,@CMAKE_CURRENT_SOURCE_DIR@,.,' \
- -e's,@CMAKE_CURRENT_BINARY_DIR@,,' \
- -e's,@FLTK_SOURCE_DIR@,..,' \
- -i $@
-
-Doxybook: Doxyfile.in generated.dox copyright.dox
- echo "Generating Doxybook ..."
- ./convert_doxyfile "$(DOXYDOC)" $< $@ Doxybook_error.log
- sed -e's,@FLTK_VERSION@,$(FLTK_VERSION),' \
- -e's,@GENERATE_HTML@,NO,' \
- -e's,@GENERATE_LATEX@,YES,' \
- -e's,@LATEX_HEADER@,src/fltk-book.tex,' \
- -e's, @DRIVER_DOCS@,,' \
- -e's,@CMAKE_CURRENT_SOURCE_DIR@,.,' \
- -e's,@CMAKE_CURRENT_BINARY_DIR@,,' \
- -e's,@FLTK_SOURCE_DIR@,..,' \
- -i $@
-
-# The HTML files are generated using doxygen, and this needs
-# an installed doxygen version and may take some time, so this target
-# is not made by default.
-# Use `make html' or `make docs' to create the html docs.
-
-html: $(HTMLFILES) Doxyfile
- echo "Generating HTML documentation..."
- -$(RMDIR) html
- -$(INSTALL_DIR) html
- -"$(DOXYDOC)"
- if test "x$(DOXYDOC)" = "x" ; then \
- echo "Sorry - doxygen not found. Please install doxygen and run configure."; \
- fi
-
-# The PDF documentation (fltk.pdf) is generated using doxygen and LaTeX, and
-# this needs installed Doxygen and LaTeX programs and may take some time, so
-# this target is not made by default.
-# Use `make pdf' or `make docs' to create the PDF docs.
-
-pdf: refman.pdf
- cp -f latex/refman.pdf fltk.pdf
-
-refman.pdf: $(HTMLFILES) Doxybook src/fltk-book.tex
- -$(RMDIR) latex
- echo "Generating PDF documentation ..."
- "$(DOXYDOC)" Doxybook
- ./make_pdf
-
-src/fltk-title.tex: src/fltk-title.tex.in
- echo "Generating $@ ..."
- sed -e"s/@FLTK_GIT_REVISION@/$(FLTK_GIT_REVISION)/g" \
- < $< > $@
-
-src/fltk-book.tex.in: src/fltk-title.tex
- echo "Generating $@ ..."
- ./make_header "$(DOXYDOC)" $< $@
-
-src/fltk-book.tex: src/fltk-book.tex.in
- echo "Generating $@ ..."
- DOXY_VERSION=`"$(DOXYDOC)" --version|cut -f1 -d' '`; \
- YEAR=`date +%Y`; \
- sed -e"s/@YEAR@/$$YEAR/g" \
- -e"s/@FLTK_VERSION@/$(FLTK_VERSION)/g" \
- -e"s/@DOXY_VERSION@/$$DOXY_VERSION/g" \
- < $< > $@
-
-generated.dox: generated.dox.in
- echo "Generating $@ ..."
- CURRENT_DATE=`date "+%b %d, %Y"`; \
- DOXYGEN_VERSION_SHORT=`"$(DOXYDOC)" --version|cut -f1 -d' '`; \
- sed -e"s/@CURRENT_DATE@/$$CURRENT_DATE/g" \
- -e"s/@FLTK_GIT_REVISION@/$(FLTK_GIT_REVISION)/g" \
- -e"s/@DOXYGEN_VERSION_SHORT@/$$DOXYGEN_VERSION_SHORT/g" \
- < $< > $@
-
-copyright.dox: copyright.dox.in
- echo "Generating $@ ..."
- YEAR=`date +%Y`; \
- sed -e"s/@YEAR@/$$YEAR/g" \
- < $< > $@
diff --git a/examples/Makefile b/examples/Makefile
deleted file mode 100644
index 86eca0734..000000000
--- a/examples/Makefile
+++ /dev/null
@@ -1,85 +0,0 @@
-#
-# Makefile used to build example apps by 'make'
-#
-# Copyright 2020-2022 by Bill Spitzak and others.
-#
-# This library is free software. Distribution and use rights are outlined in
-# the file "COPYING" which should have been included with this file. If this
-# file is missing or damaged, see the license at:
-#
-# https://www.fltk.org/COPYING.php
-#
-# Please see the following page on how to report bugs and issues:
-#
-# https://www.fltk.org/bugs.php
-#
-################################################################################
-
-include Makefile.FLTK
-
-RM = rm -f
-SHELL = /bin/sh
-.SILENT:
-
-# Executables
-ALL = animgifimage$(EXEEXT) \
- animgifimage-play$(EXEEXT) \
- animgifimage-simple$(EXEEXT) \
- animgifimage-resize$(EXEEXT) \
- browser-simple$(EXEEXT) \
- cairo-draw-x$(EXEEXT) \
- callbacks$(EXEEXT) \
- chart-simple$(EXEEXT) \
- draggable-group$(EXEEXT) \
- grid-simple$(EXEEXT) \
- howto-add_fd-and-popen$(EXEEXT) \
- howto-browser-with-icons$(EXEEXT) \
- howto-drag-and-drop$(EXEEXT) \
- howto-draw-an-x$(EXEEXT) \
- howto-flex-simple$(EXEEXT) \
- howto-menu-with-images$(EXEEXT) \
- howto-parse-args$(EXEEXT) \
- howto-remap-numpad-keyboard-keys$(EXEEXT) \
- howto-simple-svg$(EXEEXT) \
- howto-text-over-image-button$(EXEEXT) \
- menubar-add$(EXEEXT) \
- nativefilechooser-simple-app$(EXEEXT) \
- nativefilechooser-simple$(EXEEXT) \
- progress-simple$(EXEEXT) \
- shapedwindow$(EXEEXT) \
- simple-terminal$(EXEEXT) \
- table-as-container$(EXEEXT) \
- table-simple$(EXEEXT) \
- table-sort$(EXEEXT) \
- table-spreadsheet$(EXEEXT) \
- table-spreadsheet-with-keyboard-nav$(EXEEXT) \
- table-with-keynav$(EXEEXT) \
- table-with-right-column-stretch-fit$(EXEEXT) \
- table-with-right-click-menu$(EXEEXT) \
- tabs-simple$(EXEEXT) \
- textdisplay-with-colors$(EXEEXT) \
- texteditor-simple$(EXEEXT) \
- texteditor-with-dynamic-colors$(EXEEXT) \
- tree-as-container$(EXEEXT) \
- tree-custom-draw-items$(EXEEXT) \
- tree-custom-sort$(EXEEXT) \
- tree-of-tables$(EXEEXT) \
- tree-simple$(EXEEXT) \
- wizard-simple$(EXEEXT)
-
-# default target -- build everything
-default all: $(ALL)
-
-# Special rules for building cairo app
-cairo-draw-x.o: cairo-draw-x.cxx
- @echo "*** Compile $<..."
- $(CXX) -I.. $(CXXFLAGS_CAIRO) -c $< -o $@
-cairo-draw-x$(EXEEXT): cairo-draw-x.o
- @echo "*** Link $<..."
- $(CXX) $< $(LINKFLTK) $(LINKFLTK_CAIRO) -o $@
-
-# clean everything
-clean:
- $(RM) $(ALL)
- $(RM) *.o
- $(RM) core
diff --git a/examples/Makefile.FLTK b/examples/Makefile.FLTK
deleted file mode 100644
index 59899b724..000000000
--- a/examples/Makefile.FLTK
+++ /dev/null
@@ -1,55 +0,0 @@
-#
-# Included Makefile used to build example apps by 'make'
-#
-# Copyright 2020-2022 by Bill Spitzak and others.
-#
-# This library is free software. Distribution and use rights are outlined in
-# the file "COPYING" which should have been included with this file. If this
-# file is missing or damaged, see the license at:
-#
-# https://www.fltk.org/COPYING.php
-#
-# Please see the following page on how to report bugs and issues:
-#
-# https://www.fltk.org/bugs.php
-#
-################################################################################
-
-#
-# Stuff every FLTK application might need
-#
-# If you take this for use in your own project, be sure to change
-# the 'FLTKCONFIG' setting to point to where it's installed
-# on your system. Common examples:
-#
-# FLTKCONFIG = /usr/local/bin/fltk-config
-# FLTKCONFIG = /usr/local/src/fltk-1.4.x/fltk-config
-# FLTKCONFIG = ../build/fltk-config # if ../build == CMake build directory
-#
-# Set .SILENT in your Makefile if you want 'quieter' builds.
-#
-
-ifeq '$(OS)' "Windows_NT"
-EXEEXT = .exe
-endif
-
-FLTKCONFIG = ../fltk-config
-CXX = $(shell $(FLTKCONFIG) --cxx)
-CXXFLAGS = $(shell $(FLTKCONFIG) --cxxflags) -Wall -I.
-LINKFLTK = $(shell $(FLTKCONFIG) --ldstaticflags)
-LINKFLTK_GL = $(shell $(FLTKCONFIG) --use-gl --ldstaticflags)
-LINKFLTK_IMG = $(shell $(FLTKCONFIG) --use-images --ldstaticflags)
-LINKFLTK_ALL = $(shell $(FLTKCONFIG) --use-images --use-gl --ldstaticflags)
-CXXFLAGS_CAIRO = $(shell $(FLTKCONFIG) --use-cairo --cxxflags)
-LINKFLTK_CAIRO = $(shell $(FLTKCONFIG) --use-cairo --ldstaticflags)
-.SUFFIXES: .cxx .h .fl .o $(EXEEXT)
-
-# HOW TO COMPILE
-.cxx.o:
- @echo "*** Compile $<..."
- $(CXX) -I.. $(CXXFLAGS) -c $< -o $@
-
-# HOW TO LINK
-.o$(EXEEXT):
- @echo "*** Linking $@..."
- $(CXX) $< $(LINKFLTK) $(LINKFLTK_IMG) -o $@
diff --git a/fl_config.in b/fl_config.in
deleted file mode 100644
index 7fd92dee3..000000000
--- a/fl_config.in
+++ /dev/null
@@ -1,110 +0,0 @@
-/*
- * Build configuration file for the Fast Light Tool Kit (FLTK).
- *
- * Copyright 1998-2024 by Bill Spitzak and others.
- *
- * This library is free software. Distribution and use rights are outlined in
- * the file "COPYING" which should have been included with this file. If this
- * file is missing or damaged, see the license at:
- *
- * https://www.fltk.org/COPYING.php
- *
- * Please see the following page on how to report bugs and issues:
- *
- * https://www.fltk.org/bugs.php
- */
-
-#ifndef _FL_fl_config_h_
-#define _FL_fl_config_h_
-
-/*
- * FL_ABI_VERSION (ABI version)
- *
- * define FL_ABI_VERSION: 1xxyy for 1.x.y (xx,yy with leading zero)
-*/
-
-#undef FL_ABI_VERSION
-
-
-/*
- * FLTK_HAVE_CAIRO
- *
- * Do we have the Cairo library available?
-*/
-
-#undef FLTK_HAVE_CAIRO
-
-
-/*
- * FLTK_HAVE_CAIROEXT
- *
- * Do we have the Cairo library available and want extended Cairo use in FLTK ?
- * This implies to link cairo.lib in all FLTK based apps.
-*/
-
-#undef FLTK_HAVE_CAIROEXT
-
-
-/*
- * FLTK_HAVE_FORMS
- *
- * Do we have the Forms compatibility library available?
-*/
-
-#undef FLTK_HAVE_FORMS
-
-
-/*
- * FLTK_USE_X11
- *
- * Do we use X11 for the current platform?
- *
- */
-
-#undef FLTK_USE_X11
-
-
-/*
- * FLTK_USE_CAIRO
- *
- * Do we use Cairo to draw to the display?
- *
- */
-
-#undef FLTK_USE_CAIRO
-
-
-/*
- * FLTK_USE_WAYLAND
- *
- * Do we use Wayland for the current platform?
- *
- */
-
-#undef FLTK_USE_WAYLAND
-
-
-/*
- * FLTK_USE_STD
- *
- * May we use std::string and std::vector for the current build?
- *
- * This is a build configuration option which allows FLTK to add some
- * features based on std::string and std::vector in FLTK 1.4.x
- *
- */
-
-#define FLTK_USE_STD 0
-
-
-/*
- * FLTK_USE_SVG
- *
- * Do we want FLTK to read and write SVG-formatted files ?
- *
- */
-
-#undef FLTK_USE_SVG
-
-
-#endif /* _FL_fl_config_h_ */
diff --git a/fltk-options/Makefile b/fltk-options/Makefile
deleted file mode 100644
index c860bad4d..000000000
--- a/fltk-options/Makefile
+++ /dev/null
@@ -1,93 +0,0 @@
-#
-# fltk-options Makefile for the Fast Light Tool Kit (FLTK).
-#
-# Copyright 2023-2024 by Bill Spitzak and others.
-#
-# This library is free software. Distribution and use rights are outlined in
-# the file "COPYING" which should have been included with this file. If this
-# file is missing or damaged, see the license at:
-#
-# https://www.fltk.org/COPYING.php
-#
-# Please see the following page on how to report bugs and issues:
-#
-# https://www.fltk.org/bugs.php
-#
-
-include ../makeinclude
-
-CPPFILES = \
- fltk-options.cxx
-
-################################################################
-
-OBJECTS = $(CPPFILES:.cxx=.o)
-
-all: $(FLTK_OPTIONS) fltk-options$(EXEEXT)
-
-fltk-options$(EXEEXT): $(OBJECTS) $(LIBNAME)
- echo Linking $@...
- $(CXX) $(ARCHFLAGS) $(CXXFLAGS) -o $@ $(OBJECTS) $(LINKFLTKIMG) $(LDFLAGS) $(LDLIBS)
- $(OSX_ONLY) $(RM) -r -f fltk-options.app
- $(OSX_ONLY) mkdir -p fltk-options.app/Contents/MacOS fltk-options.app/Contents/Resources
- $(OSX_ONLY) $(INSTALL_BIN) fltk-options fltk-options.app/Contents/MacOS
- $(OSX_ONLY) $(INSTALL) icons/fltk-options.icns fltk-options.app/Contents/Resources
- $(OSX_ONLY) $(INSTALL) fltk-options.plist fltk-options.app/Contents/Info.plist
-
-fltk-options-shared$(EXEEXT): $(OBJECTS) ../src/$(DSONAME)
- echo Linking $@...
- $(CXX) $(ARCHFLAGS) $(CXXFLAGS) -o $@ $(OBJECTS) $(LINKSHARED) $(LDFLAGS) $(LDLIBS)
-
-clean:
- -$(RM) *.o core.* *~ *.bck *.bak
- -$(RM) core fltk-options$(EXEEXT) fltk-options-shared$(EXEEXT)
- $(OSX_ONLY) -$(RMDIR) fltk-options.app
-
-depend: $(CPPFILES)
- makedepend -Y -I.. -f makedepend -w 20 $(CPPFILES)
- echo "# DO NOT DELETE THIS LINE -- make depend depends on it." > makedepend.tmp
- echo "" >> makedepend.tmp
- grep '^[a-zA-Z]' makedepend | ( LC_ALL=C sort -u -f >> makedepend.tmp; )
- mv makedepend.tmp makedepend
-
-# Automatically generated dependencies...
-include makedepend
-
-install: all
- echo "Installing fltk-options in $(DESTDIR)$(bindir)..."
- -$(INSTALL_DIR) "$(DESTDIR)$(bindir)"
- $(INSTALL_BIN) $(FLTK_OPTIONS) "$(DESTDIR)$(bindir)/fltk-options$(EXEEXT)"
-
-install-linux:
- -$(INSTALL_DIR) "$(DESTDIR)/usr/share/applications"
- $(INSTALL_DATA) fltk-options.desktop "$(DESTDIR)/usr/share/applications"
- for size in 16 32 48 64 128; do \
- if test ! -d "$(DESTDIR)/usr/share/icons/hicolor/$${size}x$${size}/apps"; then \
- $(INSTALL_DIR) "$(DESTDIR)/usr/share/icons/hicolor/$${size}x$${size}/apps"; \
- fi; \
- $(INSTALL_DATA) icons/fltk-options-$$size.png "$(DESTDIR)/usr/share/icons/hicolor/$${size}x$${size}/apps/fltk-options.png"; \
- done
- -$(INSTALL_DIR) "$(DESTDIR)/usr/share/mimelnk/application"
- $(INSTALL_DATA) x-fltk-options.desktop "$(DESTDIR)/usr/share/mimelnk/application"
-
-install-osx:
- echo Installing fltk-options in $(DESTDIR)/Applications...
- -$(INSTALL_DIR) "$(DESTDIR)/Applications/fltk-options.app"
- -$(INSTALL_DIR) "$(DESTDIR)/Applications/fltk-options.app/Contents"
- $(INSTALL_DATA) fltk-options.app/Contents/Info.plist "$(DESTDIR)/Applications/fltk-options.app/Contents/Info.plist"
- -$(INSTALL_DIR) "$(DESTDIR)/Applications/fltk-options.app/Contents/MacOS"
- $(RM) "$(DESTDIR)/Applications/fltk-options.app/Contents/MacOS/fltk-options"
- $(LN) $(bindir)/fltk-options "$(DESTDIR)/Applications/fltk-options.app/Contents/MacOS/fltk-options"
- -$(INSTALL_DIR) "$(DESTDIR)/Applications/fltk-options.app/Contents/Resources"
- $(INSTALL_DATA) fltk-options.app/Contents/Resources/fltk-options.icns "$(DESTDIR)/Applications/fltk-options.app/Contents/Resources"
-
-uninstall:
- $(RM) "$(DESTDIR)$(bindir)/fltk-options$(EXEEXT)"
-
-uninstall-linux:
- $(RM) "$(DESTDIR)/usr/share/applications/fltk-options.desktop"
- $(RM) "$(DESTDIR)/usr/share/icons/hicolor/*/fltk-options.png"
- $(RM) "$(DESTDIR)/usr/share/mimelnk/application/x-fltk-options.desktop"
-
-uninstall-osx:
- $(RM) -r "$(DESTDIR)/Applications/fltk-options.app"
diff --git a/fltk-options/makedepend b/fltk-options/makedepend
deleted file mode 100644
index 8ff5d845c..000000000
--- a/fltk-options/makedepend
+++ /dev/null
@@ -1,45 +0,0 @@
-# DO NOT DELETE THIS LINE -- make depend depends on it.
-
-fltk-options.o: ../config.h
-fltk-options.o: ../FL/Enumerations.H
-fltk-options.o: ../FL/filename.H
-fltk-options.o: ../FL/Fl.H
-fltk-options.o: ../FL/fl_attr.h
-fltk-options.o: ../FL/Fl_Bitmap.H
-fltk-options.o: ../FL/Fl_Box.H
-fltk-options.o: ../FL/Fl_Browser.H
-fltk-options.o: ../FL/Fl_Browser_.H
-fltk-options.o: ../FL/Fl_Button.H
-fltk-options.o: ../FL/Fl_Cairo.H
-fltk-options.o: ../FL/fl_casts.H
-fltk-options.o: ../FL/Fl_Choice.H
-fltk-options.o: ../FL/fl_config.h
-fltk-options.o: ../FL/Fl_Device.H
-fltk-options.o: ../FL/Fl_Double_Window.H
-fltk-options.o: ../FL/fl_draw.H
-fltk-options.o: ../FL/Fl_Export.H
-fltk-options.o: ../FL/Fl_Graphics_Driver.H
-fltk-options.o: ../FL/Fl_Group.H
-fltk-options.o: ../FL/Fl_Hold_Browser.H
-fltk-options.o: ../FL/Fl_Image.H
-fltk-options.o: ../FL/Fl_Menu_.H
-fltk-options.o: ../FL/Fl_Menu_Item.H
-fltk-options.o: ../FL/Fl_Multi_Label.H
-fltk-options.o: ../FL/Fl_Pack.H
-fltk-options.o: ../FL/Fl_Pixmap.H
-fltk-options.o: ../FL/Fl_Plugin.H
-fltk-options.o: ../FL/Fl_Preferences.H
-fltk-options.o: ../FL/Fl_Rect.H
-fltk-options.o: ../FL/Fl_RGB_Image.H
-fltk-options.o: ../FL/Fl_Scroll.H
-fltk-options.o: ../FL/Fl_Scrollbar.H
-fltk-options.o: ../FL/Fl_Slider.H
-fltk-options.o: ../FL/fl_string_functions.h
-fltk-options.o: ../FL/Fl_Tooltip.H
-fltk-options.o: ../FL/fl_types.h
-fltk-options.o: ../FL/fl_utf8.h
-fltk-options.o: ../FL/Fl_Valuator.H
-fltk-options.o: ../FL/Fl_Widget.H
-fltk-options.o: ../FL/Fl_Window.H
-fltk-options.o: ../FL/platform_types.h
-fltk-options.o: ../src/flstring.h
diff --git a/fluid/Makefile b/fluid/Makefile
deleted file mode 100644
index ae8037441..000000000
--- a/fluid/Makefile
+++ /dev/null
@@ -1,150 +0,0 @@
-#
-# FLUID Makefile for the Fast Light Tool Kit (FLTK).
-#
-# Copyright 1998-2024 by Bill Spitzak and others.
-#
-# This library is free software. Distribution and use rights are outlined in
-# the file "COPYING" which should have been included with this file. If this
-# file is missing or damaged, see the license at:
-#
-# https://www.fltk.org/COPYING.php
-#
-# Please see the following page on how to report bugs and issues:
-#
-# https://www.fltk.org/bugs.php
-#
-
-include ../makeinclude
-
-CPPFILES = \
- CodeEditor.cxx \
- StyleParse.cxx \
- Fd_Snap_Action.cxx \
- Fl_Button_Type.cxx \
- Fl_Function_Type.cxx \
- Fl_Grid_Type.cxx \
- Fl_Group_Type.cxx \
- Fl_Menu_Type.cxx \
- Fl_Type.cxx \
- Fl_Widget_Type.cxx \
- Fl_Window_Type.cxx \
- Fluid_Image.cxx \
- about_panel.cxx \
- align_widget.cxx \
- settings_panel.cxx \
- autodoc.cxx \
- code.cxx \
- custom_widgets.cxx \
- factory.cxx \
- file.cxx \
- fluid.cxx \
- fluid_filename.cxx \
- function_panel.cxx \
- mergeback.cxx \
- pixmaps.cxx \
- shell_command.cxx \
- codeview_panel.cxx \
- template_panel.cxx \
- undo.cxx \
- widget_browser.cxx \
- widget_panel.cxx
-
-# ExternalCodeEditor: platform specific files
-
-CPPFILES_WIN = ExternalCodeEditor_WIN32.cxx
-CPPFILES_OSX = ExternalCodeEditor_UNIX.cxx
-CPPFILES_X11 = ExternalCodeEditor_UNIX.cxx
-CPPFILES_XFT = ExternalCodeEditor_UNIX.cxx
-CPPFILES_CAIRO = ExternalCodeEditor_UNIX.cxx
-CPPFILES_WAYLAND = ExternalCodeEditor_UNIX.cxx
-CPPFILES_WAYLANDX11 = ExternalCodeEditor_UNIX.cxx
-
-CPPFILES += $(CPPFILES_$(BUILD))
-
-################################################################
-
-OBJECTS = $(CPPFILES:.cxx=.o)
-
-all: $(FLUID) fluid$(EXEEXT)
-
-fluid$(EXEEXT): $(OBJECTS) $(LIBNAME) $(IMGLIBNAME)
- echo Linking $@...
- $(CXX) $(ARCHFLAGS) $(CXXFLAGS) -o $@ $(OBJECTS) $(LINKFLTKIMG) $(LDFLAGS) $(LDLIBS)
- $(OSX_ONLY) $(RM) -r -f fluid.app
- $(OSX_ONLY) mkdir -p fluid.app/Contents/MacOS fluid.app/Contents/Resources
- $(OSX_ONLY) $(INSTALL_BIN) fluid fluid.app/Contents/MacOS
- $(OSX_ONLY) $(INSTALL) icons/fluid.icns fluid.app/Contents/Resources
- $(OSX_ONLY) $(INSTALL) fluid.plist fluid.app/Contents/Info.plist
-
-fluid-shared$(EXEEXT): $(OBJECTS) ../src/$(DSONAME) ../src/$(IMGDSONAME)
- echo Linking $@...
- $(CXX) $(ARCHFLAGS) $(CXXFLAGS) -o $@ $(OBJECTS) $(LINKSHARED) $(LDFLAGS) $(LDLIBS)
-
-clean:
- -$(RM) *.o core.* *~ *.bck *.bak
- -$(RM) core fluid$(EXEEXT) fluid-shared$(EXEEXT)
- $(OSX_ONLY) -$(RMDIR) fluid.app
-
-depend: $(CPPFILES)
- makedepend -Y -I.. -f makedepend -w 20 $(CPPFILES)
- echo "# DO NOT DELETE THIS LINE -- make depend depends on it." > makedepend.tmp
- echo "" >> makedepend.tmp
- grep '^[a-zA-Z]' makedepend | ( LC_ALL=C sort -u -f >> makedepend.tmp; )
- mv makedepend.tmp makedepend
-
-# Automatically generated dependencies...
-include makedepend
-
-install: all
- echo "Installing FLUID in $(DESTDIR)$(bindir)..."
- -$(INSTALL_DIR) "$(DESTDIR)$(bindir)"
- $(INSTALL_BIN) $(FLUID) "$(DESTDIR)$(bindir)/fluid$(EXEEXT)"
-
-install-linux:
- -$(INSTALL_DIR) "$(DESTDIR)$(datadir)/applications"
- $(INSTALL_DATA) fluid.desktop "$(DESTDIR)$(datadir)/applications"
- for size in 16 32 48 64 128; do \
- if test ! -d "$(DESTDIR)$(datadir)/icons/hicolor/$${size}x$${size}/apps"; then \
- $(INSTALL_DIR) "$(DESTDIR)$(datadir)/icons/hicolor/$${size}x$${size}/apps"; \
- fi; \
- $(INSTALL_DATA) icons/fluid-$$size.png "$(DESTDIR)$(datadir)/icons/hicolor/$${size}x$${size}/apps/fluid.png"; \
- done
- -$(INSTALL_DIR) "$(DESTDIR)$(datadir)/mimelnk/application"
- $(INSTALL_DATA) x-fluid.desktop "$(DESTDIR)$(datadir)/mimelnk/application"
-
-install-osx:
- echo Installing Fluid in $(DESTDIR)/Applications...
- -$(INSTALL_DIR) "$(DESTDIR)/Applications/fluid.app"
- -$(INSTALL_DIR) "$(DESTDIR)/Applications/fluid.app/Contents"
- $(INSTALL_DATA) fluid.app/Contents/Info.plist "$(DESTDIR)/Applications/fluid.app/Contents/Info.plist"
- -$(INSTALL_DIR) "$(DESTDIR)/Applications/fluid.app/Contents/MacOS"
- $(RM) "$(DESTDIR)/Applications/fluid.app/Contents/MacOS/fluid"
- $(LN) "$(bindir)/fluid" "$(DESTDIR)/Applications/fluid.app/Contents/MacOS/fluid"
- -$(INSTALL_DIR) "$(DESTDIR)/Applications/fluid.app/Contents/Resources"
- $(INSTALL_DATA) fluid.app/Contents/Resources/fluid.icns "$(DESTDIR)/Applications/fluid.app/Contents/Resources"
-
-uninstall:
- $(RM) "$(DESTDIR)$(bindir)/fluid$(EXEEXT)"
-
-uninstall-linux:
- $(RM) "$(DESTDIR)$(datadir)/applications/fluid.desktop"
- $(RM) "$(DESTDIR)$(datadir)/icons/hicolor"/*/fluid.png
- $(RM) "$(DESTDIR)$(datadir)/mimelnk/application/x-fluid.desktop"
-
-uninstall-osx:
- $(RM) -r "$(DESTDIR)/Applications/fluid.app"
-
-# Note: The rebuild target can only be used if you have the original .fl
-# files. This is normally only used by FLTK maintainers...
-# It *must* be executed *after* fluid has been built and
-# fluid must be rebuilt if any {.fl|.cxx|.h} files were changed.
-
-rebuild: fluid$(EXEEXT)
- echo 'Rebuilding fluid (.fl) and .cxx/.h files from .fl files ...'
- ./fluid$(EXEEXT) -u -c about_panel.fl
- ./fluid$(EXEEXT) -u -c settings_panel.fl
- ./fluid$(EXEEXT) -u -c function_panel.fl
- ./fluid$(EXEEXT) -u -c print_panel.fl
- ./fluid$(EXEEXT) -u -c codeview_panel.fl
- ./fluid$(EXEEXT) -u -c template_panel.fl
- ./fluid$(EXEEXT) -u -c widget_panel.fl
diff --git a/fluid/makedepend b/fluid/makedepend
deleted file mode 100644
index f91d59377..000000000
--- a/fluid/makedepend
+++ /dev/null
@@ -1,1867 +0,0 @@
-# DO NOT DELETE THIS LINE -- make depend depends on it.
-
-about_panel.o: ../config.h
-about_panel.o: ../FL/Enumerations.H
-about_panel.o: ../FL/Fl.H
-about_panel.o: ../FL/Fl_Anim_GIF_Image.H
-about_panel.o: ../FL/fl_attr.h
-about_panel.o: ../FL/Fl_Bitmap.H
-about_panel.o: ../FL/Fl_Box.H
-about_panel.o: ../FL/Fl_Button.H
-about_panel.o: ../FL/Fl_Cairo.H
-about_panel.o: ../FL/fl_casts.H
-about_panel.o: ../FL/fl_config.h
-about_panel.o: ../FL/Fl_Double_Window.H
-about_panel.o: ../FL/Fl_Export.H
-about_panel.o: ../FL/Fl_GIF_Image.H
-about_panel.o: ../FL/Fl_Group.H
-about_panel.o: ../FL/Fl_Image.H
-about_panel.o: ../FL/Fl_Pixmap.H
-about_panel.o: ../FL/Fl_Return_Button.H
-about_panel.o: ../FL/fl_string_functions.h
-about_panel.o: ../FL/fl_types.h
-about_panel.o: ../FL/fl_utf8.h
-about_panel.o: ../FL/Fl_Widget.H
-about_panel.o: ../FL/Fl_Window.H
-about_panel.o: ../FL/platform_types.h
-about_panel.o: ../src/flstring.h
-about_panel.o: about_panel.h
-align_widget.o: ../FL/Enumerations.H
-align_widget.o: ../FL/filename.H
-align_widget.o: ../FL/Fl.H
-align_widget.o: ../FL/fl_attr.h
-align_widget.o: ../FL/Fl_Bitmap.H
-align_widget.o: ../FL/Fl_Cairo.H
-align_widget.o: ../FL/fl_casts.H
-align_widget.o: ../FL/fl_config.h
-align_widget.o: ../FL/Fl_Device.H
-align_widget.o: ../FL/fl_draw.H
-align_widget.o: ../FL/Fl_Export.H
-align_widget.o: ../FL/Fl_Flex.H
-align_widget.o: ../FL/Fl_Graphics_Driver.H
-align_widget.o: ../FL/Fl_Group.H
-align_widget.o: ../FL/Fl_Image.H
-align_widget.o: ../FL/Fl_Menu_Item.H
-align_widget.o: ../FL/Fl_Multi_Label.H
-align_widget.o: ../FL/Fl_Pack.H
-align_widget.o: ../FL/Fl_Pixmap.H
-align_widget.o: ../FL/Fl_Plugin.H
-align_widget.o: ../FL/Fl_Preferences.H
-align_widget.o: ../FL/Fl_Rect.H
-align_widget.o: ../FL/Fl_RGB_Image.H
-align_widget.o: ../FL/Fl_Tabs.H
-align_widget.o: ../FL/fl_types.h
-align_widget.o: ../FL/fl_utf8.h
-align_widget.o: ../FL/Fl_Widget.H
-align_widget.o: ../FL/Fl_Window.H
-align_widget.o: ../FL/Fl_Wizard.H
-align_widget.o: ../FL/platform_types.h
-align_widget.o: ../src/Fl_String.H
-align_widget.o: align_widget.h
-align_widget.o: code.h
-align_widget.o: fluid.h
-align_widget.o: fluid_filename.h
-align_widget.o: Fl_Group_Type.h
-align_widget.o: Fl_Type.h
-align_widget.o: Fl_Widget_Type.h
-align_widget.o: undo.h
-autodoc.o: ../FL/Enumerations.H
-autodoc.o: ../FL/filename.H
-autodoc.o: ../FL/Fl.H
-autodoc.o: ../FL/fl_ask.H
-autodoc.o: ../FL/fl_attr.h
-autodoc.o: ../FL/Fl_Bitmap.H
-autodoc.o: ../FL/Fl_Box.H
-autodoc.o: ../FL/Fl_Browser.H
-autodoc.o: ../FL/Fl_Browser_.H
-autodoc.o: ../FL/Fl_Button.H
-autodoc.o: ../FL/Fl_Cairo.H
-autodoc.o: ../FL/fl_casts.H
-autodoc.o: ../FL/Fl_Check_Button.H
-autodoc.o: ../FL/Fl_Choice.H
-autodoc.o: ../FL/fl_config.h
-autodoc.o: ../FL/Fl_Device.H
-autodoc.o: ../FL/Fl_Double_Window.H
-autodoc.o: ../FL/fl_draw.H
-autodoc.o: ../FL/Fl_Export.H
-autodoc.o: ../FL/Fl_File_Browser.H
-autodoc.o: ../FL/Fl_File_Chooser.H
-autodoc.o: ../FL/Fl_File_Icon.H
-autodoc.o: ../FL/Fl_File_Input.H
-autodoc.o: ../FL/Fl_Flex.H
-autodoc.o: ../FL/Fl_Graphics_Driver.H
-autodoc.o: ../FL/Fl_Group.H
-autodoc.o: ../FL/Fl_Image.H
-autodoc.o: ../FL/Fl_Image_Surface.H
-autodoc.o: ../FL/Fl_Input.H
-autodoc.o: ../FL/Fl_Input_.H
-autodoc.o: ../FL/Fl_Input_Choice.H
-autodoc.o: ../FL/Fl_Int_Input.H
-autodoc.o: ../FL/Fl_Light_Button.H
-autodoc.o: ../FL/Fl_Menu_.H
-autodoc.o: ../FL/Fl_Menu_Bar.H
-autodoc.o: ../FL/Fl_Menu_Button.H
-autodoc.o: ../FL/Fl_Menu_Item.H
-autodoc.o: ../FL/Fl_Multi_Label.H
-autodoc.o: ../FL/Fl_Native_File_Chooser.H
-autodoc.o: ../FL/Fl_Pack.H
-autodoc.o: ../FL/Fl_Pixmap.H
-autodoc.o: ../FL/Fl_Plugin.H
-autodoc.o: ../FL/Fl_PNG_Image.H
-autodoc.o: ../FL/Fl_Preferences.H
-autodoc.o: ../FL/Fl_Rect.H
-autodoc.o: ../FL/Fl_Repeat_Button.H
-autodoc.o: ../FL/Fl_Return_Button.H
-autodoc.o: ../FL/Fl_RGB_Image.H
-autodoc.o: ../FL/Fl_Scheme.H
-autodoc.o: ../FL/Fl_Scheme_Choice.H
-autodoc.o: ../FL/Fl_Scrollbar.H
-autodoc.o: ../FL/Fl_Shared_Image.H
-autodoc.o: ../FL/Fl_Shortcut_Button.H
-autodoc.o: ../FL/fl_show_colormap.H
-autodoc.o: ../FL/Fl_Slider.H
-autodoc.o: ../FL/Fl_Spinner.H
-autodoc.o: ../FL/fl_string_functions.h
-autodoc.o: ../FL/Fl_Tabs.H
-autodoc.o: ../FL/Fl_Terminal.H
-autodoc.o: ../FL/Fl_Text_Buffer.H
-autodoc.o: ../FL/Fl_Text_Display.H
-autodoc.o: ../FL/Fl_Text_Editor.H
-autodoc.o: ../FL/Fl_Tile.H
-autodoc.o: ../FL/fl_types.h
-autodoc.o: ../FL/fl_utf8.h
-autodoc.o: ../FL/Fl_Valuator.H
-autodoc.o: ../FL/Fl_Value_Input.H
-autodoc.o: ../FL/Fl_Widget.H
-autodoc.o: ../FL/Fl_Widget_Surface.H
-autodoc.o: ../FL/Fl_Window.H
-autodoc.o: ../FL/Fl_Wizard.H
-autodoc.o: ../FL/platform_types.h
-autodoc.o: ../src/Fl_String.H
-autodoc.o: autodoc.h
-autodoc.o: code.h
-autodoc.o: CodeEditor.h
-autodoc.o: codeview_panel.h
-autodoc.o: custom_widgets.h
-autodoc.o: factory.h
-autodoc.o: Fd_Snap_Action.h
-autodoc.o: fluid.h
-autodoc.o: fluid_filename.h
-autodoc.o: Fl_Group_Type.h
-autodoc.o: Fl_Type.h
-autodoc.o: Fl_Widget_Type.h
-autodoc.o: Fl_Window_Type.h
-autodoc.o: function_panel.h
-autodoc.o: settings_panel.h
-autodoc.o: shell_command.h
-autodoc.o: StyleParse.h
-autodoc.o: widget_browser.h
-autodoc.o: widget_panel.h
-code.o: ../config.h
-code.o: ../FL/Enumerations.H
-code.o: ../FL/filename.H
-code.o: ../FL/Fl.H
-code.o: ../FL/fl_ask.H
-code.o: ../FL/fl_attr.h
-code.o: ../FL/Fl_Bitmap.H
-code.o: ../FL/Fl_Cairo.H
-code.o: ../FL/fl_casts.H
-code.o: ../FL/fl_config.h
-code.o: ../FL/Fl_Device.H
-code.o: ../FL/fl_draw.H
-code.o: ../FL/Fl_Export.H
-code.o: ../FL/Fl_Flex.H
-code.o: ../FL/Fl_Graphics_Driver.H
-code.o: ../FL/Fl_Group.H
-code.o: ../FL/Fl_Image.H
-code.o: ../FL/Fl_Menu.H
-code.o: ../FL/Fl_Menu_Item.H
-code.o: ../FL/Fl_Multi_Label.H
-code.o: ../FL/Fl_Pack.H
-code.o: ../FL/Fl_Pixmap.H
-code.o: ../FL/Fl_Plugin.H
-code.o: ../FL/Fl_Preferences.H
-code.o: ../FL/Fl_Rect.H
-code.o: ../FL/Fl_RGB_Image.H
-code.o: ../FL/Fl_Shared_Image.H
-code.o: ../FL/fl_string_functions.h
-code.o: ../FL/Fl_Tabs.H
-code.o: ../FL/fl_types.h
-code.o: ../FL/fl_utf8.h
-code.o: ../FL/Fl_Widget.H
-code.o: ../FL/Fl_Wizard.H
-code.o: ../FL/platform_types.h
-code.o: ../src/flstring.h
-code.o: ../src/Fl_String.H
-code.o: code.h
-code.o: ExternalCodeEditor_UNIX.h
-code.o: file.h
-code.o: fluid.h
-code.o: fluid_filename.h
-code.o: Fluid_Image.h
-code.o: Fl_Function_Type.h
-code.o: Fl_Group_Type.h
-code.o: Fl_Type.h
-code.o: Fl_Widget_Type.h
-code.o: Fl_Window_Type.h
-code.o: undo.h
-CodeEditor.o: ../FL/Enumerations.H
-CodeEditor.o: ../FL/Fl.H
-CodeEditor.o: ../FL/fl_attr.h
-CodeEditor.o: ../FL/Fl_Bitmap.H
-CodeEditor.o: ../FL/Fl_Cairo.H
-CodeEditor.o: ../FL/fl_casts.H
-CodeEditor.o: ../FL/fl_config.h
-CodeEditor.o: ../FL/Fl_Device.H
-CodeEditor.o: ../FL/fl_draw.H
-CodeEditor.o: ../FL/Fl_Export.H
-CodeEditor.o: ../FL/Fl_Graphics_Driver.H
-CodeEditor.o: ../FL/Fl_Group.H
-CodeEditor.o: ../FL/Fl_Image.H
-CodeEditor.o: ../FL/Fl_Pixmap.H
-CodeEditor.o: ../FL/Fl_Plugin.H
-CodeEditor.o: ../FL/Fl_Preferences.H
-CodeEditor.o: ../FL/Fl_Rect.H
-CodeEditor.o: ../FL/Fl_RGB_Image.H
-CodeEditor.o: ../FL/Fl_Scrollbar.H
-CodeEditor.o: ../FL/Fl_Slider.H
-CodeEditor.o: ../FL/Fl_Text_Buffer.H
-CodeEditor.o: ../FL/Fl_Text_Display.H
-CodeEditor.o: ../FL/Fl_Text_Editor.H
-CodeEditor.o: ../FL/fl_types.h
-CodeEditor.o: ../FL/fl_utf8.h
-CodeEditor.o: ../FL/Fl_Valuator.H
-CodeEditor.o: ../FL/Fl_Widget.H
-CodeEditor.o: ../FL/platform_types.h
-CodeEditor.o: CodeEditor.h
-CodeEditor.o: StyleParse.h
-codeview_panel.o: ../config.h
-codeview_panel.o: ../FL/Enumerations.H
-codeview_panel.o: ../FL/filename.H
-codeview_panel.o: ../FL/Fl.H
-codeview_panel.o: ../FL/fl_attr.h
-codeview_panel.o: ../FL/Fl_Bitmap.H
-codeview_panel.o: ../FL/Fl_Box.H
-codeview_panel.o: ../FL/Fl_Button.H
-codeview_panel.o: ../FL/Fl_Cairo.H
-codeview_panel.o: ../FL/fl_casts.H
-codeview_panel.o: ../FL/Fl_Choice.H
-codeview_panel.o: ../FL/fl_config.h
-codeview_panel.o: ../FL/Fl_Device.H
-codeview_panel.o: ../FL/Fl_Double_Window.H
-codeview_panel.o: ../FL/fl_draw.H
-codeview_panel.o: ../FL/Fl_Export.H
-codeview_panel.o: ../FL/Fl_Graphics_Driver.H
-codeview_panel.o: ../FL/Fl_Group.H
-codeview_panel.o: ../FL/Fl_Image.H
-codeview_panel.o: ../FL/Fl_Input.H
-codeview_panel.o: ../FL/Fl_Input_.H
-codeview_panel.o: ../FL/Fl_Light_Button.H
-codeview_panel.o: ../FL/Fl_Menu_.H
-codeview_panel.o: ../FL/Fl_Menu_Item.H
-codeview_panel.o: ../FL/Fl_Multi_Label.H
-codeview_panel.o: ../FL/Fl_Pixmap.H
-codeview_panel.o: ../FL/Fl_Plugin.H
-codeview_panel.o: ../FL/Fl_Preferences.H
-codeview_panel.o: ../FL/Fl_Rect.H
-codeview_panel.o: ../FL/Fl_RGB_Image.H
-codeview_panel.o: ../FL/Fl_Scrollbar.H
-codeview_panel.o: ../FL/Fl_Slider.H
-codeview_panel.o: ../FL/fl_string_functions.h
-codeview_panel.o: ../FL/Fl_Tabs.H
-codeview_panel.o: ../FL/Fl_Text_Buffer.H
-codeview_panel.o: ../FL/Fl_Text_Display.H
-codeview_panel.o: ../FL/Fl_Text_Editor.H
-codeview_panel.o: ../FL/fl_types.h
-codeview_panel.o: ../FL/fl_utf8.h
-codeview_panel.o: ../FL/Fl_Valuator.H
-codeview_panel.o: ../FL/Fl_Widget.H
-codeview_panel.o: ../FL/Fl_Window.H
-codeview_panel.o: ../FL/platform_types.h
-codeview_panel.o: ../src/flstring.h
-codeview_panel.o: ../src/Fl_String.H
-codeview_panel.o: code.h
-codeview_panel.o: CodeEditor.h
-codeview_panel.o: codeview_panel.h
-codeview_panel.o: file.h
-codeview_panel.o: fluid.h
-codeview_panel.o: fluid_filename.h
-codeview_panel.o: Fl_Type.h
-codeview_panel.o: StyleParse.h
-custom_widgets.o: ../config.h
-custom_widgets.o: ../FL/Enumerations.H
-custom_widgets.o: ../FL/filename.H
-custom_widgets.o: ../FL/Fl.H
-custom_widgets.o: ../FL/fl_attr.h
-custom_widgets.o: ../FL/Fl_Bitmap.H
-custom_widgets.o: ../FL/Fl_Box.H
-custom_widgets.o: ../FL/Fl_Browser_.H
-custom_widgets.o: ../FL/Fl_Button.H
-custom_widgets.o: ../FL/Fl_Cairo.H
-custom_widgets.o: ../FL/fl_casts.H
-custom_widgets.o: ../FL/Fl_Check_Button.H
-custom_widgets.o: ../FL/Fl_Choice.H
-custom_widgets.o: ../FL/fl_config.h
-custom_widgets.o: ../FL/Fl_Device.H
-custom_widgets.o: ../FL/Fl_Double_Window.H
-custom_widgets.o: ../FL/fl_draw.H
-custom_widgets.o: ../FL/Fl_Export.H
-custom_widgets.o: ../FL/Fl_Flex.H
-custom_widgets.o: ../FL/Fl_Graphics_Driver.H
-custom_widgets.o: ../FL/Fl_Group.H
-custom_widgets.o: ../FL/Fl_Image.H
-custom_widgets.o: ../FL/Fl_Input.H
-custom_widgets.o: ../FL/Fl_Input_.H
-custom_widgets.o: ../FL/Fl_Input_Choice.H
-custom_widgets.o: ../FL/Fl_Light_Button.H
-custom_widgets.o: ../FL/Fl_Menu_.H
-custom_widgets.o: ../FL/Fl_Menu_Button.H
-custom_widgets.o: ../FL/Fl_Menu_Item.H
-custom_widgets.o: ../FL/Fl_Multi_Label.H
-custom_widgets.o: ../FL/Fl_Pack.H
-custom_widgets.o: ../FL/Fl_Pixmap.H
-custom_widgets.o: ../FL/Fl_Plugin.H
-custom_widgets.o: ../FL/Fl_Preferences.H
-custom_widgets.o: ../FL/Fl_Rect.H
-custom_widgets.o: ../FL/Fl_Return_Button.H
-custom_widgets.o: ../FL/Fl_RGB_Image.H
-custom_widgets.o: ../FL/Fl_Scrollbar.H
-custom_widgets.o: ../FL/Fl_Shared_Image.H
-custom_widgets.o: ../FL/Fl_Shortcut_Button.H
-custom_widgets.o: ../FL/Fl_Slider.H
-custom_widgets.o: ../FL/fl_string_functions.h
-custom_widgets.o: ../FL/Fl_Tabs.H
-custom_widgets.o: ../FL/Fl_Text_Buffer.H
-custom_widgets.o: ../FL/Fl_Text_Display.H
-custom_widgets.o: ../FL/Fl_Text_Editor.H
-custom_widgets.o: ../FL/Fl_Tile.H
-custom_widgets.o: ../FL/fl_types.h
-custom_widgets.o: ../FL/fl_utf8.h
-custom_widgets.o: ../FL/Fl_Valuator.H
-custom_widgets.o: ../FL/Fl_Value_Input.H
-custom_widgets.o: ../FL/Fl_Widget.H
-custom_widgets.o: ../FL/Fl_Window.H
-custom_widgets.o: ../FL/Fl_Wizard.H
-custom_widgets.o: ../FL/platform.H
-custom_widgets.o: ../FL/platform_types.h
-custom_widgets.o: ../FL/x11.H
-custom_widgets.o: ../src/flstring.h
-custom_widgets.o: ../src/Fl_String.H
-custom_widgets.o: code.h
-custom_widgets.o: CodeEditor.h
-custom_widgets.o: custom_widgets.h
-custom_widgets.o: factory.h
-custom_widgets.o: fluid.h
-custom_widgets.o: fluid_filename.h
-custom_widgets.o: Fl_Group_Type.h
-custom_widgets.o: Fl_Type.h
-custom_widgets.o: Fl_Widget_Type.h
-custom_widgets.o: Fl_Window_Type.h
-custom_widgets.o: StyleParse.h
-custom_widgets.o: widget_browser.h
-custom_widgets.o: widget_panel.h
-ExternalCodeEditor_UNIX.o: ../FL/Enumerations.H
-ExternalCodeEditor_UNIX.o: ../FL/filename.H
-ExternalCodeEditor_UNIX.o: ../FL/Fl.H
-ExternalCodeEditor_UNIX.o: ../FL/fl_ask.H
-ExternalCodeEditor_UNIX.o: ../FL/fl_attr.h
-ExternalCodeEditor_UNIX.o: ../FL/Fl_Cairo.H
-ExternalCodeEditor_UNIX.o: ../FL/fl_casts.H
-ExternalCodeEditor_UNIX.o: ../FL/fl_config.h
-ExternalCodeEditor_UNIX.o: ../FL/Fl_Export.H
-ExternalCodeEditor_UNIX.o: ../FL/Fl_Image.H
-ExternalCodeEditor_UNIX.o: ../FL/Fl_Menu_Item.H
-ExternalCodeEditor_UNIX.o: ../FL/Fl_Multi_Label.H
-ExternalCodeEditor_UNIX.o: ../FL/Fl_Preferences.H
-ExternalCodeEditor_UNIX.o: ../FL/fl_string_functions.h
-ExternalCodeEditor_UNIX.o: ../FL/fl_types.h
-ExternalCodeEditor_UNIX.o: ../FL/fl_utf8.h
-ExternalCodeEditor_UNIX.o: ../FL/Fl_Widget.H
-ExternalCodeEditor_UNIX.o: ../FL/platform_types.h
-ExternalCodeEditor_UNIX.o: ../src/Fl_String.H
-ExternalCodeEditor_UNIX.o: ExternalCodeEditor_UNIX.h
-ExternalCodeEditor_UNIX.o: fluid.h
-ExternalCodeEditor_UNIX.o: fluid_filename.h
-factory.o: ../config.h
-factory.o: ../FL/Enumerations.H
-factory.o: ../FL/filename.H
-factory.o: ../FL/Fl.H
-factory.o: ../FL/Fl_Adjuster.H
-factory.o: ../FL/fl_attr.h
-factory.o: ../FL/Fl_Bitmap.H
-factory.o: ../FL/Fl_Box.H
-factory.o: ../FL/Fl_Browser.H
-factory.o: ../FL/Fl_Browser_.H
-factory.o: ../FL/Fl_Button.H
-factory.o: ../FL/Fl_Cairo.H
-factory.o: ../FL/fl_casts.H
-factory.o: ../FL/Fl_Check_Browser.H
-factory.o: ../FL/Fl_Choice.H
-factory.o: ../FL/Fl_Clock.H
-factory.o: ../FL/fl_config.h
-factory.o: ../FL/Fl_Counter.H
-factory.o: ../FL/Fl_Device.H
-factory.o: ../FL/Fl_Dial.H
-factory.o: ../FL/fl_draw.H
-factory.o: ../FL/Fl_Export.H
-factory.o: ../FL/Fl_File_Browser.H
-factory.o: ../FL/Fl_File_Icon.H
-factory.o: ../FL/Fl_File_Input.H
-factory.o: ../FL/Fl_Flex.H
-factory.o: ../FL/Fl_Graphics_Driver.H
-factory.o: ../FL/Fl_Grid.H
-factory.o: ../FL/Fl_Group.H
-factory.o: ../FL/Fl_Help_View.H
-factory.o: ../FL/Fl_Image.H
-factory.o: ../FL/Fl_Input.H
-factory.o: ../FL/Fl_Input_.H
-factory.o: ../FL/Fl_Input_Choice.H
-factory.o: ../FL/Fl_Menu_.H
-factory.o: ../FL/Fl_Menu_Bar.H
-factory.o: ../FL/Fl_Menu_Button.H
-factory.o: ../FL/Fl_Menu_Item.H
-factory.o: ../FL/Fl_Multi_Label.H
-factory.o: ../FL/Fl_Output.H
-factory.o: ../FL/Fl_Pack.H
-factory.o: ../FL/Fl_Pixmap.H
-factory.o: ../FL/Fl_Plugin.H
-factory.o: ../FL/Fl_Preferences.H
-factory.o: ../FL/Fl_Progress.H
-factory.o: ../FL/Fl_Rect.H
-factory.o: ../FL/Fl_Repeat_Button.H
-factory.o: ../FL/Fl_RGB_Image.H
-factory.o: ../FL/Fl_Roller.H
-factory.o: ../FL/Fl_Scrollbar.H
-factory.o: ../FL/Fl_Slider.H
-factory.o: ../FL/Fl_Spinner.H
-factory.o: ../FL/fl_string_functions.h
-factory.o: ../FL/Fl_Tabs.H
-factory.o: ../FL/Fl_Terminal.H
-factory.o: ../FL/Fl_Text_Buffer.H
-factory.o: ../FL/Fl_Text_Display.H
-factory.o: ../FL/Fl_Text_Editor.H
-factory.o: ../FL/Fl_Tree.H
-factory.o: ../FL/Fl_Tree_Item.H
-factory.o: ../FL/Fl_Tree_Item_Array.H
-factory.o: ../FL/Fl_Tree_Prefs.H
-factory.o: ../FL/fl_types.h
-factory.o: ../FL/fl_utf8.h
-factory.o: ../FL/Fl_Valuator.H
-factory.o: ../FL/Fl_Value_Input.H
-factory.o: ../FL/Fl_Value_Output.H
-factory.o: ../FL/Fl_Value_Slider.H
-factory.o: ../FL/Fl_Widget.H
-factory.o: ../FL/Fl_Window.H
-factory.o: ../FL/Fl_Wizard.H
-factory.o: ../FL/platform_types.h
-factory.o: ../src/flstring.h
-factory.o: ../src/Fl_String.H
-factory.o: code.h
-factory.o: factory.h
-factory.o: Fd_Snap_Action.h
-factory.o: fluid.h
-factory.o: fluid_filename.h
-factory.o: Fl_Button_Type.h
-factory.o: Fl_Grid_Type.h
-factory.o: Fl_Group_Type.h
-factory.o: Fl_Menu_Type.h
-factory.o: Fl_Type.h
-factory.o: Fl_Widget_Type.h
-factory.o: Fl_Window_Type.h
-factory.o: pixmaps.h
-factory.o: undo.h
-Fd_Snap_Action.o: ../FL/Enumerations.H
-Fd_Snap_Action.o: ../FL/filename.H
-Fd_Snap_Action.o: ../FL/Fl.H
-Fd_Snap_Action.o: ../FL/fl_ask.H
-Fd_Snap_Action.o: ../FL/fl_attr.h
-Fd_Snap_Action.o: ../FL/Fl_Bitmap.H
-Fd_Snap_Action.o: ../FL/Fl_Box.H
-Fd_Snap_Action.o: ../FL/Fl_Browser.H
-Fd_Snap_Action.o: ../FL/Fl_Browser_.H
-Fd_Snap_Action.o: ../FL/Fl_Button.H
-Fd_Snap_Action.o: ../FL/Fl_Cairo.H
-Fd_Snap_Action.o: ../FL/fl_casts.H
-Fd_Snap_Action.o: ../FL/Fl_Check_Button.H
-Fd_Snap_Action.o: ../FL/Fl_Choice.H
-Fd_Snap_Action.o: ../FL/fl_config.h
-Fd_Snap_Action.o: ../FL/Fl_Device.H
-Fd_Snap_Action.o: ../FL/Fl_Double_Window.H
-Fd_Snap_Action.o: ../FL/fl_draw.H
-Fd_Snap_Action.o: ../FL/Fl_Export.H
-Fd_Snap_Action.o: ../FL/Fl_File_Browser.H
-Fd_Snap_Action.o: ../FL/Fl_File_Chooser.H
-Fd_Snap_Action.o: ../FL/Fl_File_Icon.H
-Fd_Snap_Action.o: ../FL/Fl_File_Input.H
-Fd_Snap_Action.o: ../FL/Fl_Flex.H
-Fd_Snap_Action.o: ../FL/Fl_Graphics_Driver.H
-Fd_Snap_Action.o: ../FL/Fl_Group.H
-Fd_Snap_Action.o: ../FL/Fl_Image.H
-Fd_Snap_Action.o: ../FL/Fl_Input.H
-Fd_Snap_Action.o: ../FL/Fl_Input_.H
-Fd_Snap_Action.o: ../FL/Fl_Int_Input.H
-Fd_Snap_Action.o: ../FL/Fl_Light_Button.H
-Fd_Snap_Action.o: ../FL/Fl_Menu_.H
-Fd_Snap_Action.o: ../FL/Fl_Menu_Bar.H
-Fd_Snap_Action.o: ../FL/Fl_Menu_Button.H
-Fd_Snap_Action.o: ../FL/Fl_Menu_Item.H
-Fd_Snap_Action.o: ../FL/Fl_Multi_Label.H
-Fd_Snap_Action.o: ../FL/Fl_Native_File_Chooser.H
-Fd_Snap_Action.o: ../FL/Fl_Pack.H
-Fd_Snap_Action.o: ../FL/Fl_Pixmap.H
-Fd_Snap_Action.o: ../FL/Fl_Plugin.H
-Fd_Snap_Action.o: ../FL/Fl_Preferences.H
-Fd_Snap_Action.o: ../FL/Fl_Rect.H
-Fd_Snap_Action.o: ../FL/Fl_Repeat_Button.H
-Fd_Snap_Action.o: ../FL/Fl_Return_Button.H
-Fd_Snap_Action.o: ../FL/Fl_RGB_Image.H
-Fd_Snap_Action.o: ../FL/Fl_Scheme.H
-Fd_Snap_Action.o: ../FL/Fl_Scheme_Choice.H
-Fd_Snap_Action.o: ../FL/Fl_Scrollbar.H
-Fd_Snap_Action.o: ../FL/Fl_Shortcut_Button.H
-Fd_Snap_Action.o: ../FL/fl_show_colormap.H
-Fd_Snap_Action.o: ../FL/Fl_Slider.H
-Fd_Snap_Action.o: ../FL/Fl_Spinner.H
-Fd_Snap_Action.o: ../FL/fl_string_functions.h
-Fd_Snap_Action.o: ../FL/Fl_Tabs.H
-Fd_Snap_Action.o: ../FL/Fl_Terminal.H
-Fd_Snap_Action.o: ../FL/Fl_Text_Buffer.H
-Fd_Snap_Action.o: ../FL/Fl_Text_Display.H
-Fd_Snap_Action.o: ../FL/Fl_Text_Editor.H
-Fd_Snap_Action.o: ../FL/Fl_Tile.H
-Fd_Snap_Action.o: ../FL/fl_types.h
-Fd_Snap_Action.o: ../FL/fl_utf8.h
-Fd_Snap_Action.o: ../FL/Fl_Valuator.H
-Fd_Snap_Action.o: ../FL/Fl_Value_Input.H
-Fd_Snap_Action.o: ../FL/Fl_Widget.H
-Fd_Snap_Action.o: ../FL/Fl_Window.H
-Fd_Snap_Action.o: ../FL/Fl_Wizard.H
-Fd_Snap_Action.o: ../FL/platform_types.h
-Fd_Snap_Action.o: ../src/Fl_String.H
-Fd_Snap_Action.o: code.h
-Fd_Snap_Action.o: Fd_Snap_Action.h
-Fd_Snap_Action.o: file.h
-Fd_Snap_Action.o: fluid.h
-Fd_Snap_Action.o: fluid_filename.h
-Fd_Snap_Action.o: Fl_Group_Type.h
-Fd_Snap_Action.o: Fl_Type.h
-Fd_Snap_Action.o: Fl_Widget_Type.h
-Fd_Snap_Action.o: Fl_Window_Type.h
-Fd_Snap_Action.o: settings_panel.h
-Fd_Snap_Action.o: shell_command.h
-Fd_Snap_Action.o: widget_browser.h
-file.o: ../config.h
-file.o: ../FL/Enumerations.H
-file.o: ../FL/filename.H
-file.o: ../FL/Fl.H
-file.o: ../FL/fl_ask.H
-file.o: ../FL/fl_attr.h
-file.o: ../FL/Fl_Bitmap.H
-file.o: ../FL/Fl_Box.H
-file.o: ../FL/Fl_Browser.H
-file.o: ../FL/Fl_Browser_.H
-file.o: ../FL/Fl_Button.H
-file.o: ../FL/Fl_Cairo.H
-file.o: ../FL/fl_casts.H
-file.o: ../FL/Fl_Check_Button.H
-file.o: ../FL/Fl_Choice.H
-file.o: ../FL/fl_config.h
-file.o: ../FL/Fl_Device.H
-file.o: ../FL/Fl_Double_Window.H
-file.o: ../FL/fl_draw.H
-file.o: ../FL/Fl_Export.H
-file.o: ../FL/Fl_File_Browser.H
-file.o: ../FL/Fl_File_Chooser.H
-file.o: ../FL/Fl_File_Icon.H
-file.o: ../FL/Fl_File_Input.H
-file.o: ../FL/Fl_Flex.H
-file.o: ../FL/Fl_Graphics_Driver.H
-file.o: ../FL/Fl_Grid.H
-file.o: ../FL/Fl_Group.H
-file.o: ../FL/Fl_Image.H
-file.o: ../FL/Fl_Input.H
-file.o: ../FL/Fl_Input_.H
-file.o: ../FL/Fl_Int_Input.H
-file.o: ../FL/Fl_Light_Button.H
-file.o: ../FL/Fl_Menu.H
-file.o: ../FL/Fl_Menu_.H
-file.o: ../FL/Fl_Menu_Button.H
-file.o: ../FL/Fl_Menu_Item.H
-file.o: ../FL/fl_message.H
-file.o: ../FL/Fl_Multi_Label.H
-file.o: ../FL/Fl_Native_File_Chooser.H
-file.o: ../FL/Fl_Pack.H
-file.o: ../FL/Fl_Pixmap.H
-file.o: ../FL/Fl_Plugin.H
-file.o: ../FL/Fl_Preferences.H
-file.o: ../FL/Fl_Rect.H
-file.o: ../FL/Fl_Repeat_Button.H
-file.o: ../FL/Fl_Return_Button.H
-file.o: ../FL/Fl_RGB_Image.H
-file.o: ../FL/Fl_Scheme.H
-file.o: ../FL/Fl_Scheme_Choice.H
-file.o: ../FL/Fl_Scrollbar.H
-file.o: ../FL/Fl_Shared_Image.H
-file.o: ../FL/Fl_Shortcut_Button.H
-file.o: ../FL/fl_show_colormap.H
-file.o: ../FL/Fl_Slider.H
-file.o: ../FL/Fl_Spinner.H
-file.o: ../FL/fl_string_functions.h
-file.o: ../FL/Fl_Tabs.H
-file.o: ../FL/Fl_Terminal.H
-file.o: ../FL/Fl_Text_Buffer.H
-file.o: ../FL/Fl_Text_Display.H
-file.o: ../FL/Fl_Text_Editor.H
-file.o: ../FL/Fl_Tile.H
-file.o: ../FL/fl_types.h
-file.o: ../FL/fl_utf8.h
-file.o: ../FL/Fl_Valuator.H
-file.o: ../FL/Fl_Value_Input.H
-file.o: ../FL/Fl_Widget.H
-file.o: ../FL/Fl_Window.H
-file.o: ../FL/Fl_Wizard.H
-file.o: ../FL/platform_types.h
-file.o: ../src/flstring.h
-file.o: ../src/Fl_String.H
-file.o: code.h
-file.o: ExternalCodeEditor_UNIX.h
-file.o: factory.h
-file.o: Fd_Snap_Action.h
-file.o: file.h
-file.o: fluid.h
-file.o: fluid_filename.h
-file.o: Fluid_Image.h
-file.o: Fl_Function_Type.h
-file.o: Fl_Grid_Type.h
-file.o: Fl_Group_Type.h
-file.o: Fl_Type.h
-file.o: Fl_Widget_Type.h
-file.o: Fl_Window_Type.h
-file.o: settings_panel.h
-file.o: shell_command.h
-file.o: undo.h
-file.o: widget_browser.h
-fluid.o: ../config.h
-fluid.o: ../FL/Enumerations.H
-fluid.o: ../FL/filename.H
-fluid.o: ../FL/Fl.H
-fluid.o: ../FL/fl_ask.H
-fluid.o: ../FL/fl_attr.h
-fluid.o: ../FL/Fl_Bitmap.H
-fluid.o: ../FL/Fl_Box.H
-fluid.o: ../FL/Fl_Browser.H
-fluid.o: ../FL/Fl_Browser_.H
-fluid.o: ../FL/Fl_Button.H
-fluid.o: ../FL/Fl_Cairo.H
-fluid.o: ../FL/fl_casts.H
-fluid.o: ../FL/Fl_Check_Button.H
-fluid.o: ../FL/Fl_Choice.H
-fluid.o: ../FL/fl_config.h
-fluid.o: ../FL/Fl_Device.H
-fluid.o: ../FL/Fl_Double_Window.H
-fluid.o: ../FL/fl_draw.H
-fluid.o: ../FL/Fl_Export.H
-fluid.o: ../FL/Fl_File_Browser.H
-fluid.o: ../FL/Fl_File_Chooser.H
-fluid.o: ../FL/Fl_File_Icon.H
-fluid.o: ../FL/Fl_File_Input.H
-fluid.o: ../FL/Fl_Flex.H
-fluid.o: ../FL/Fl_Graphics_Driver.H
-fluid.o: ../FL/Fl_Group.H
-fluid.o: ../FL/Fl_Help_Dialog.H
-fluid.o: ../FL/Fl_Help_View.H
-fluid.o: ../FL/Fl_Image.H
-fluid.o: ../FL/Fl_Input.H
-fluid.o: ../FL/Fl_Input_.H
-fluid.o: ../FL/Fl_Int_Input.H
-fluid.o: ../FL/Fl_Light_Button.H
-fluid.o: ../FL/Fl_Menu.H
-fluid.o: ../FL/Fl_Menu_.H
-fluid.o: ../FL/Fl_Menu_Bar.H
-fluid.o: ../FL/Fl_Menu_Button.H
-fluid.o: ../FL/Fl_Menu_Item.H
-fluid.o: ../FL/Fl_Multi_Label.H
-fluid.o: ../FL/Fl_Native_File_Chooser.H
-fluid.o: ../FL/Fl_Pack.H
-fluid.o: ../FL/Fl_Paged_Device.H
-fluid.o: ../FL/Fl_Pixmap.H
-fluid.o: ../FL/Fl_Plugin.H
-fluid.o: ../FL/Fl_PNG_Image.H
-fluid.o: ../FL/Fl_Preferences.H
-fluid.o: ../FL/Fl_Printer.H
-fluid.o: ../FL/Fl_Rect.H
-fluid.o: ../FL/Fl_Repeat_Button.H
-fluid.o: ../FL/Fl_Return_Button.H
-fluid.o: ../FL/Fl_RGB_Image.H
-fluid.o: ../FL/Fl_Scheme.H
-fluid.o: ../FL/Fl_Scheme_Choice.H
-fluid.o: ../FL/Fl_Scrollbar.H
-fluid.o: ../FL/Fl_Shared_Image.H
-fluid.o: ../FL/Fl_Shortcut_Button.H
-fluid.o: ../FL/fl_show_colormap.H
-fluid.o: ../FL/Fl_Slider.H
-fluid.o: ../FL/Fl_Spinner.H
-fluid.o: ../FL/fl_string_functions.h
-fluid.o: ../FL/Fl_Tabs.H
-fluid.o: ../FL/Fl_Terminal.H
-fluid.o: ../FL/Fl_Text_Buffer.H
-fluid.o: ../FL/Fl_Text_Display.H
-fluid.o: ../FL/Fl_Text_Editor.H
-fluid.o: ../FL/Fl_Tile.H
-fluid.o: ../FL/fl_types.h
-fluid.o: ../FL/fl_utf8.h
-fluid.o: ../FL/Fl_Valuator.H
-fluid.o: ../FL/Fl_Value_Input.H
-fluid.o: ../FL/Fl_Widget.H
-fluid.o: ../FL/Fl_Widget_Surface.H
-fluid.o: ../FL/Fl_Window.H
-fluid.o: ../FL/Fl_Wizard.H
-fluid.o: ../FL/platform_types.h
-fluid.o: ../src/flstring.h
-fluid.o: ../src/Fl_String.H
-fluid.o: about_panel.h
-fluid.o: autodoc.h
-fluid.o: code.h
-fluid.o: CodeEditor.h
-fluid.o: codeview_panel.h
-fluid.o: ExternalCodeEditor_UNIX.h
-fluid.o: factory.h
-fluid.o: Fd_Snap_Action.h
-fluid.o: file.h
-fluid.o: fluid.h
-fluid.o: fluid_filename.h
-fluid.o: Fluid_Image.h
-fluid.o: Fl_Function_Type.h
-fluid.o: Fl_Group_Type.h
-fluid.o: Fl_Type.h
-fluid.o: Fl_Widget_Type.h
-fluid.o: Fl_Window_Type.h
-fluid.o: function_panel.h
-fluid.o: mergeback.h
-fluid.o: pixmaps.h
-fluid.o: settings_panel.h
-fluid.o: shell_command.h
-fluid.o: StyleParse.h
-fluid.o: template_panel.h
-fluid.o: undo.h
-fluid.o: widget_browser.h
-fluid_filename.o: ../config.h
-fluid_filename.o: ../FL/Enumerations.H
-fluid_filename.o: ../FL/filename.H
-fluid_filename.o: ../FL/Fl.H
-fluid_filename.o: ../FL/fl_attr.h
-fluid_filename.o: ../FL/Fl_Cairo.H
-fluid_filename.o: ../FL/fl_casts.H
-fluid_filename.o: ../FL/fl_config.h
-fluid_filename.o: ../FL/Fl_Export.H
-fluid_filename.o: ../FL/fl_string_functions.h
-fluid_filename.o: ../FL/fl_types.h
-fluid_filename.o: ../FL/fl_utf8.h
-fluid_filename.o: ../FL/platform_types.h
-fluid_filename.o: ../src/flstring.h
-fluid_filename.o: ../src/Fl_String.H
-Fluid_Image.o: ../config.h
-Fluid_Image.o: ../FL/Enumerations.H
-Fluid_Image.o: ../FL/filename.H
-Fluid_Image.o: ../FL/Fl.H
-Fluid_Image.o: ../FL/Fl_Anim_GIF_Image.H
-Fluid_Image.o: ../FL/fl_ask.H
-Fluid_Image.o: ../FL/fl_attr.h
-Fluid_Image.o: ../FL/Fl_Bitmap.H
-Fluid_Image.o: ../FL/Fl_Box.H
-Fluid_Image.o: ../FL/Fl_Browser.H
-Fluid_Image.o: ../FL/Fl_Browser_.H
-Fluid_Image.o: ../FL/Fl_Button.H
-Fluid_Image.o: ../FL/Fl_Cairo.H
-Fluid_Image.o: ../FL/fl_casts.H
-Fluid_Image.o: ../FL/Fl_Check_Button.H
-Fluid_Image.o: ../FL/Fl_Choice.H
-Fluid_Image.o: ../FL/fl_config.h
-Fluid_Image.o: ../FL/Fl_Device.H
-Fluid_Image.o: ../FL/Fl_Double_Window.H
-Fluid_Image.o: ../FL/fl_draw.H
-Fluid_Image.o: ../FL/Fl_Export.H
-Fluid_Image.o: ../FL/Fl_File_Browser.H
-Fluid_Image.o: ../FL/Fl_File_Chooser.H
-Fluid_Image.o: ../FL/Fl_File_Icon.H
-Fluid_Image.o: ../FL/Fl_File_Input.H
-Fluid_Image.o: ../FL/Fl_Flex.H
-Fluid_Image.o: ../FL/Fl_GIF_Image.H
-Fluid_Image.o: ../FL/Fl_Graphics_Driver.H
-Fluid_Image.o: ../FL/Fl_Group.H
-Fluid_Image.o: ../FL/Fl_Image.H
-Fluid_Image.o: ../FL/Fl_Input.H
-Fluid_Image.o: ../FL/Fl_Input_.H
-Fluid_Image.o: ../FL/Fl_Light_Button.H
-Fluid_Image.o: ../FL/Fl_Menu_.H
-Fluid_Image.o: ../FL/Fl_Menu_Button.H
-Fluid_Image.o: ../FL/Fl_Menu_Item.H
-Fluid_Image.o: ../FL/Fl_Multi_Label.H
-Fluid_Image.o: ../FL/Fl_Pack.H
-Fluid_Image.o: ../FL/Fl_Pixmap.H
-Fluid_Image.o: ../FL/Fl_Plugin.H
-Fluid_Image.o: ../FL/Fl_Preferences.H
-Fluid_Image.o: ../FL/Fl_Rect.H
-Fluid_Image.o: ../FL/Fl_Return_Button.H
-Fluid_Image.o: ../FL/Fl_RGB_Image.H
-Fluid_Image.o: ../FL/Fl_Shared_Image.H
-Fluid_Image.o: ../FL/fl_string_functions.h
-Fluid_Image.o: ../FL/Fl_SVG_Image.H
-Fluid_Image.o: ../FL/Fl_Tabs.H
-Fluid_Image.o: ../FL/Fl_Tile.H
-Fluid_Image.o: ../FL/fl_types.h
-Fluid_Image.o: ../FL/fl_utf8.h
-Fluid_Image.o: ../FL/Fl_Widget.H
-Fluid_Image.o: ../FL/Fl_Window.H
-Fluid_Image.o: ../FL/Fl_Wizard.H
-Fluid_Image.o: ../FL/platform_types.h
-Fluid_Image.o: ../src/flstring.h
-Fluid_Image.o: ../src/Fl_String.H
-Fluid_Image.o: code.h
-Fluid_Image.o: file.h
-Fluid_Image.o: fluid.h
-Fluid_Image.o: fluid_filename.h
-Fluid_Image.o: Fluid_Image.h
-Fluid_Image.o: Fl_Group_Type.h
-Fluid_Image.o: Fl_Type.h
-Fluid_Image.o: Fl_Widget_Type.h
-Fluid_Image.o: Fl_Window_Type.h
-Fl_Button_Type.o: ../FL/Enumerations.H
-Fl_Button_Type.o: ../FL/filename.H
-Fl_Button_Type.o: ../FL/Fl.H
-Fl_Button_Type.o: ../FL/fl_attr.h
-Fl_Button_Type.o: ../FL/Fl_Bitmap.H
-Fl_Button_Type.o: ../FL/Fl_Button.H
-Fl_Button_Type.o: ../FL/Fl_Cairo.H
-Fl_Button_Type.o: ../FL/fl_casts.H
-Fl_Button_Type.o: ../FL/Fl_Check_Button.H
-Fl_Button_Type.o: ../FL/fl_config.h
-Fl_Button_Type.o: ../FL/Fl_Device.H
-Fl_Button_Type.o: ../FL/fl_draw.H
-Fl_Button_Type.o: ../FL/Fl_Export.H
-Fl_Button_Type.o: ../FL/Fl_Flex.H
-Fl_Button_Type.o: ../FL/Fl_Graphics_Driver.H
-Fl_Button_Type.o: ../FL/Fl_Group.H
-Fl_Button_Type.o: ../FL/Fl_Image.H
-Fl_Button_Type.o: ../FL/Fl_Light_Button.H
-Fl_Button_Type.o: ../FL/Fl_Menu_Item.H
-Fl_Button_Type.o: ../FL/Fl_Multi_Label.H
-Fl_Button_Type.o: ../FL/Fl_Pack.H
-Fl_Button_Type.o: ../FL/Fl_Pixmap.H
-Fl_Button_Type.o: ../FL/Fl_Plugin.H
-Fl_Button_Type.o: ../FL/Fl_Preferences.H
-Fl_Button_Type.o: ../FL/Fl_Rect.H
-Fl_Button_Type.o: ../FL/Fl_Repeat_Button.H
-Fl_Button_Type.o: ../FL/Fl_Return_Button.H
-Fl_Button_Type.o: ../FL/Fl_RGB_Image.H
-Fl_Button_Type.o: ../FL/Fl_Round_Button.H
-Fl_Button_Type.o: ../FL/Fl_Tabs.H
-Fl_Button_Type.o: ../FL/fl_types.h
-Fl_Button_Type.o: ../FL/fl_utf8.h
-Fl_Button_Type.o: ../FL/Fl_Widget.H
-Fl_Button_Type.o: ../FL/Fl_Wizard.H
-Fl_Button_Type.o: ../FL/platform_types.h
-Fl_Button_Type.o: ../src/Fl_String.H
-Fl_Button_Type.o: code.h
-Fl_Button_Type.o: Fd_Snap_Action.h
-Fl_Button_Type.o: file.h
-Fl_Button_Type.o: fluid.h
-Fl_Button_Type.o: fluid_filename.h
-Fl_Button_Type.o: Fl_Button_Type.h
-Fl_Button_Type.o: Fl_Group_Type.h
-Fl_Button_Type.o: Fl_Type.h
-Fl_Button_Type.o: Fl_Widget_Type.h
-Fl_Button_Type.o: Fl_Window_Type.h
-Fl_Function_Type.o: ../config.h
-Fl_Function_Type.o: ../FL/Enumerations.H
-Fl_Function_Type.o: ../FL/filename.H
-Fl_Function_Type.o: ../FL/Fl.H
-Fl_Function_Type.o: ../FL/fl_ask.H
-Fl_Function_Type.o: ../FL/fl_attr.h
-Fl_Function_Type.o: ../FL/Fl_Bitmap.H
-Fl_Function_Type.o: ../FL/Fl_Box.H
-Fl_Function_Type.o: ../FL/Fl_Browser.H
-Fl_Function_Type.o: ../FL/Fl_Browser_.H
-Fl_Function_Type.o: ../FL/Fl_Button.H
-Fl_Function_Type.o: ../FL/Fl_Cairo.H
-Fl_Function_Type.o: ../FL/fl_casts.H
-Fl_Function_Type.o: ../FL/Fl_Check_Button.H
-Fl_Function_Type.o: ../FL/Fl_Choice.H
-Fl_Function_Type.o: ../FL/fl_config.h
-Fl_Function_Type.o: ../FL/Fl_Device.H
-Fl_Function_Type.o: ../FL/Fl_Double_Window.H
-Fl_Function_Type.o: ../FL/fl_draw.H
-Fl_Function_Type.o: ../FL/Fl_Export.H
-Fl_Function_Type.o: ../FL/Fl_File_Browser.H
-Fl_Function_Type.o: ../FL/Fl_File_Chooser.H
-Fl_Function_Type.o: ../FL/Fl_File_Icon.H
-Fl_Function_Type.o: ../FL/Fl_File_Input.H
-Fl_Function_Type.o: ../FL/Fl_Flex.H
-Fl_Function_Type.o: ../FL/Fl_Graphics_Driver.H
-Fl_Function_Type.o: ../FL/Fl_Group.H
-Fl_Function_Type.o: ../FL/Fl_Image.H
-Fl_Function_Type.o: ../FL/Fl_Input.H
-Fl_Function_Type.o: ../FL/Fl_Input_.H
-Fl_Function_Type.o: ../FL/Fl_Light_Button.H
-Fl_Function_Type.o: ../FL/Fl_Menu.H
-Fl_Function_Type.o: ../FL/Fl_Menu_.H
-Fl_Function_Type.o: ../FL/Fl_Menu_Button.H
-Fl_Function_Type.o: ../FL/Fl_Menu_Item.H
-Fl_Function_Type.o: ../FL/Fl_Multi_Label.H
-Fl_Function_Type.o: ../FL/Fl_Pack.H
-Fl_Function_Type.o: ../FL/Fl_Pixmap.H
-Fl_Function_Type.o: ../FL/Fl_Plugin.H
-Fl_Function_Type.o: ../FL/Fl_Preferences.H
-Fl_Function_Type.o: ../FL/Fl_Rect.H
-Fl_Function_Type.o: ../FL/Fl_Return_Button.H
-Fl_Function_Type.o: ../FL/Fl_RGB_Image.H
-Fl_Function_Type.o: ../FL/Fl_Scrollbar.H
-Fl_Function_Type.o: ../FL/Fl_Shared_Image.H
-Fl_Function_Type.o: ../FL/Fl_Slider.H
-Fl_Function_Type.o: ../FL/fl_string_functions.h
-Fl_Function_Type.o: ../FL/Fl_Tabs.H
-Fl_Function_Type.o: ../FL/Fl_Text_Buffer.H
-Fl_Function_Type.o: ../FL/Fl_Text_Display.H
-Fl_Function_Type.o: ../FL/Fl_Text_Editor.H
-Fl_Function_Type.o: ../FL/Fl_Tile.H
-Fl_Function_Type.o: ../FL/fl_types.h
-Fl_Function_Type.o: ../FL/fl_utf8.h
-Fl_Function_Type.o: ../FL/Fl_Valuator.H
-Fl_Function_Type.o: ../FL/Fl_Widget.H
-Fl_Function_Type.o: ../FL/Fl_Window.H
-Fl_Function_Type.o: ../FL/Fl_Wizard.H
-Fl_Function_Type.o: ../FL/platform_types.h
-Fl_Function_Type.o: ../src/flstring.h
-Fl_Function_Type.o: ../src/Fl_String.H
-Fl_Function_Type.o: code.h
-Fl_Function_Type.o: CodeEditor.h
-Fl_Function_Type.o: comments.h
-Fl_Function_Type.o: ExternalCodeEditor_UNIX.h
-Fl_Function_Type.o: file.h
-Fl_Function_Type.o: fluid.h
-Fl_Function_Type.o: fluid_filename.h
-Fl_Function_Type.o: Fluid_Image.h
-Fl_Function_Type.o: Fl_Function_Type.h
-Fl_Function_Type.o: Fl_Group_Type.h
-Fl_Function_Type.o: Fl_Type.h
-Fl_Function_Type.o: Fl_Widget_Type.h
-Fl_Function_Type.o: Fl_Window_Type.h
-Fl_Function_Type.o: function_panel.h
-Fl_Function_Type.o: mergeback.h
-Fl_Function_Type.o: StyleParse.h
-Fl_Function_Type.o: undo.h
-Fl_Function_Type.o: widget_browser.h
-Fl_Grid_Type.o: ../config.h
-Fl_Grid_Type.o: ../FL/Enumerations.H
-Fl_Grid_Type.o: ../FL/filename.H
-Fl_Grid_Type.o: ../FL/Fl.H
-Fl_Grid_Type.o: ../FL/fl_attr.h
-Fl_Grid_Type.o: ../FL/Fl_Bitmap.H
-Fl_Grid_Type.o: ../FL/Fl_Browser_.H
-Fl_Grid_Type.o: ../FL/Fl_Button.H
-Fl_Grid_Type.o: ../FL/Fl_Cairo.H
-Fl_Grid_Type.o: ../FL/fl_casts.H
-Fl_Grid_Type.o: ../FL/Fl_Choice.H
-Fl_Grid_Type.o: ../FL/fl_config.h
-Fl_Grid_Type.o: ../FL/Fl_Device.H
-Fl_Grid_Type.o: ../FL/fl_draw.H
-Fl_Grid_Type.o: ../FL/Fl_Export.H
-Fl_Grid_Type.o: ../FL/Fl_Flex.H
-Fl_Grid_Type.o: ../FL/Fl_Graphics_Driver.H
-Fl_Grid_Type.o: ../FL/Fl_Grid.H
-Fl_Grid_Type.o: ../FL/Fl_Group.H
-Fl_Grid_Type.o: ../FL/Fl_Image.H
-Fl_Grid_Type.o: ../FL/Fl_Input.H
-Fl_Grid_Type.o: ../FL/Fl_Input_.H
-Fl_Grid_Type.o: ../FL/Fl_Menu_.H
-Fl_Grid_Type.o: ../FL/Fl_Menu_Item.H
-Fl_Grid_Type.o: ../FL/Fl_Multi_Label.H
-Fl_Grid_Type.o: ../FL/Fl_Pack.H
-Fl_Grid_Type.o: ../FL/Fl_Pixmap.H
-Fl_Grid_Type.o: ../FL/Fl_Plugin.H
-Fl_Grid_Type.o: ../FL/Fl_Preferences.H
-Fl_Grid_Type.o: ../FL/Fl_Rect.H
-Fl_Grid_Type.o: ../FL/Fl_RGB_Image.H
-Fl_Grid_Type.o: ../FL/Fl_Scrollbar.H
-Fl_Grid_Type.o: ../FL/Fl_Slider.H
-Fl_Grid_Type.o: ../FL/fl_string_functions.h
-Fl_Grid_Type.o: ../FL/Fl_Tabs.H
-Fl_Grid_Type.o: ../FL/fl_types.h
-Fl_Grid_Type.o: ../FL/fl_utf8.h
-Fl_Grid_Type.o: ../FL/Fl_Valuator.H
-Fl_Grid_Type.o: ../FL/Fl_Value_Input.H
-Fl_Grid_Type.o: ../FL/Fl_Widget.H
-Fl_Grid_Type.o: ../FL/Fl_Wizard.H
-Fl_Grid_Type.o: ../FL/platform_types.h
-Fl_Grid_Type.o: ../src/flstring.h
-Fl_Grid_Type.o: ../src/Fl_String.H
-Fl_Grid_Type.o: code.h
-Fl_Grid_Type.o: custom_widgets.h
-Fl_Grid_Type.o: Fd_Snap_Action.h
-Fl_Grid_Type.o: file.h
-Fl_Grid_Type.o: fluid.h
-Fl_Grid_Type.o: fluid_filename.h
-Fl_Grid_Type.o: Fl_Grid_Type.h
-Fl_Grid_Type.o: Fl_Group_Type.h
-Fl_Grid_Type.o: Fl_Type.h
-Fl_Grid_Type.o: Fl_Widget_Type.h
-Fl_Grid_Type.o: Fl_Window_Type.h
-Fl_Grid_Type.o: undo.h
-Fl_Grid_Type.o: widget_browser.h
-Fl_Group_Type.o: ../config.h
-Fl_Group_Type.o: ../FL/Enumerations.H
-Fl_Group_Type.o: ../FL/filename.H
-Fl_Group_Type.o: ../FL/Fl.H
-Fl_Group_Type.o: ../FL/fl_ask.H
-Fl_Group_Type.o: ../FL/fl_attr.h
-Fl_Group_Type.o: ../FL/Fl_Bitmap.H
-Fl_Group_Type.o: ../FL/Fl_Browser_.H
-Fl_Group_Type.o: ../FL/Fl_Cairo.H
-Fl_Group_Type.o: ../FL/fl_casts.H
-Fl_Group_Type.o: ../FL/fl_config.h
-Fl_Group_Type.o: ../FL/Fl_Device.H
-Fl_Group_Type.o: ../FL/fl_draw.H
-Fl_Group_Type.o: ../FL/Fl_Export.H
-Fl_Group_Type.o: ../FL/Fl_Flex.H
-Fl_Group_Type.o: ../FL/Fl_Graphics_Driver.H
-Fl_Group_Type.o: ../FL/Fl_Group.H
-Fl_Group_Type.o: ../FL/Fl_Image.H
-Fl_Group_Type.o: ../FL/Fl_Menu_Item.H
-Fl_Group_Type.o: ../FL/fl_message.H
-Fl_Group_Type.o: ../FL/Fl_Multi_Label.H
-Fl_Group_Type.o: ../FL/Fl_Pack.H
-Fl_Group_Type.o: ../FL/Fl_Pixmap.H
-Fl_Group_Type.o: ../FL/Fl_Plugin.H
-Fl_Group_Type.o: ../FL/Fl_Preferences.H
-Fl_Group_Type.o: ../FL/Fl_Rect.H
-Fl_Group_Type.o: ../FL/Fl_RGB_Image.H
-Fl_Group_Type.o: ../FL/Fl_Scroll.H
-Fl_Group_Type.o: ../FL/Fl_Scrollbar.H
-Fl_Group_Type.o: ../FL/Fl_Slider.H
-Fl_Group_Type.o: ../FL/fl_string_functions.h
-Fl_Group_Type.o: ../FL/Fl_Table.H
-Fl_Group_Type.o: ../FL/Fl_Tabs.H
-Fl_Group_Type.o: ../FL/fl_types.h
-Fl_Group_Type.o: ../FL/fl_utf8.h
-Fl_Group_Type.o: ../FL/Fl_Valuator.H
-Fl_Group_Type.o: ../FL/Fl_Widget.H
-Fl_Group_Type.o: ../FL/Fl_Wizard.H
-Fl_Group_Type.o: ../FL/platform_types.h
-Fl_Group_Type.o: ../src/flstring.h
-Fl_Group_Type.o: ../src/Fl_String.H
-Fl_Group_Type.o: code.h
-Fl_Group_Type.o: Fd_Snap_Action.h
-Fl_Group_Type.o: file.h
-Fl_Group_Type.o: fluid.h
-Fl_Group_Type.o: fluid_filename.h
-Fl_Group_Type.o: Fl_Group_Type.h
-Fl_Group_Type.o: Fl_Type.h
-Fl_Group_Type.o: Fl_Widget_Type.h
-Fl_Group_Type.o: Fl_Window_Type.h
-Fl_Group_Type.o: undo.h
-Fl_Group_Type.o: widget_browser.h
-Fl_Menu_Type.o: ../config.h
-Fl_Menu_Type.o: ../FL/Enumerations.H
-Fl_Menu_Type.o: ../FL/filename.H
-Fl_Menu_Type.o: ../FL/Fl.H
-Fl_Menu_Type.o: ../FL/fl_ask.H
-Fl_Menu_Type.o: ../FL/fl_attr.h
-Fl_Menu_Type.o: ../FL/Fl_Bitmap.H
-Fl_Menu_Type.o: ../FL/Fl_Browser_.H
-Fl_Menu_Type.o: ../FL/Fl_Button.H
-Fl_Menu_Type.o: ../FL/Fl_Cairo.H
-Fl_Menu_Type.o: ../FL/fl_casts.H
-Fl_Menu_Type.o: ../FL/Fl_Choice.H
-Fl_Menu_Type.o: ../FL/fl_config.h
-Fl_Menu_Type.o: ../FL/Fl_Device.H
-Fl_Menu_Type.o: ../FL/fl_draw.H
-Fl_Menu_Type.o: ../FL/Fl_Export.H
-Fl_Menu_Type.o: ../FL/Fl_Flex.H
-Fl_Menu_Type.o: ../FL/Fl_Graphics_Driver.H
-Fl_Menu_Type.o: ../FL/Fl_Group.H
-Fl_Menu_Type.o: ../FL/Fl_Image.H
-Fl_Menu_Type.o: ../FL/Fl_Input.H
-Fl_Menu_Type.o: ../FL/Fl_Input_.H
-Fl_Menu_Type.o: ../FL/Fl_Input_Choice.H
-Fl_Menu_Type.o: ../FL/Fl_Menu_.H
-Fl_Menu_Type.o: ../FL/Fl_Menu_Bar.H
-Fl_Menu_Type.o: ../FL/Fl_Menu_Button.H
-Fl_Menu_Type.o: ../FL/Fl_Menu_Item.H
-Fl_Menu_Type.o: ../FL/fl_message.H
-Fl_Menu_Type.o: ../FL/Fl_Multi_Label.H
-Fl_Menu_Type.o: ../FL/Fl_Output.H
-Fl_Menu_Type.o: ../FL/Fl_Pack.H
-Fl_Menu_Type.o: ../FL/Fl_Pixmap.H
-Fl_Menu_Type.o: ../FL/Fl_Plugin.H
-Fl_Menu_Type.o: ../FL/Fl_Preferences.H
-Fl_Menu_Type.o: ../FL/Fl_Rect.H
-Fl_Menu_Type.o: ../FL/Fl_RGB_Image.H
-Fl_Menu_Type.o: ../FL/Fl_Scrollbar.H
-Fl_Menu_Type.o: ../FL/Fl_Shared_Image.H
-Fl_Menu_Type.o: ../FL/Fl_Shortcut_Button.H
-Fl_Menu_Type.o: ../FL/Fl_Slider.H
-Fl_Menu_Type.o: ../FL/fl_string_functions.h
-Fl_Menu_Type.o: ../FL/Fl_Tabs.H
-Fl_Menu_Type.o: ../FL/Fl_Text_Buffer.H
-Fl_Menu_Type.o: ../FL/Fl_Text_Display.H
-Fl_Menu_Type.o: ../FL/fl_types.h
-Fl_Menu_Type.o: ../FL/fl_utf8.h
-Fl_Menu_Type.o: ../FL/Fl_Valuator.H
-Fl_Menu_Type.o: ../FL/Fl_Value_Input.H
-Fl_Menu_Type.o: ../FL/Fl_Widget.H
-Fl_Menu_Type.o: ../FL/Fl_Window.H
-Fl_Menu_Type.o: ../FL/Fl_Wizard.H
-Fl_Menu_Type.o: ../FL/platform_types.h
-Fl_Menu_Type.o: ../src/flstring.h
-Fl_Menu_Type.o: ../src/Fl_String.H
-Fl_Menu_Type.o: code.h
-Fl_Menu_Type.o: custom_widgets.h
-Fl_Menu_Type.o: Fd_Snap_Action.h
-Fl_Menu_Type.o: file.h
-Fl_Menu_Type.o: fluid.h
-Fl_Menu_Type.o: fluid_filename.h
-Fl_Menu_Type.o: Fluid_Image.h
-Fl_Menu_Type.o: Fl_Button_Type.h
-Fl_Menu_Type.o: Fl_Group_Type.h
-Fl_Menu_Type.o: Fl_Menu_Type.h
-Fl_Menu_Type.o: Fl_Type.h
-Fl_Menu_Type.o: Fl_Widget_Type.h
-Fl_Menu_Type.o: Fl_Window_Type.h
-Fl_Menu_Type.o: mergeback.h
-Fl_Menu_Type.o: undo.h
-Fl_Menu_Type.o: widget_browser.h
-Fl_Type.o: ../config.h
-Fl_Type.o: ../FL/Enumerations.H
-Fl_Type.o: ../FL/filename.H
-Fl_Type.o: ../FL/Fl.H
-Fl_Type.o: ../FL/fl_attr.h
-Fl_Type.o: ../FL/Fl_Bitmap.H
-Fl_Type.o: ../FL/Fl_Browser_.H
-Fl_Type.o: ../FL/Fl_Cairo.H
-Fl_Type.o: ../FL/fl_casts.H
-Fl_Type.o: ../FL/fl_config.h
-Fl_Type.o: ../FL/Fl_Device.H
-Fl_Type.o: ../FL/fl_draw.H
-Fl_Type.o: ../FL/Fl_Export.H
-Fl_Type.o: ../FL/Fl_Flex.H
-Fl_Type.o: ../FL/Fl_Graphics_Driver.H
-Fl_Type.o: ../FL/Fl_Group.H
-Fl_Type.o: ../FL/Fl_Image.H
-Fl_Type.o: ../FL/Fl_Menu.H
-Fl_Type.o: ../FL/Fl_Menu_Item.H
-Fl_Type.o: ../FL/Fl_Multi_Label.H
-Fl_Type.o: ../FL/Fl_Pack.H
-Fl_Type.o: ../FL/Fl_Pixmap.H
-Fl_Type.o: ../FL/Fl_Plugin.H
-Fl_Type.o: ../FL/Fl_Preferences.H
-Fl_Type.o: ../FL/Fl_Rect.H
-Fl_Type.o: ../FL/Fl_RGB_Image.H
-Fl_Type.o: ../FL/Fl_Scrollbar.H
-Fl_Type.o: ../FL/Fl_Shared_Image.H
-Fl_Type.o: ../FL/Fl_Slider.H
-Fl_Type.o: ../FL/fl_string_functions.h
-Fl_Type.o: ../FL/Fl_Tabs.H
-Fl_Type.o: ../FL/fl_types.h
-Fl_Type.o: ../FL/fl_utf8.h
-Fl_Type.o: ../FL/Fl_Valuator.H
-Fl_Type.o: ../FL/Fl_Widget.H
-Fl_Type.o: ../FL/Fl_Wizard.H
-Fl_Type.o: ../FL/platform_types.h
-Fl_Type.o: ../src/flstring.h
-Fl_Type.o: ../src/Fl_String.H
-Fl_Type.o: code.h
-Fl_Type.o: ExternalCodeEditor_UNIX.h
-Fl_Type.o: Fd_Snap_Action.h
-Fl_Type.o: file.h
-Fl_Type.o: fluid.h
-Fl_Type.o: fluid_filename.h
-Fl_Type.o: Fluid_Image.h
-Fl_Type.o: Fl_Function_Type.h
-Fl_Type.o: Fl_Group_Type.h
-Fl_Type.o: Fl_Type.h
-Fl_Type.o: Fl_Widget_Type.h
-Fl_Type.o: Fl_Window_Type.h
-Fl_Type.o: pixmaps.h
-Fl_Type.o: shell_command.h
-Fl_Type.o: undo.h
-Fl_Type.o: widget_browser.h
-Fl_Widget_Type.o: ../config.h
-Fl_Widget_Type.o: ../FL/Enumerations.H
-Fl_Widget_Type.o: ../FL/filename.H
-Fl_Widget_Type.o: ../FL/Fl.H
-Fl_Widget_Type.o: ../FL/fl_ask.H
-Fl_Widget_Type.o: ../FL/fl_attr.h
-Fl_Widget_Type.o: ../FL/Fl_Bitmap.H
-Fl_Widget_Type.o: ../FL/Fl_Box.H
-Fl_Widget_Type.o: ../FL/Fl_Browser.H
-Fl_Widget_Type.o: ../FL/Fl_Browser_.H
-Fl_Widget_Type.o: ../FL/Fl_Button.H
-Fl_Widget_Type.o: ../FL/Fl_Cairo.H
-Fl_Widget_Type.o: ../FL/fl_casts.H
-Fl_Widget_Type.o: ../FL/Fl_Check_Button.H
-Fl_Widget_Type.o: ../FL/Fl_Choice.H
-Fl_Widget_Type.o: ../FL/fl_config.h
-Fl_Widget_Type.o: ../FL/Fl_Device.H
-Fl_Widget_Type.o: ../FL/Fl_Double_Window.H
-Fl_Widget_Type.o: ../FL/fl_draw.H
-Fl_Widget_Type.o: ../FL/Fl_Export.H
-Fl_Widget_Type.o: ../FL/Fl_File_Browser.H
-Fl_Widget_Type.o: ../FL/Fl_File_Chooser.H
-Fl_Widget_Type.o: ../FL/Fl_File_Icon.H
-Fl_Widget_Type.o: ../FL/Fl_File_Input.H
-Fl_Widget_Type.o: ../FL/Fl_Flex.H
-Fl_Widget_Type.o: ../FL/Fl_Graphics_Driver.H
-Fl_Widget_Type.o: ../FL/Fl_Group.H
-Fl_Widget_Type.o: ../FL/Fl_Image.H
-Fl_Widget_Type.o: ../FL/Fl_Input.H
-Fl_Widget_Type.o: ../FL/Fl_Input_.H
-Fl_Widget_Type.o: ../FL/Fl_Input_Choice.H
-Fl_Widget_Type.o: ../FL/Fl_Int_Input.H
-Fl_Widget_Type.o: ../FL/Fl_Light_Button.H
-Fl_Widget_Type.o: ../FL/Fl_Menu.H
-Fl_Widget_Type.o: ../FL/Fl_Menu_.H
-Fl_Widget_Type.o: ../FL/Fl_Menu_Bar.H
-Fl_Widget_Type.o: ../FL/Fl_Menu_Button.H
-Fl_Widget_Type.o: ../FL/Fl_Menu_Item.H
-Fl_Widget_Type.o: ../FL/fl_message.H
-Fl_Widget_Type.o: ../FL/Fl_Multi_Label.H
-Fl_Widget_Type.o: ../FL/Fl_Native_File_Chooser.H
-Fl_Widget_Type.o: ../FL/Fl_Pack.H
-Fl_Widget_Type.o: ../FL/Fl_Pixmap.H
-Fl_Widget_Type.o: ../FL/Fl_Plugin.H
-Fl_Widget_Type.o: ../FL/Fl_Preferences.H
-Fl_Widget_Type.o: ../FL/Fl_Rect.H
-Fl_Widget_Type.o: ../FL/Fl_Repeat_Button.H
-Fl_Widget_Type.o: ../FL/Fl_Return_Button.H
-Fl_Widget_Type.o: ../FL/Fl_RGB_Image.H
-Fl_Widget_Type.o: ../FL/Fl_Scheme.H
-Fl_Widget_Type.o: ../FL/Fl_Scheme_Choice.H
-Fl_Widget_Type.o: ../FL/Fl_Scroll.H
-Fl_Widget_Type.o: ../FL/Fl_Scrollbar.H
-Fl_Widget_Type.o: ../FL/Fl_Shared_Image.H
-Fl_Widget_Type.o: ../FL/Fl_Shortcut_Button.H
-Fl_Widget_Type.o: ../FL/fl_show_colormap.H
-Fl_Widget_Type.o: ../FL/Fl_Slider.H
-Fl_Widget_Type.o: ../FL/Fl_Spinner.H
-Fl_Widget_Type.o: ../FL/fl_string_functions.h
-Fl_Widget_Type.o: ../FL/Fl_Table.H
-Fl_Widget_Type.o: ../FL/Fl_Tabs.H
-Fl_Widget_Type.o: ../FL/Fl_Terminal.H
-Fl_Widget_Type.o: ../FL/Fl_Text_Buffer.H
-Fl_Widget_Type.o: ../FL/Fl_Text_Display.H
-Fl_Widget_Type.o: ../FL/Fl_Text_Editor.H
-Fl_Widget_Type.o: ../FL/Fl_Tile.H
-Fl_Widget_Type.o: ../FL/fl_types.h
-Fl_Widget_Type.o: ../FL/fl_utf8.h
-Fl_Widget_Type.o: ../FL/Fl_Valuator.H
-Fl_Widget_Type.o: ../FL/Fl_Value_Input.H
-Fl_Widget_Type.o: ../FL/Fl_Widget.H
-Fl_Widget_Type.o: ../FL/Fl_Window.H
-Fl_Widget_Type.o: ../FL/Fl_Wizard.H
-Fl_Widget_Type.o: ../FL/platform_types.h
-Fl_Widget_Type.o: ../src/flstring.h
-Fl_Widget_Type.o: ../src/Fl_String.H
-Fl_Widget_Type.o: code.h
-Fl_Widget_Type.o: CodeEditor.h
-Fl_Widget_Type.o: custom_widgets.h
-Fl_Widget_Type.o: ExternalCodeEditor_UNIX.h
-Fl_Widget_Type.o: Fd_Snap_Action.h
-Fl_Widget_Type.o: file.h
-Fl_Widget_Type.o: fluid.h
-Fl_Widget_Type.o: fluid_filename.h
-Fl_Widget_Type.o: Fluid_Image.h
-Fl_Widget_Type.o: Fl_Button_Type.h
-Fl_Widget_Type.o: Fl_Function_Type.h
-Fl_Widget_Type.o: Fl_Group_Type.h
-Fl_Widget_Type.o: Fl_Menu_Type.h
-Fl_Widget_Type.o: Fl_Type.h
-Fl_Widget_Type.o: Fl_Widget_Type.h
-Fl_Widget_Type.o: Fl_Window_Type.h
-Fl_Widget_Type.o: mergeback.h
-Fl_Widget_Type.o: settings_panel.h
-Fl_Widget_Type.o: shell_command.h
-Fl_Widget_Type.o: StyleParse.h
-Fl_Widget_Type.o: undo.h
-Fl_Widget_Type.o: widget_browser.h
-Fl_Widget_Type.o: widget_panel.h
-Fl_Window_Type.o: ../config.h
-Fl_Window_Type.o: ../FL/Enumerations.H
-Fl_Window_Type.o: ../FL/filename.H
-Fl_Window_Type.o: ../FL/Fl.H
-Fl_Window_Type.o: ../FL/fl_ask.H
-Fl_Window_Type.o: ../FL/fl_attr.h
-Fl_Window_Type.o: ../FL/Fl_Bitmap.H
-Fl_Window_Type.o: ../FL/Fl_Box.H
-Fl_Window_Type.o: ../FL/Fl_Browser.H
-Fl_Window_Type.o: ../FL/Fl_Browser_.H
-Fl_Window_Type.o: ../FL/Fl_Button.H
-Fl_Window_Type.o: ../FL/Fl_Cairo.H
-Fl_Window_Type.o: ../FL/fl_casts.H
-Fl_Window_Type.o: ../FL/Fl_Check_Button.H
-Fl_Window_Type.o: ../FL/Fl_Choice.H
-Fl_Window_Type.o: ../FL/fl_config.h
-Fl_Window_Type.o: ../FL/Fl_Device.H
-Fl_Window_Type.o: ../FL/Fl_Double_Window.H
-Fl_Window_Type.o: ../FL/fl_draw.H
-Fl_Window_Type.o: ../FL/Fl_Export.H
-Fl_Window_Type.o: ../FL/Fl_File_Browser.H
-Fl_Window_Type.o: ../FL/Fl_File_Chooser.H
-Fl_Window_Type.o: ../FL/Fl_File_Icon.H
-Fl_Window_Type.o: ../FL/Fl_File_Input.H
-Fl_Window_Type.o: ../FL/Fl_Flex.H
-Fl_Window_Type.o: ../FL/Fl_Graphics_Driver.H
-Fl_Window_Type.o: ../FL/Fl_Grid.H
-Fl_Window_Type.o: ../FL/Fl_Group.H
-Fl_Window_Type.o: ../FL/Fl_Image.H
-Fl_Window_Type.o: ../FL/Fl_Input.H
-Fl_Window_Type.o: ../FL/Fl_Input_.H
-Fl_Window_Type.o: ../FL/Fl_Input_Choice.H
-Fl_Window_Type.o: ../FL/Fl_Int_Input.H
-Fl_Window_Type.o: ../FL/Fl_Light_Button.H
-Fl_Window_Type.o: ../FL/Fl_Menu_.H
-Fl_Window_Type.o: ../FL/Fl_Menu_Button.H
-Fl_Window_Type.o: ../FL/Fl_Menu_Item.H
-Fl_Window_Type.o: ../FL/fl_message.H
-Fl_Window_Type.o: ../FL/Fl_Multi_Label.H
-Fl_Window_Type.o: ../FL/Fl_Native_File_Chooser.H
-Fl_Window_Type.o: ../FL/Fl_Overlay_Window.H
-Fl_Window_Type.o: ../FL/Fl_Pack.H
-Fl_Window_Type.o: ../FL/Fl_Pixmap.H
-Fl_Window_Type.o: ../FL/Fl_Plugin.H
-Fl_Window_Type.o: ../FL/Fl_Preferences.H
-Fl_Window_Type.o: ../FL/Fl_Rect.H
-Fl_Window_Type.o: ../FL/Fl_Repeat_Button.H
-Fl_Window_Type.o: ../FL/Fl_Return_Button.H
-Fl_Window_Type.o: ../FL/Fl_RGB_Image.H
-Fl_Window_Type.o: ../FL/Fl_Round_Button.H
-Fl_Window_Type.o: ../FL/Fl_Scheme.H
-Fl_Window_Type.o: ../FL/Fl_Scheme_Choice.H
-Fl_Window_Type.o: ../FL/Fl_Scrollbar.H
-Fl_Window_Type.o: ../FL/Fl_Shared_Image.H
-Fl_Window_Type.o: ../FL/Fl_Shortcut_Button.H
-Fl_Window_Type.o: ../FL/fl_show_colormap.H
-Fl_Window_Type.o: ../FL/Fl_Slider.H
-Fl_Window_Type.o: ../FL/Fl_Spinner.H
-Fl_Window_Type.o: ../FL/fl_string_functions.h
-Fl_Window_Type.o: ../FL/Fl_Tabs.H
-Fl_Window_Type.o: ../FL/Fl_Terminal.H
-Fl_Window_Type.o: ../FL/Fl_Text_Buffer.H
-Fl_Window_Type.o: ../FL/Fl_Text_Display.H
-Fl_Window_Type.o: ../FL/Fl_Text_Editor.H
-Fl_Window_Type.o: ../FL/Fl_Tile.H
-Fl_Window_Type.o: ../FL/Fl_Tooltip.H
-Fl_Window_Type.o: ../FL/fl_types.h
-Fl_Window_Type.o: ../FL/fl_utf8.h
-Fl_Window_Type.o: ../FL/Fl_Valuator.H
-Fl_Window_Type.o: ../FL/Fl_Value_Input.H
-Fl_Window_Type.o: ../FL/Fl_Widget.H
-Fl_Window_Type.o: ../FL/Fl_Window.H
-Fl_Window_Type.o: ../FL/Fl_Wizard.H
-Fl_Window_Type.o: ../FL/platform.H
-Fl_Window_Type.o: ../FL/platform_types.h
-Fl_Window_Type.o: ../FL/x11.H
-Fl_Window_Type.o: ../src/flstring.h
-Fl_Window_Type.o: ../src/Fl_String.H
-Fl_Window_Type.o: code.h
-Fl_Window_Type.o: CodeEditor.h
-Fl_Window_Type.o: custom_widgets.h
-Fl_Window_Type.o: factory.h
-Fl_Window_Type.o: Fd_Snap_Action.h
-Fl_Window_Type.o: file.h
-Fl_Window_Type.o: fluid.h
-Fl_Window_Type.o: fluid_filename.h
-Fl_Window_Type.o: Fl_Grid_Type.h
-Fl_Window_Type.o: Fl_Group_Type.h
-Fl_Window_Type.o: Fl_Type.h
-Fl_Window_Type.o: Fl_Widget_Type.h
-Fl_Window_Type.o: Fl_Window_Type.h
-Fl_Window_Type.o: settings_panel.h
-Fl_Window_Type.o: shell_command.h
-Fl_Window_Type.o: StyleParse.h
-Fl_Window_Type.o: undo.h
-Fl_Window_Type.o: widget_browser.h
-Fl_Window_Type.o: widget_panel.h
-function_panel.o: ../FL/Enumerations.H
-function_panel.o: ../FL/filename.H
-function_panel.o: ../FL/Fl.H
-function_panel.o: ../FL/fl_attr.h
-function_panel.o: ../FL/Fl_Bitmap.H
-function_panel.o: ../FL/Fl_Box.H
-function_panel.o: ../FL/Fl_Browser_.H
-function_panel.o: ../FL/Fl_Button.H
-function_panel.o: ../FL/Fl_Cairo.H
-function_panel.o: ../FL/fl_casts.H
-function_panel.o: ../FL/Fl_Check_Button.H
-function_panel.o: ../FL/Fl_Choice.H
-function_panel.o: ../FL/fl_config.h
-function_panel.o: ../FL/Fl_Device.H
-function_panel.o: ../FL/Fl_Double_Window.H
-function_panel.o: ../FL/fl_draw.H
-function_panel.o: ../FL/Fl_Export.H
-function_panel.o: ../FL/Fl_Graphics_Driver.H
-function_panel.o: ../FL/Fl_Group.H
-function_panel.o: ../FL/Fl_Image.H
-function_panel.o: ../FL/Fl_Input.H
-function_panel.o: ../FL/Fl_Input_.H
-function_panel.o: ../FL/Fl_Light_Button.H
-function_panel.o: ../FL/Fl_Menu_.H
-function_panel.o: ../FL/Fl_Menu_Button.H
-function_panel.o: ../FL/Fl_Menu_Item.H
-function_panel.o: ../FL/Fl_Multi_Label.H
-function_panel.o: ../FL/Fl_Pixmap.H
-function_panel.o: ../FL/Fl_Plugin.H
-function_panel.o: ../FL/Fl_Preferences.H
-function_panel.o: ../FL/Fl_Rect.H
-function_panel.o: ../FL/Fl_Return_Button.H
-function_panel.o: ../FL/Fl_RGB_Image.H
-function_panel.o: ../FL/Fl_Scrollbar.H
-function_panel.o: ../FL/Fl_Slider.H
-function_panel.o: ../FL/Fl_Text_Buffer.H
-function_panel.o: ../FL/Fl_Text_Display.H
-function_panel.o: ../FL/Fl_Text_Editor.H
-function_panel.o: ../FL/Fl_Tile.H
-function_panel.o: ../FL/fl_types.h
-function_panel.o: ../FL/fl_utf8.h
-function_panel.o: ../FL/Fl_Valuator.H
-function_panel.o: ../FL/Fl_Widget.H
-function_panel.o: ../FL/Fl_Window.H
-function_panel.o: ../FL/platform_types.h
-function_panel.o: ../src/Fl_String.H
-function_panel.o: code.h
-function_panel.o: CodeEditor.h
-function_panel.o: custom_widgets.h
-function_panel.o: factory.h
-function_panel.o: fluid.h
-function_panel.o: fluid_filename.h
-function_panel.o: Fl_Type.h
-function_panel.o: function_panel.h
-function_panel.o: pixmaps.h
-function_panel.o: StyleParse.h
-function_panel.o: undo.h
-function_panel.o: widget_browser.h
-pixmaps.o: ../FL/Enumerations.H
-pixmaps.o: ../FL/Fl.H
-pixmaps.o: ../FL/fl_attr.h
-pixmaps.o: ../FL/Fl_Bitmap.H
-pixmaps.o: ../FL/fl_config.h
-pixmaps.o: ../FL/Fl_Device.H
-pixmaps.o: ../FL/fl_draw.H
-pixmaps.o: ../FL/Fl_Export.H
-pixmaps.o: ../FL/Fl_Graphics_Driver.H
-pixmaps.o: ../FL/Fl_Image.H
-pixmaps.o: ../FL/Fl_Pixmap.H
-pixmaps.o: ../FL/Fl_Plugin.H
-pixmaps.o: ../FL/Fl_Preferences.H
-pixmaps.o: ../FL/Fl_Rect.H
-pixmaps.o: ../FL/Fl_RGB_Image.H
-pixmaps.o: ../FL/fl_types.h
-pixmaps.o: ../FL/Fl_Widget.H
-pixmaps.o: ../FL/platform_types.h
-pixmaps.o: ../src/Fl_String.H
-pixmaps.o: code.h
-pixmaps.o: Fl_Type.h
-pixmaps.o: pixmaps.h
-pixmaps.o: pixmaps/bind.xpm
-pixmaps.o: pixmaps/compressed.xpm
-pixmaps.o: pixmaps/flAdjuster.xpm
-pixmaps.o: pixmaps/flBox.xpm
-pixmaps.o: pixmaps/flBrowser.xpm
-pixmaps.o: pixmaps/flButton.xpm
-pixmaps.o: pixmaps/flCheckBrowser.xpm
-pixmaps.o: pixmaps/flCheckButton.xpm
-pixmaps.o: pixmaps/flCheckMenuitem.xpm
-pixmaps.o: pixmaps/flChoice.xpm
-pixmaps.o: pixmaps/flClass.xpm
-pixmaps.o: pixmaps/flClock.xpm
-pixmaps.o: pixmaps/flCode.xpm
-pixmaps.o: pixmaps/flCodeBlock.xpm
-pixmaps.o: pixmaps/flComment.xpm
-pixmaps.o: pixmaps/flCounter.xpm
-pixmaps.o: pixmaps/flData.xpm
-pixmaps.o: pixmaps/flDeclaration.xpm
-pixmaps.o: pixmaps/flDeclarationBlock.xpm
-pixmaps.o: pixmaps/flDial.xpm
-pixmaps.o: pixmaps/flFileBrowser.xpm
-pixmaps.o: pixmaps/flFileInput.xpm
-pixmaps.o: pixmaps/flFlex.xpm
-pixmaps.o: pixmaps/flFunction.xpm
-pixmaps.o: pixmaps/flGrid.xpm
-pixmaps.o: pixmaps/flGroup.xpm
-pixmaps.o: pixmaps/flHelp.xpm
-pixmaps.o: pixmaps/flInput.xpm
-pixmaps.o: pixmaps/flInputChoice.xpm
-pixmaps.o: pixmaps/flLightButton.xpm
-pixmaps.o: pixmaps/flMenubar.xpm
-pixmaps.o: pixmaps/flMenuButton.xpm
-pixmaps.o: pixmaps/flMenuitem.xpm
-pixmaps.o: pixmaps/flOutput.xpm
-pixmaps.o: pixmaps/flPack.xpm
-pixmaps.o: pixmaps/flProgress.xpm
-pixmaps.o: pixmaps/flRadioMenuitem.xpm
-pixmaps.o: pixmaps/flRepeatButton.xpm
-pixmaps.o: pixmaps/flReturnButton.xpm
-pixmaps.o: pixmaps/flRoller.xpm
-pixmaps.o: pixmaps/flRoundButton.xpm
-pixmaps.o: pixmaps/flScroll.xpm
-pixmaps.o: pixmaps/flScrollBar.xpm
-pixmaps.o: pixmaps/flSimpleTerminal.xpm
-pixmaps.o: pixmaps/flSlider.xpm
-pixmaps.o: pixmaps/flSpinner.xpm
-pixmaps.o: pixmaps/flSubmenu.xpm
-pixmaps.o: pixmaps/flTable.xpm
-pixmaps.o: pixmaps/flTabs.xpm
-pixmaps.o: pixmaps/flTextDisplay.xpm
-pixmaps.o: pixmaps/flTextEdit.xpm
-pixmaps.o: pixmaps/flTile.xpm
-pixmaps.o: pixmaps/flTree.xpm
-pixmaps.o: pixmaps/flValueInput.xpm
-pixmaps.o: pixmaps/flValueOutput.xpm
-pixmaps.o: pixmaps/flValueSlider.xpm
-pixmaps.o: pixmaps/flWidgetClass.xpm
-pixmaps.o: pixmaps/flWindow.xpm
-pixmaps.o: pixmaps/flWizard.xpm
-pixmaps.o: pixmaps/invisible.xpm
-pixmaps.o: pixmaps/lock.xpm
-pixmaps.o: pixmaps/protected.xpm
-settings_panel.o: ../config.h
-settings_panel.o: ../FL/Enumerations.H
-settings_panel.o: ../FL/filename.H
-settings_panel.o: ../FL/Fl.H
-settings_panel.o: ../FL/fl_ask.H
-settings_panel.o: ../FL/fl_attr.h
-settings_panel.o: ../FL/Fl_Bitmap.H
-settings_panel.o: ../FL/Fl_Box.H
-settings_panel.o: ../FL/Fl_Browser.H
-settings_panel.o: ../FL/Fl_Browser_.H
-settings_panel.o: ../FL/Fl_Button.H
-settings_panel.o: ../FL/Fl_Cairo.H
-settings_panel.o: ../FL/fl_casts.H
-settings_panel.o: ../FL/Fl_Check_Button.H
-settings_panel.o: ../FL/Fl_Choice.H
-settings_panel.o: ../FL/fl_config.h
-settings_panel.o: ../FL/Fl_Device.H
-settings_panel.o: ../FL/Fl_Double_Window.H
-settings_panel.o: ../FL/fl_draw.H
-settings_panel.o: ../FL/Fl_Export.H
-settings_panel.o: ../FL/Fl_File_Browser.H
-settings_panel.o: ../FL/Fl_File_Chooser.H
-settings_panel.o: ../FL/Fl_File_Icon.H
-settings_panel.o: ../FL/Fl_File_Input.H
-settings_panel.o: ../FL/Fl_Flex.H
-settings_panel.o: ../FL/Fl_Graphics_Driver.H
-settings_panel.o: ../FL/Fl_Group.H
-settings_panel.o: ../FL/Fl_Image.H
-settings_panel.o: ../FL/Fl_Input.H
-settings_panel.o: ../FL/Fl_Input_.H
-settings_panel.o: ../FL/Fl_Int_Input.H
-settings_panel.o: ../FL/Fl_Light_Button.H
-settings_panel.o: ../FL/Fl_Menu_.H
-settings_panel.o: ../FL/Fl_Menu_Button.H
-settings_panel.o: ../FL/Fl_Menu_Item.H
-settings_panel.o: ../FL/Fl_Multi_Label.H
-settings_panel.o: ../FL/Fl_Native_File_Chooser.H
-settings_panel.o: ../FL/Fl_Pack.H
-settings_panel.o: ../FL/Fl_Pixmap.H
-settings_panel.o: ../FL/Fl_Plugin.H
-settings_panel.o: ../FL/Fl_PNG_Image.H
-settings_panel.o: ../FL/Fl_Preferences.H
-settings_panel.o: ../FL/Fl_Rect.H
-settings_panel.o: ../FL/Fl_Repeat_Button.H
-settings_panel.o: ../FL/Fl_Return_Button.H
-settings_panel.o: ../FL/Fl_RGB_Image.H
-settings_panel.o: ../FL/Fl_Scheme.H
-settings_panel.o: ../FL/Fl_Scheme_Choice.H
-settings_panel.o: ../FL/Fl_Scrollbar.H
-settings_panel.o: ../FL/Fl_Shortcut_Button.H
-settings_panel.o: ../FL/fl_show_colormap.H
-settings_panel.o: ../FL/Fl_Slider.H
-settings_panel.o: ../FL/Fl_Spinner.H
-settings_panel.o: ../FL/fl_string_functions.h
-settings_panel.o: ../FL/Fl_Tabs.H
-settings_panel.o: ../FL/Fl_Terminal.H
-settings_panel.o: ../FL/Fl_Text_Buffer.H
-settings_panel.o: ../FL/Fl_Text_Display.H
-settings_panel.o: ../FL/Fl_Text_Editor.H
-settings_panel.o: ../FL/Fl_Tile.H
-settings_panel.o: ../FL/Fl_Tooltip.H
-settings_panel.o: ../FL/fl_types.h
-settings_panel.o: ../FL/fl_utf8.h
-settings_panel.o: ../FL/Fl_Valuator.H
-settings_panel.o: ../FL/Fl_Value_Input.H
-settings_panel.o: ../FL/Fl_Widget.H
-settings_panel.o: ../FL/Fl_Window.H
-settings_panel.o: ../FL/Fl_Wizard.H
-settings_panel.o: ../FL/platform_types.h
-settings_panel.o: ../src/flstring.h
-settings_panel.o: ../src/Fl_String.H
-settings_panel.o: code.h
-settings_panel.o: Fd_Snap_Action.h
-settings_panel.o: fluid.h
-settings_panel.o: fluid_filename.h
-settings_panel.o: Fl_Group_Type.h
-settings_panel.o: Fl_Type.h
-settings_panel.o: Fl_Widget_Type.h
-settings_panel.o: Fl_Window_Type.h
-settings_panel.o: settings_panel.h
-settings_panel.o: shell_command.h
-settings_panel.o: undo.h
-settings_panel.o: widget_browser.h
-shell_command.o: ../FL/Enumerations.H
-shell_command.o: ../FL/filename.H
-shell_command.o: ../FL/Fl.H
-shell_command.o: ../FL/fl_ask.H
-shell_command.o: ../FL/fl_attr.h
-shell_command.o: ../FL/Fl_Bitmap.H
-shell_command.o: ../FL/Fl_Box.H
-shell_command.o: ../FL/Fl_Browser.H
-shell_command.o: ../FL/Fl_Browser_.H
-shell_command.o: ../FL/Fl_Button.H
-shell_command.o: ../FL/Fl_Cairo.H
-shell_command.o: ../FL/fl_casts.H
-shell_command.o: ../FL/Fl_Check_Button.H
-shell_command.o: ../FL/Fl_Choice.H
-shell_command.o: ../FL/fl_config.h
-shell_command.o: ../FL/Fl_Device.H
-shell_command.o: ../FL/Fl_Double_Window.H
-shell_command.o: ../FL/fl_draw.H
-shell_command.o: ../FL/Fl_Export.H
-shell_command.o: ../FL/Fl_File_Browser.H
-shell_command.o: ../FL/Fl_File_Chooser.H
-shell_command.o: ../FL/Fl_File_Icon.H
-shell_command.o: ../FL/Fl_File_Input.H
-shell_command.o: ../FL/Fl_Flex.H
-shell_command.o: ../FL/Fl_Graphics_Driver.H
-shell_command.o: ../FL/Fl_Group.H
-shell_command.o: ../FL/Fl_Image.H
-shell_command.o: ../FL/Fl_Input.H
-shell_command.o: ../FL/Fl_Input_.H
-shell_command.o: ../FL/Fl_Int_Input.H
-shell_command.o: ../FL/Fl_Light_Button.H
-shell_command.o: ../FL/Fl_Menu_.H
-shell_command.o: ../FL/Fl_Menu_Bar.H
-shell_command.o: ../FL/Fl_Menu_Button.H
-shell_command.o: ../FL/Fl_Menu_Item.H
-shell_command.o: ../FL/fl_message.H
-shell_command.o: ../FL/Fl_Multi_Label.H
-shell_command.o: ../FL/Fl_Native_File_Chooser.H
-shell_command.o: ../FL/Fl_Pack.H
-shell_command.o: ../FL/Fl_Pixmap.H
-shell_command.o: ../FL/Fl_Plugin.H
-shell_command.o: ../FL/Fl_Preferences.H
-shell_command.o: ../FL/Fl_Rect.H
-shell_command.o: ../FL/Fl_Repeat_Button.H
-shell_command.o: ../FL/Fl_Return_Button.H
-shell_command.o: ../FL/Fl_RGB_Image.H
-shell_command.o: ../FL/Fl_Scheme.H
-shell_command.o: ../FL/Fl_Scheme_Choice.H
-shell_command.o: ../FL/Fl_Scrollbar.H
-shell_command.o: ../FL/Fl_Shortcut_Button.H
-shell_command.o: ../FL/fl_show_colormap.H
-shell_command.o: ../FL/Fl_Slider.H
-shell_command.o: ../FL/Fl_Spinner.H
-shell_command.o: ../FL/fl_string_functions.h
-shell_command.o: ../FL/Fl_Tabs.H
-shell_command.o: ../FL/Fl_Terminal.H
-shell_command.o: ../FL/Fl_Text_Buffer.H
-shell_command.o: ../FL/Fl_Text_Display.H
-shell_command.o: ../FL/Fl_Text_Editor.H
-shell_command.o: ../FL/Fl_Tile.H
-shell_command.o: ../FL/fl_types.h
-shell_command.o: ../FL/fl_utf8.h
-shell_command.o: ../FL/Fl_Valuator.H
-shell_command.o: ../FL/Fl_Value_Input.H
-shell_command.o: ../FL/Fl_Widget.H
-shell_command.o: ../FL/Fl_Window.H
-shell_command.o: ../FL/Fl_Wizard.H
-shell_command.o: ../FL/platform_types.h
-shell_command.o: ../src/Fl_String.H
-shell_command.o: code.h
-shell_command.o: Fd_Snap_Action.h
-shell_command.o: file.h
-shell_command.o: fluid.h
-shell_command.o: fluid_filename.h
-shell_command.o: Fl_Group_Type.h
-shell_command.o: Fl_Type.h
-shell_command.o: Fl_Widget_Type.h
-shell_command.o: Fl_Window_Type.h
-shell_command.o: settings_panel.h
-shell_command.o: shell_command.h
-shell_command.o: widget_browser.h
-StyleParse.o: StyleParse.h
-template_panel.o: ../config.h
-template_panel.o: ../FL/Enumerations.H
-template_panel.o: ../FL/filename.H
-template_panel.o: ../FL/Fl.H
-template_panel.o: ../FL/fl_ask.H
-template_panel.o: ../FL/fl_attr.h
-template_panel.o: ../FL/Fl_Bitmap.H
-template_panel.o: ../FL/Fl_Box.H
-template_panel.o: ../FL/Fl_Browser.H
-template_panel.o: ../FL/Fl_Button.H
-template_panel.o: ../FL/Fl_Cairo.H
-template_panel.o: ../FL/fl_casts.H
-template_panel.o: ../FL/fl_config.h
-template_panel.o: ../FL/Fl_Double_Window.H
-template_panel.o: ../FL/Fl_Export.H
-template_panel.o: ../FL/Fl_Group.H
-template_panel.o: ../FL/Fl_Image.H
-template_panel.o: ../FL/Fl_Input.H
-template_panel.o: ../FL/Fl_Input_.H
-template_panel.o: ../FL/Fl_Menu_Item.H
-template_panel.o: ../FL/Fl_Multi_Label.H
-template_panel.o: ../FL/Fl_Preferences.H
-template_panel.o: ../FL/Fl_Return_Button.H
-template_panel.o: ../FL/Fl_Shared_Image.H
-template_panel.o: ../FL/fl_string_functions.h
-template_panel.o: ../FL/fl_types.h
-template_panel.o: ../FL/fl_utf8.h
-template_panel.o: ../FL/Fl_Widget.H
-template_panel.o: ../FL/Fl_Window.H
-template_panel.o: ../FL/platform_types.h
-template_panel.o: ../src/flstring.h
-template_panel.o: ../src/Fl_String.H
-template_panel.o: fluid.h
-template_panel.o: fluid_filename.h
-template_panel.o: template_panel.h
-undo.o: ../config.h
-undo.o: ../FL/Enumerations.H
-undo.o: ../FL/filename.H
-undo.o: ../FL/Fl.H
-undo.o: ../FL/fl_ask.H
-undo.o: ../FL/fl_attr.h
-undo.o: ../FL/Fl_Bitmap.H
-undo.o: ../FL/Fl_Browser_.H
-undo.o: ../FL/Fl_Cairo.H
-undo.o: ../FL/fl_casts.H
-undo.o: ../FL/fl_config.h
-undo.o: ../FL/Fl_Device.H
-undo.o: ../FL/fl_draw.H
-undo.o: ../FL/Fl_Export.H
-undo.o: ../FL/Fl_Graphics_Driver.H
-undo.o: ../FL/Fl_Image.H
-undo.o: ../FL/Fl_Menu_.H
-undo.o: ../FL/Fl_Menu_Bar.H
-undo.o: ../FL/Fl_Menu_Item.H
-undo.o: ../FL/Fl_Multi_Label.H
-undo.o: ../FL/Fl_Pixmap.H
-undo.o: ../FL/Fl_Plugin.H
-undo.o: ../FL/Fl_Preferences.H
-undo.o: ../FL/Fl_Rect.H
-undo.o: ../FL/Fl_RGB_Image.H
-undo.o: ../FL/Fl_Scrollbar.H
-undo.o: ../FL/Fl_Slider.H
-undo.o: ../FL/fl_string_functions.h
-undo.o: ../FL/fl_types.h
-undo.o: ../FL/fl_utf8.h
-undo.o: ../FL/Fl_Valuator.H
-undo.o: ../FL/Fl_Widget.H
-undo.o: ../FL/Fl_Window.H
-undo.o: ../FL/platform_types.h
-undo.o: ../src/flstring.h
-undo.o: ../src/Fl_String.H
-undo.o: code.h
-undo.o: file.h
-undo.o: fluid.h
-undo.o: fluid_filename.h
-undo.o: Fl_Type.h
-undo.o: Fl_Widget_Type.h
-undo.o: undo.h
-undo.o: widget_browser.h
-widget_browser.o: ../FL/Enumerations.H
-widget_browser.o: ../FL/filename.H
-widget_browser.o: ../FL/Fl.H
-widget_browser.o: ../FL/fl_attr.h
-widget_browser.o: ../FL/Fl_Bitmap.H
-widget_browser.o: ../FL/Fl_Browser_.H
-widget_browser.o: ../FL/Fl_Cairo.H
-widget_browser.o: ../FL/fl_casts.H
-widget_browser.o: ../FL/fl_config.h
-widget_browser.o: ../FL/Fl_Device.H
-widget_browser.o: ../FL/fl_draw.H
-widget_browser.o: ../FL/Fl_Export.H
-widget_browser.o: ../FL/Fl_Graphics_Driver.H
-widget_browser.o: ../FL/Fl_Image.H
-widget_browser.o: ../FL/Fl_Menu_Item.H
-widget_browser.o: ../FL/Fl_Multi_Label.H
-widget_browser.o: ../FL/Fl_Pixmap.H
-widget_browser.o: ../FL/Fl_Plugin.H
-widget_browser.o: ../FL/Fl_Preferences.H
-widget_browser.o: ../FL/Fl_Rect.H
-widget_browser.o: ../FL/Fl_RGB_Image.H
-widget_browser.o: ../FL/Fl_Scrollbar.H
-widget_browser.o: ../FL/Fl_Slider.H
-widget_browser.o: ../FL/fl_types.h
-widget_browser.o: ../FL/fl_utf8.h
-widget_browser.o: ../FL/Fl_Valuator.H
-widget_browser.o: ../FL/Fl_Widget.H
-widget_browser.o: ../FL/platform_types.h
-widget_browser.o: ../src/Fl_String.H
-widget_browser.o: code.h
-widget_browser.o: fluid.h
-widget_browser.o: fluid_filename.h
-widget_browser.o: Fl_Type.h
-widget_browser.o: Fl_Widget_Type.h
-widget_browser.o: pixmaps.h
-widget_browser.o: widget_browser.h
-widget_panel.o: ../FL/Enumerations.H
-widget_panel.o: ../FL/Fl.H
-widget_panel.o: ../FL/fl_attr.h
-widget_panel.o: ../FL/Fl_Bitmap.H
-widget_panel.o: ../FL/Fl_Box.H
-widget_panel.o: ../FL/Fl_Button.H
-widget_panel.o: ../FL/Fl_Cairo.H
-widget_panel.o: ../FL/fl_casts.H
-widget_panel.o: ../FL/Fl_Check_Button.H
-widget_panel.o: ../FL/Fl_Choice.H
-widget_panel.o: ../FL/fl_config.h
-widget_panel.o: ../FL/Fl_Device.H
-widget_panel.o: ../FL/Fl_Double_Window.H
-widget_panel.o: ../FL/fl_draw.H
-widget_panel.o: ../FL/Fl_Export.H
-widget_panel.o: ../FL/Fl_Flex.H
-widget_panel.o: ../FL/Fl_Graphics_Driver.H
-widget_panel.o: ../FL/Fl_Grid.H
-widget_panel.o: ../FL/Fl_Group.H
-widget_panel.o: ../FL/Fl_Image.H
-widget_panel.o: ../FL/Fl_Input.H
-widget_panel.o: ../FL/Fl_Input_.H
-widget_panel.o: ../FL/Fl_Input_Choice.H
-widget_panel.o: ../FL/Fl_Light_Button.H
-widget_panel.o: ../FL/Fl_Menu_.H
-widget_panel.o: ../FL/Fl_Menu_Button.H
-widget_panel.o: ../FL/Fl_Menu_Item.H
-widget_panel.o: ../FL/Fl_Pack.H
-widget_panel.o: ../FL/Fl_Pixmap.H
-widget_panel.o: ../FL/Fl_Plugin.H
-widget_panel.o: ../FL/Fl_Preferences.H
-widget_panel.o: ../FL/Fl_Rect.H
-widget_panel.o: ../FL/Fl_Return_Button.H
-widget_panel.o: ../FL/Fl_RGB_Image.H
-widget_panel.o: ../FL/Fl_Scrollbar.H
-widget_panel.o: ../FL/Fl_Shared_Image.H
-widget_panel.o: ../FL/Fl_Shortcut_Button.H
-widget_panel.o: ../FL/Fl_Slider.H
-widget_panel.o: ../FL/Fl_Tabs.H
-widget_panel.o: ../FL/Fl_Text_Buffer.H
-widget_panel.o: ../FL/Fl_Text_Display.H
-widget_panel.o: ../FL/Fl_Text_Editor.H
-widget_panel.o: ../FL/Fl_Tile.H
-widget_panel.o: ../FL/fl_types.h
-widget_panel.o: ../FL/fl_utf8.h
-widget_panel.o: ../FL/Fl_Valuator.H
-widget_panel.o: ../FL/Fl_Value_Input.H
-widget_panel.o: ../FL/Fl_Widget.H
-widget_panel.o: ../FL/Fl_Window.H
-widget_panel.o: ../FL/Fl_Wizard.H
-widget_panel.o: ../FL/platform_types.h
-widget_panel.o: ../src/Fl_String.H
-widget_panel.o: code.h
-widget_panel.o: CodeEditor.h
-widget_panel.o: custom_widgets.h
-widget_panel.o: Fl_Grid_Type.h
-widget_panel.o: Fl_Group_Type.h
-widget_panel.o: Fl_Type.h
-widget_panel.o: Fl_Widget_Type.h
-widget_panel.o: StyleParse.h
-widget_panel.o: undo.h
-widget_panel.o: widget_panel.h
diff --git a/install-sh b/install-sh
deleted file mode 100755
index 9fdd1a9f2..000000000
--- a/install-sh
+++ /dev/null
@@ -1,238 +0,0 @@
-#!/bin/sh
-#
-# install - install a program, script, or datafile
-# This comes from X11R5.
-#
-# Calling this script install-sh is preferred over install.sh, to prevent
-# `make' implicit rules from creating a file called install from it
-# when there is no Makefile.
-#
-# This script is compatible with the BSD install script, but was written
-# from scratch.
-#
-
-
-# set DOITPROG to echo to test this script
-
-# Don't use :- since 4.3BSD and earlier shells don't like it.
-doit="${DOITPROG-}"
-
-
-# put in absolute paths if you don't have them in your path; or use env. vars.
-
-mvprog="${MVPROG-mv}"
-cpprog="${CPPROG-cp}"
-chmodprog="${CHMODPROG-chmod}"
-chownprog="${CHOWNPROG-chown}"
-chgrpprog="${CHGRPPROG-chgrp}"
-stripprog="${STRIPPROG-strip}"
-rmprog="${RMPROG-rm}"
-mkdirprog="${MKDIRPROG-mkdir}"
-
-tranformbasename=""
-transform_arg=""
-instcmd="$mvprog"
-chmodcmd="$chmodprog 0755"
-chowncmd=""
-chgrpcmd=""
-stripcmd=""
-rmcmd="$rmprog -f"
-mvcmd="$mvprog"
-src=""
-dst=""
-dir_arg=""
-
-while [ x"$1" != x ]; do
- case $1 in
- -c) instcmd="$cpprog"
- shift
- continue;;
-
- -d) dir_arg=true
- shift
- continue;;
-
- -m) chmodcmd="$chmodprog $2"
- shift
- shift
- continue;;
-
- -o) chowncmd="$chownprog $2"
- shift
- shift
- continue;;
-
- -g) chgrpcmd="$chgrpprog $2"
- shift
- shift
- continue;;
-
- -s) stripcmd="$stripprog"
- shift
- continue;;
-
- -t=*) transformarg=`echo $1 | sed 's/-t=//'`
- shift
- continue;;
-
- -b=*) transformbasename=`echo $1 | sed 's/-b=//'`
- shift
- continue;;
-
- *) if [ x"$src" = x ]
- then
- src=$1
- else
- # this colon is to work around a 386BSD /bin/sh bug
- :
- dst=$1
- fi
- shift
- continue;;
- esac
-done
-
-if [ x"$src" = x ]
-then
- echo "install: no input file specified"
- exit 1
-else
- true
-fi
-
-if [ x"$dir_arg" != x ]; then
- dst=$src
- src=""
-
- if [ -d $dst ]; then
- instcmd=:
- else
- instcmd=mkdir
- fi
-else
-
-# Waiting for this to be detected by the "$instcmd $src $dsttmp" command
-# might cause directories to be created, which would be especially bad
-# if $src (and thus $dsttmp) contains '*'.
-
- if [ -f $src -o -d $src ]
- then
- true
- else
- echo "install: $src does not exist"
- exit 1
- fi
-
- if [ x"$dst" = x ]
- then
- echo "install: no destination specified"
- exit 1
- else
- true
- fi
-
-# If destination is a directory, append the input filename; if your system
-# does not like double slashes in filenames, you may need to add some logic
-
- if [ -d $dst ]
- then
- dst="$dst"/`basename $src`
- else
- true
- fi
-fi
-
-## this sed command emulates the dirname command
-dstdir=`echo $dst | sed -e 's,[^/]*$,,;s,/$,,;s,^$,.,'`
-
-# Make sure that the destination directory exists.
-# this part is taken from Noah Friedman's mkinstalldirs script
-
-# Skip lots of stat calls in the usual case.
-if [ ! -d "$dstdir" ]; then
-defaultIFS='
-'
-IFS="${IFS-${defaultIFS}}"
-
-oIFS="${IFS}"
-# Some sh's can't handle IFS=/ for some reason.
-IFS='%'
-set - `echo ${dstdir} | sed -e 's@/@%@g' -e 's@^%@/@'`
-IFS="${oIFS}"
-
-pathcomp=''
-
-while [ $# -ne 0 ] ; do
- pathcomp="${pathcomp}${1}"
- shift
-
- if [ ! -d "${pathcomp}" ] ;
- then
- $mkdirprog "${pathcomp}"
- else
- true
- fi
-
- pathcomp="${pathcomp}/"
-done
-fi
-
-if [ x"$dir_arg" != x ]
-then
- $doit $instcmd $dst &&
-
- if [ x"$chowncmd" != x ]; then $doit $chowncmd $dst; else true ; fi &&
- if [ x"$chgrpcmd" != x ]; then $doit $chgrpcmd $dst; else true ; fi &&
- if [ x"$stripcmd" != x ]; then $doit $stripcmd $dst; else true ; fi &&
- if [ x"$chmodcmd" != x ]; then $doit $chmodcmd $dst; else true ; fi
-else
-
-# If we're going to rename the final executable, determine the name now.
-
- if [ x"$transformarg" = x ]
- then
- dstfile=`basename $dst`
- else
- dstfile=`basename $dst $transformbasename |
- sed $transformarg`$transformbasename
- fi
-
-# don't allow the sed command to completely eliminate the filename
-
- if [ x"$dstfile" = x ]
- then
- dstfile=`basename $dst`
- else
- true
- fi
-
-# Make a temp file name in the proper directory.
-
- dsttmp=$dstdir/#inst.$$#
-
-# Move or copy the file name to the temp name
-
- $doit $instcmd $src $dsttmp &&
-
- trap "rm -f ${dsttmp}" 0 &&
-
-# and set any options; do chmod last to preserve setuid bits
-
-# If any of these fail, we abort the whole thing. If we want to
-# ignore errors from any of these, just make sure not to ignore
-# errors from the above "$doit $instcmd $src $dsttmp" command.
-
- if [ x"$chowncmd" != x ]; then $doit $chowncmd $dsttmp; else true;fi &&
- if [ x"$chgrpcmd" != x ]; then $doit $chgrpcmd $dsttmp; else true;fi &&
- if [ x"$stripcmd" != x ]; then $doit $stripcmd $dsttmp; else true;fi &&
- if [ x"$chmodcmd" != x ]; then $doit $chmodcmd $dsttmp; else true;fi &&
-
-# Now rename the file to the real destination.
-
- $doit $rmcmd -f $dstdir/$dstfile &&
- $doit $mvcmd $dsttmp $dstdir/$dstfile
-
-fi &&
-
-
-exit 0
diff --git a/jpeg/Makefile b/jpeg/Makefile
deleted file mode 100644
index e90ede88f..000000000
--- a/jpeg/Makefile
+++ /dev/null
@@ -1,144 +0,0 @@
-# *************************************************************************
-# FLTK - DO NOT CHANGE when upgrading the JPEG library, unless required. *
-# *************************************************************************
-#
-# JPEG library makefile for the Fast Light Toolkit (FLTK).
-#
-# Copyright 1997-2024 by Bill Spitzak and others.
-#
-# This library is free software. Distribution and use rights are outlined in
-# the file "COPYING" which should have been included with this file. If this
-# file is missing or damaged, see the license at:
-#
-# https://www.fltk.org/COPYING.php
-#
-# Please see the following page on how to report bugs and issues:
-#
-# https://www.fltk.org/bugs.php
-#
-
-include ../makeinclude
-
-#
-# Object files...
-#
-
-OBJS = \
- jaricom.o \
- jcapimin.o \
- jcapistd.o \
- jcarith.o \
- jccoefct.o \
- jccolor.o \
- jcdctmgr.o \
- jchuff.o \
- jcinit.o \
- jcmainct.o \
- jcmarker.o \
- jcmaster.o \
- jcomapi.o \
- jcparam.o \
- jcprepct.o \
- jcsample.o \
- jctrans.o \
- jdapimin.o \
- jdapistd.o \
- jdarith.o \
- jdatadst.o \
- jdatasrc.o \
- jdcoefct.o \
- jdcolor.o \
- jddctmgr.o \
- jdhuff.o \
- jdinput.o \
- jdmainct.o \
- jdmarker.o \
- jdmaster.o \
- jdmerge.o \
- jdpostct.o \
- jdsample.o \
- jdtrans.o \
- jerror.o \
- jfdctflt.o \
- jfdctfst.o \
- jfdctint.o \
- jidctflt.o \
- jidctfst.o \
- jidctint.o \
- jmemmgr.o \
- jmemnobs.o \
- jquant1.o \
- jquant2.o \
- jutils.o
-
-LIBJPEG = ../lib/libfltk_jpeg$(LIBEXT)
-
-#
-# Make all targets...
-#
-
-all: $(LIBJPEG)
-
-#
-# Clean all targets and object files...
-#
-
-clean:
- $(RM) $(OBJS)
- $(RM) $(LIBJPEG)
-
-#
-# Install everything...
-#
-
-install: $(LIBJPEG)
- echo "Installing $(LIBJPEG) in $(libdir)..."
- -$(INSTALL_DIR) "$(DESTDIR)$(libdir)"
- $(INSTALL_LIB) $(LIBJPEG) "$(DESTDIR)$(libdir)"
- $(RANLIB) "$(DESTDIR)$(libdir)/libfltk_jpeg$(LIBEXT)"
- echo "Installing jpeg headers in $(includedir)/FL/images..."
- -$(INSTALL_DIR) "$(DESTDIR)$(includedir)/FL/images"
- $(INSTALL_DATA) jconfig.h "$(DESTDIR)$(includedir)/FL/images"
- $(INSTALL_DATA) jerror.h "$(DESTDIR)$(includedir)/FL/images"
- $(INSTALL_DATA) jmorecfg.h "$(DESTDIR)$(includedir)/FL/images"
- $(INSTALL_DATA) jpeglib.h "$(DESTDIR)$(includedir)/FL/images"
- $(INSTALL_DATA) fltk_jpeg_prefix.h "$(DESTDIR)$(includedir)/FL/images"
-
-#
-# Uninstall everything...
-#
-
-uninstall:
- echo "Uninstalling libfltk_jpeg$(LIBEXT) in $(libdir)..."
- $(RM) "$(libdir)/libfltk_jpeg$(LIBEXT)"
- echo "Uninstalling jpeg headers in $(includedir)/FL/images..."
- $(RM) "$(includedir)/FL/images/jconfig.h"
- $(RM) "$(includedir)/FL/images/jerror.h"
- $(RM) "$(includedir)/FL/images/jmorecfg.h"
- $(RM) "$(includedir)/FL/images/jpeglib.h"
- $(RM) "$(includedir)/FL/images/fltk_jpeg_prefix.h"
-
-#
-# libfltk_jpeg.a
-#
-
-$(LIBJPEG): $(OBJS)
- echo Archiving $@...
- $(RM) $@
- $(LIBCOMMAND) $@ $(OBJS)
- $(RANLIB) $@
-
-#
-# Make dependencies...
-#
-
-depend: $(OBJS:.o=.c)
- makedepend -Y -I.. -f makedepend -w 20 $(OBJS:.o=.c)
- echo "# DO NOT DELETE THIS LINE -- make depend depends on it." > makedepend.tmp
- echo "" >> makedepend.tmp
- grep '^[a-zA-Z]' makedepend | ( LC_ALL=C sort -u -f >> makedepend.tmp; )
- mv makedepend.tmp makedepend
-
-include makedepend
-
-$(OBJS): ../makeinclude
diff --git a/jpeg/makedepend b/jpeg/makedepend
deleted file mode 100644
index d211cb0b8..000000000
--- a/jpeg/makedepend
+++ /dev/null
@@ -1,335 +0,0 @@
-# DO NOT DELETE THIS LINE -- make depend depends on it.
-
-jaricom.o: fltk_jpeg_prefix.h
-jaricom.o: jconfig.h
-jaricom.o: jerror.h
-jaricom.o: jinclude.h
-jaricom.o: jmorecfg.h
-jaricom.o: jpegint.h
-jaricom.o: jpeglib.h
-jcapimin.o: fltk_jpeg_prefix.h
-jcapimin.o: jconfig.h
-jcapimin.o: jerror.h
-jcapimin.o: jinclude.h
-jcapimin.o: jmorecfg.h
-jcapimin.o: jpegint.h
-jcapimin.o: jpeglib.h
-jcapistd.o: fltk_jpeg_prefix.h
-jcapistd.o: jconfig.h
-jcapistd.o: jerror.h
-jcapistd.o: jinclude.h
-jcapistd.o: jmorecfg.h
-jcapistd.o: jpegint.h
-jcapistd.o: jpeglib.h
-jcarith.o: fltk_jpeg_prefix.h
-jcarith.o: jconfig.h
-jcarith.o: jerror.h
-jcarith.o: jinclude.h
-jcarith.o: jmorecfg.h
-jcarith.o: jpegint.h
-jcarith.o: jpeglib.h
-jccoefct.o: fltk_jpeg_prefix.h
-jccoefct.o: jconfig.h
-jccoefct.o: jerror.h
-jccoefct.o: jinclude.h
-jccoefct.o: jmorecfg.h
-jccoefct.o: jpegint.h
-jccoefct.o: jpeglib.h
-jccolor.o: fltk_jpeg_prefix.h
-jccolor.o: jconfig.h
-jccolor.o: jerror.h
-jccolor.o: jinclude.h
-jccolor.o: jmorecfg.h
-jccolor.o: jpegint.h
-jccolor.o: jpeglib.h
-jcdctmgr.o: fltk_jpeg_prefix.h
-jcdctmgr.o: jconfig.h
-jcdctmgr.o: jdct.h
-jcdctmgr.o: jerror.h
-jcdctmgr.o: jinclude.h
-jcdctmgr.o: jmorecfg.h
-jcdctmgr.o: jpegint.h
-jcdctmgr.o: jpeglib.h
-jchuff.o: fltk_jpeg_prefix.h
-jchuff.o: jconfig.h
-jchuff.o: jerror.h
-jchuff.o: jinclude.h
-jchuff.o: jmorecfg.h
-jchuff.o: jpegint.h
-jchuff.o: jpeglib.h
-jcinit.o: fltk_jpeg_prefix.h
-jcinit.o: jconfig.h
-jcinit.o: jerror.h
-jcinit.o: jinclude.h
-jcinit.o: jmorecfg.h
-jcinit.o: jpegint.h
-jcinit.o: jpeglib.h
-jcmainct.o: fltk_jpeg_prefix.h
-jcmainct.o: jconfig.h
-jcmainct.o: jerror.h
-jcmainct.o: jinclude.h
-jcmainct.o: jmorecfg.h
-jcmainct.o: jpegint.h
-jcmainct.o: jpeglib.h
-jcmarker.o: fltk_jpeg_prefix.h
-jcmarker.o: jconfig.h
-jcmarker.o: jerror.h
-jcmarker.o: jinclude.h
-jcmarker.o: jmorecfg.h
-jcmarker.o: jpegint.h
-jcmarker.o: jpeglib.h
-jcmaster.o: fltk_jpeg_prefix.h
-jcmaster.o: jconfig.h
-jcmaster.o: jerror.h
-jcmaster.o: jinclude.h
-jcmaster.o: jmorecfg.h
-jcmaster.o: jpegint.h
-jcmaster.o: jpeglib.h
-jcomapi.o: fltk_jpeg_prefix.h
-jcomapi.o: jconfig.h
-jcomapi.o: jerror.h
-jcomapi.o: jinclude.h
-jcomapi.o: jmorecfg.h
-jcomapi.o: jpegint.h
-jcomapi.o: jpeglib.h
-jcparam.o: fltk_jpeg_prefix.h
-jcparam.o: jconfig.h
-jcparam.o: jerror.h
-jcparam.o: jinclude.h
-jcparam.o: jmorecfg.h
-jcparam.o: jpegint.h
-jcparam.o: jpeglib.h
-jcprepct.o: fltk_jpeg_prefix.h
-jcprepct.o: jconfig.h
-jcprepct.o: jerror.h
-jcprepct.o: jinclude.h
-jcprepct.o: jmorecfg.h
-jcprepct.o: jpegint.h
-jcprepct.o: jpeglib.h
-jcsample.o: fltk_jpeg_prefix.h
-jcsample.o: jconfig.h
-jcsample.o: jerror.h
-jcsample.o: jinclude.h
-jcsample.o: jmorecfg.h
-jcsample.o: jpegint.h
-jcsample.o: jpeglib.h
-jctrans.o: fltk_jpeg_prefix.h
-jctrans.o: jconfig.h
-jctrans.o: jerror.h
-jctrans.o: jinclude.h
-jctrans.o: jmorecfg.h
-jctrans.o: jpegint.h
-jctrans.o: jpeglib.h
-jdapimin.o: fltk_jpeg_prefix.h
-jdapimin.o: jconfig.h
-jdapimin.o: jerror.h
-jdapimin.o: jinclude.h
-jdapimin.o: jmorecfg.h
-jdapimin.o: jpegint.h
-jdapimin.o: jpeglib.h
-jdapistd.o: fltk_jpeg_prefix.h
-jdapistd.o: jconfig.h
-jdapistd.o: jerror.h
-jdapistd.o: jinclude.h
-jdapistd.o: jmorecfg.h
-jdapistd.o: jpegint.h
-jdapistd.o: jpeglib.h
-jdarith.o: fltk_jpeg_prefix.h
-jdarith.o: jconfig.h
-jdarith.o: jerror.h
-jdarith.o: jinclude.h
-jdarith.o: jmorecfg.h
-jdarith.o: jpegint.h
-jdarith.o: jpeglib.h
-jdatadst.o: fltk_jpeg_prefix.h
-jdatadst.o: jconfig.h
-jdatadst.o: jerror.h
-jdatadst.o: jinclude.h
-jdatadst.o: jmorecfg.h
-jdatadst.o: jpegint.h
-jdatadst.o: jpeglib.h
-jdatasrc.o: fltk_jpeg_prefix.h
-jdatasrc.o: jconfig.h
-jdatasrc.o: jerror.h
-jdatasrc.o: jinclude.h
-jdatasrc.o: jmorecfg.h
-jdatasrc.o: jpegint.h
-jdatasrc.o: jpeglib.h
-jdcoefct.o: fltk_jpeg_prefix.h
-jdcoefct.o: jconfig.h
-jdcoefct.o: jerror.h
-jdcoefct.o: jinclude.h
-jdcoefct.o: jmorecfg.h
-jdcoefct.o: jpegint.h
-jdcoefct.o: jpeglib.h
-jdcolor.o: fltk_jpeg_prefix.h
-jdcolor.o: jconfig.h
-jdcolor.o: jerror.h
-jdcolor.o: jinclude.h
-jdcolor.o: jmorecfg.h
-jdcolor.o: jpegint.h
-jdcolor.o: jpeglib.h
-jddctmgr.o: fltk_jpeg_prefix.h
-jddctmgr.o: jconfig.h
-jddctmgr.o: jdct.h
-jddctmgr.o: jerror.h
-jddctmgr.o: jinclude.h
-jddctmgr.o: jmorecfg.h
-jddctmgr.o: jpegint.h
-jddctmgr.o: jpeglib.h
-jdhuff.o: fltk_jpeg_prefix.h
-jdhuff.o: jconfig.h
-jdhuff.o: jerror.h
-jdhuff.o: jinclude.h
-jdhuff.o: jmorecfg.h
-jdhuff.o: jpegint.h
-jdhuff.o: jpeglib.h
-jdinput.o: fltk_jpeg_prefix.h
-jdinput.o: jconfig.h
-jdinput.o: jerror.h
-jdinput.o: jinclude.h
-jdinput.o: jmorecfg.h
-jdinput.o: jpegint.h
-jdinput.o: jpeglib.h
-jdmainct.o: fltk_jpeg_prefix.h
-jdmainct.o: jconfig.h
-jdmainct.o: jerror.h
-jdmainct.o: jinclude.h
-jdmainct.o: jmorecfg.h
-jdmainct.o: jpegint.h
-jdmainct.o: jpeglib.h
-jdmarker.o: fltk_jpeg_prefix.h
-jdmarker.o: jconfig.h
-jdmarker.o: jerror.h
-jdmarker.o: jinclude.h
-jdmarker.o: jmorecfg.h
-jdmarker.o: jpegint.h
-jdmarker.o: jpeglib.h
-jdmaster.o: fltk_jpeg_prefix.h
-jdmaster.o: jconfig.h
-jdmaster.o: jerror.h
-jdmaster.o: jinclude.h
-jdmaster.o: jmorecfg.h
-jdmaster.o: jpegint.h
-jdmaster.o: jpeglib.h
-jdmerge.o: fltk_jpeg_prefix.h
-jdmerge.o: jconfig.h
-jdmerge.o: jerror.h
-jdmerge.o: jinclude.h
-jdmerge.o: jmorecfg.h
-jdmerge.o: jpegint.h
-jdmerge.o: jpeglib.h
-jdpostct.o: fltk_jpeg_prefix.h
-jdpostct.o: jconfig.h
-jdpostct.o: jerror.h
-jdpostct.o: jinclude.h
-jdpostct.o: jmorecfg.h
-jdpostct.o: jpegint.h
-jdpostct.o: jpeglib.h
-jdsample.o: fltk_jpeg_prefix.h
-jdsample.o: jconfig.h
-jdsample.o: jerror.h
-jdsample.o: jinclude.h
-jdsample.o: jmorecfg.h
-jdsample.o: jpegint.h
-jdsample.o: jpeglib.h
-jdtrans.o: fltk_jpeg_prefix.h
-jdtrans.o: jconfig.h
-jdtrans.o: jerror.h
-jdtrans.o: jinclude.h
-jdtrans.o: jmorecfg.h
-jdtrans.o: jpegint.h
-jdtrans.o: jpeglib.h
-jerror.o: fltk_jpeg_prefix.h
-jerror.o: jconfig.h
-jerror.o: jerror.h
-jerror.o: jinclude.h
-jerror.o: jmorecfg.h
-jerror.o: jpegint.h
-jerror.o: jpeglib.h
-jerror.o: jversion.h
-jfdctflt.o: fltk_jpeg_prefix.h
-jfdctflt.o: jconfig.h
-jfdctflt.o: jdct.h
-jfdctflt.o: jerror.h
-jfdctflt.o: jinclude.h
-jfdctflt.o: jmorecfg.h
-jfdctflt.o: jpegint.h
-jfdctflt.o: jpeglib.h
-jfdctfst.o: fltk_jpeg_prefix.h
-jfdctfst.o: jconfig.h
-jfdctfst.o: jdct.h
-jfdctfst.o: jerror.h
-jfdctfst.o: jinclude.h
-jfdctfst.o: jmorecfg.h
-jfdctfst.o: jpegint.h
-jfdctfst.o: jpeglib.h
-jfdctint.o: fltk_jpeg_prefix.h
-jfdctint.o: jconfig.h
-jfdctint.o: jdct.h
-jfdctint.o: jerror.h
-jfdctint.o: jinclude.h
-jfdctint.o: jmorecfg.h
-jfdctint.o: jpegint.h
-jfdctint.o: jpeglib.h
-jidctflt.o: fltk_jpeg_prefix.h
-jidctflt.o: jconfig.h
-jidctflt.o: jdct.h
-jidctflt.o: jerror.h
-jidctflt.o: jinclude.h
-jidctflt.o: jmorecfg.h
-jidctflt.o: jpegint.h
-jidctflt.o: jpeglib.h
-jidctfst.o: fltk_jpeg_prefix.h
-jidctfst.o: jconfig.h
-jidctfst.o: jdct.h
-jidctfst.o: jerror.h
-jidctfst.o: jinclude.h
-jidctfst.o: jmorecfg.h
-jidctfst.o: jpegint.h
-jidctfst.o: jpeglib.h
-jidctint.o: fltk_jpeg_prefix.h
-jidctint.o: jconfig.h
-jidctint.o: jdct.h
-jidctint.o: jerror.h
-jidctint.o: jinclude.h
-jidctint.o: jmorecfg.h
-jidctint.o: jpegint.h
-jidctint.o: jpeglib.h
-jmemmgr.o: fltk_jpeg_prefix.h
-jmemmgr.o: jconfig.h
-jmemmgr.o: jerror.h
-jmemmgr.o: jinclude.h
-jmemmgr.o: jmemsys.h
-jmemmgr.o: jmorecfg.h
-jmemmgr.o: jpegint.h
-jmemmgr.o: jpeglib.h
-jmemnobs.o: fltk_jpeg_prefix.h
-jmemnobs.o: jconfig.h
-jmemnobs.o: jerror.h
-jmemnobs.o: jinclude.h
-jmemnobs.o: jmemsys.h
-jmemnobs.o: jmorecfg.h
-jmemnobs.o: jpegint.h
-jmemnobs.o: jpeglib.h
-jquant1.o: fltk_jpeg_prefix.h
-jquant1.o: jconfig.h
-jquant1.o: jerror.h
-jquant1.o: jinclude.h
-jquant1.o: jmorecfg.h
-jquant1.o: jpegint.h
-jquant1.o: jpeglib.h
-jquant2.o: fltk_jpeg_prefix.h
-jquant2.o: jconfig.h
-jquant2.o: jerror.h
-jquant2.o: jinclude.h
-jquant2.o: jmorecfg.h
-jquant2.o: jpegint.h
-jquant2.o: jpeglib.h
-jutils.o: fltk_jpeg_prefix.h
-jutils.o: jconfig.h
-jutils.o: jerror.h
-jutils.o: jinclude.h
-jutils.o: jmorecfg.h
-jutils.o: jpegint.h
-jutils.o: jpeglib.h
diff --git a/libdecor/build/Makefile b/libdecor/build/Makefile
deleted file mode 100644
index 65952ca06..000000000
--- a/libdecor/build/Makefile
+++ /dev/null
@@ -1,86 +0,0 @@
-#
-# Library Makefile for the Fast Light Tool Kit (FLTK).
-#
-# Copyright 2022-2024 by Bill Spitzak and others.
-#
-# This library is free software. Distribution and use rights are outlined in
-# the file "COPYING" which should have been included with this file. If this
-# file is missing or damaged, see the license at:
-#
-# https://www.fltk.org/COPYING.php
-#
-# Please see the following page on how to report bugs and issues:
-#
-# https://www.fltk.org/bugs.php
-#
-
-include ../../makeinclude
-
-OBJECTS = fl_libdecor.o libdecor-cairo-blur.o fl_libdecor-plugins.o \
- ../../src/xdg-decoration-protocol.o ../../src/xdg-shell-protocol.o \
- ../../src/text-input-protocol.o ../../src/gtk-shell-protocol.o desktop-settings.o os-compatibility.o
-
-PROTOCOLS = `pkg-config --variable=pkgdatadir wayland-protocols`
-
-Linux_CFLAGS =
-FreeBSD_CFLAGS = -I/usr/local/include
-EXTRA_DECOR = ${${UNAME}_CFLAGS}
-
-CFLAGS_DECOR = -I. -I../.. -I../../src -I../src -I../src/plugins $(EXTRA_DECOR) -fPIC -D_GNU_SOURCE \
- -DHAVE_MEMFD_CREATE -DHAVE_MKOSTEMP -DHAVE_POSIX_FALLOCATE
-
-all : $(OBJECTS)
-
-depend:
- : echo "libdecor/build: make depend..."
-
-fl_libdecor.o : fl_libdecor.c ../src/libdecor.c ../../src/xdg-shell-protocol.c ../../src/xdg-decoration-protocol.c ../../src/text-input-protocol.c ../../src/gtk-shell-protocol.c
- $(CC) $(CFLAGS) $(CFLAGS_DECOR) -c fl_libdecor.c -DLIBDECOR_PLUGIN_API_VERSION=1
-
-fl_libdecor-plugins.o : fl_libdecor-plugins.c ../src/plugins/cairo/libdecor-cairo.c
- $(CC) $(CFLAGS) $(CFLAGS_DECOR) -c fl_libdecor-plugins.c -DLIBDECOR_PLUGIN_API_VERSION=1
-
-libdecor-cairo-blur.o : ../src/plugins/common/libdecor-cairo-blur.c
- $(CC) $(CFLAGS_DECOR) -c ../src/plugins/common/libdecor-cairo-blur.c
-
-os-compatibility.o : ../src/os-compatibility.c
- $(CC) $(CFLAGS_DECOR) -c ../src/os-compatibility.c
-
-desktop-settings.o : ../src/desktop-settings.c
- $(CC) $(CFLAGS_DECOR) -c ../src/desktop-settings.c $(LIBDECORDBUS)
-
-../../src/xdg-shell-protocol.c :
- wayland-scanner private-code $(PROTOCOLS)/stable/xdg-shell/xdg-shell.xml \
- ../../src/xdg-shell-protocol.c
- wayland-scanner client-header $(PROTOCOLS)/stable/xdg-shell/xdg-shell.xml \
- ../../src/xdg-shell-client-protocol.h
-
-../../src/xdg-decoration-protocol.c :
- wayland-scanner private-code \
- $(PROTOCOLS)/unstable/xdg-decoration/xdg-decoration-unstable-v1.xml \
- ../../src/xdg-decoration-protocol.c
- wayland-scanner client-header \
- $(PROTOCOLS)/unstable/xdg-decoration/xdg-decoration-unstable-v1.xml \
- ../../src/xdg-decoration-client-protocol.h
-
-../../src/text-input-protocol.c :
- wayland-scanner private-code \
- $(PROTOCOLS)/unstable/text-input/text-input-unstable-v3.xml \
- ../../src/text-input-protocol.c
- wayland-scanner client-header \
- $(PROTOCOLS)/unstable/text-input/text-input-unstable-v3.xml \
- ../../src/text-input-client-protocol.h
-
-../../src/gtk-shell-protocol.c :
- wayland-scanner private-code \
- gtk-shell.xml ../../src/gtk-shell-protocol.c
- wayland-scanner client-header \
- gtk-shell.xml ../../src/gtk-shell-client-protocol.h
-
-install:
- echo "Nothing to install"
-
-uninstall:
-
-clean:
- $(RM) *.o ../../src/xdg-*.c ../../src/xdg-*.h ../../src/xdg-*.o ../../src/text-input-* ../../src/gtk-shell-*
diff --git a/makeinclude.in b/makeinclude.in
deleted file mode 100644
index b1aee3a36..000000000
--- a/makeinclude.in
+++ /dev/null
@@ -1,198 +0,0 @@
-#
-# Make include file for the Fast Light Tool Kit (FLTK).
-#
-# Copyright 1998-2024 by Bill Spitzak and others.
-#
-# This library is free software. Distribution and use rights are outlined in
-# the file "COPYING" which should have been included with this file. If this
-# file is missing or damaged, see the license at:
-#
-# https://www.fltk.org/COPYING.php
-#
-# Please see the following page on how to report bugs and issues:
-#
-# https://www.fltk.org/bugs.php
-#
-
-# FLTK version numbers
-
-FL_VERSION = @FLTK_VERSION@
-FL_DSO_VERSION = @FL_DSO_VERSION@
-FL_ABI_VERSION = @FL_ABI_VERSION@
-
-# FLTK version for documentation generation with doxygen
-
-FLTK_VERSION = @FLTK_VERSION@
-
-# FLTK configuration options: BUILD = { WIN | OSX | X11 | XFT | CAIROXLIB | WAYLANDX11 | WAYLAND }
-
-BUILD = @BUILD@
-UNAME = @UNAME@
-
-# Standard configure variables
-
-prefix = @prefix@
-exec_prefix = @exec_prefix@
-bindir = @bindir@
-datadir = @datadir@
-datarootdir = @datarootdir@
-includedir = @includedir@
-libdir = @libdir@
-mandir = @mandir@
-srcdir = @srcdir@
-docdir = $(datadir)/doc/fltk
-VPATH = @srcdir@
-
-# programs we use...
-DOXYDOC = @DOXYDOC@
-INSTALL = @INSTALL@
-LN = ln -s
-NROFF = @NROFF@
-RM = rm -f
-RMDIR = rm -rf
-SHELL = /bin/sh
-STRIP = strip
-
-# compiler names:
-CXX = @CXX@
-CC = @CC@
-MAKEDEPEND = @MAKEDEPEND@
-
-# (Windows) resource compiler
-RC = @RC@
-
-# flags for C++ compiler:
-ARCHFLAGS = @ARCHFLAGS@
-OPTIM = @OPTIM@
-CFLAGS = $(OPTIM) @LARGEFILE@ @PTHREAD_FLAGS@ @CPPFLAGS@ @CFLAGS@
-CXXFLAGS = $(OPTIM) @LARGEFILE@ @PTHREAD_FLAGS@ @CPPFLAGS@ @CXXFLAGS@ $(FLTKFLAGS)
-
-# program to make the archive:
-LIBNAME = @LIBNAME@
-FLLIBNAME = @FLLIBNAME@
-GLLIBNAME = @GLLIBNAME@
-IMGLIBNAME = @IMGLIBNAME@
-CAIROLIBNAME = @CAIROLIBNAME@
-LIBCOMMAND = @LIBCOMMAND@
-LIBEXT = @LIBEXT@
-RANLIB = @RANLIB@
-DSONAME = @DSONAME@
-FLDSONAME = @FLDSONAME@
-GLDSONAME = @GLDSONAME@
-IMGDSONAME = @IMGDSONAME@
-CAIRODSONAME = @CAIRODSONAME@
-DSOCOMMAND = @DSOCOMMAND@
-
-LIBBASENAME = @LIBBASENAME@
-FLLIBBASENAME = @FLLIBBASENAME@
-GLLIBBASENAME = @GLLIBBASENAME@
-IMGLIBBASENAME = @IMGLIBBASENAME@
-CAIROLIBBASENAME= @CAIROLIBBASENAME@
-
-# Test programs (optional, --disable-test):
-TESTDIR = @TESTDIR@
-
-# libraries to link with:
-AUDIOLIBS = @AUDIOLIBS@
-CAIROLIBS = @CAIROLIBS@
-CAIROFLAGS = @CAIROFLAGS@
-DSOFLAGS = -L. @DSOFLAGS@
-LDFLAGS = $(OPTIM) @LDFLAGS@
-LDLIBS = @LIBS@
-GLDLIBS = @GLLIBS@ @LIBS@
-LINKFLTK = @LINKFLTK@
-LINKFLTKGL = @LINKFLTKGL@
-LINKFLTKFORMS = @LINKFLTKFORMS@ @LINKFLTK@
-LINKFLTKIMG = @LINKFLTKIMG@ @LINKFLTK@ $(IMAGELIBS)
-LINKFLTKCAIRO = @LINKFLTKCAIRO@ $(CAIROLIBS)
-FLTKCAIROOPTION = @FLTKCAIROOPTION@
-LINKSHARED = @DSOLINK@ @LINKSHARED@ $(IMAGELIBS) $(CAIROLIBS)
-IMAGELIBS = -L../lib @IMAGELIBS@
-
-# optional extra build step for fluid:
-FLUIDDIR = @FLUIDDIR@
-
-# optional extra build step for libdecor:
-LIBDECORDIR = @LIBDECORDIR@
-LIBDECORDBUS = @LIBDECORDBUS@
-
-# image libraries to build...
-IMAGEDIRS = @JPEG@ @ZLIB@ @PNG@
-CAIRODIR = @CAIRODIR@
-# The extension to use for executables...
-EXEEXT = @EXEEXT@
-
-# Do we build the OpenGL demos?
-GLDEMOS = @GLDEMOS@
-
-# Do we build the threads demo?
-THREADS = @THREADS@
-
-# Name of FLUID executable we install
-FLUID = @FLUID@$(EXEEXT)
-
-# Name and/or path of FLUID executable we use for building:
-# depends on the build type (native or cross-compiler)
-FLUID_BUILD = @FLUID_BUILD@
-
-# Name of fltk-options executable we install
-FLTK_OPTIONS = @FLTK_OPTIONS@$(EXEEXT)
-
-# Possible steps for OS X build only
-OSX_ONLY = @OSX_ONLY@
-
-# Man page extensions...
-CAT1EXT = @CAT1EXT@
-CAT3EXT = @CAT3EXT@
-CAT6EXT = @CAT6EXT@
-
-#
-# Installation programs...
-#
-
-INSTALL_BIN = $(INSTALL) -m 755
-INSTALL_DATA = $(INSTALL) -m 644
-INSTALL_DIR = $(INSTALL) -d
-INSTALL_LIB = $(INSTALL) -m 755
-INSTALL_MAN = $(INSTALL) -m 644
-INSTALL_SCRIPT = $(INSTALL) -m 755
-
-# Additional GUI install/uninstall targets...
-INSTALL_DESKTOP = @INSTALL_DESKTOP@
-UNINSTALL_DESKTOP = @UNINSTALL_DESKTOP@
-
-# Be quiet when building...
-.SILENT:
-
-# Build commands and filename extensions...
-.SUFFIXES: .0 .1 .3 .6 .c .cxx .mm .h .fl .man .o .z $(EXEEXT)
-
-.o$(EXEEXT):
- echo Linking $@...
- $(CXX) $(ARCHFLAGS) $(LDFLAGS) $< $(LINKFLTK) $(LDLIBS) -o $@
- $(OSX_ONLY) ../fltk-config --post $@
-
-.c.o:
- echo Compiling $<...
- $(CC) -I.. $(ARCHFLAGS) @PNGINC@ @JPEGINC@ @ZLIBINC@ $(CFLAGS) -c $< -o $@
-
-.cxx.o:
- echo Compiling $<...
- $(CXX) -I.. $(ARCHFLAGS) @PNGINC@ @JPEGINC@ @ZLIBINC@ $(CXXFLAGS) -c $< -o $@
-
-.mm.o:
- echo Compiling $<...
- $(CXX) -I.. $(ARCHFLAGS) $(CXXFLAGS) -x objective-c++ -c $< -o $@
-
-
-.man.0 .man.1 .man.3 .man.6:
- echo Formatting $<...
- rm -f $@
- $(NROFF) -man $< >$@
-
-.man.z:
- echo Formatting $<...
- rm -f $@ t.z
- $(NROFF) -man $< >t
- pack -f t
- mv t.z $@
diff --git a/misc/update_config_scripts b/misc/update_config_scripts
deleted file mode 100755
index 802a06bbc..000000000
--- a/misc/update_config_scripts
+++ /dev/null
@@ -1,51 +0,0 @@
-#!/bin/sh
-#
-# Update the bundled scripts config.guess and config.sub
-# for the Fast Light Tool Kit (FLTK).
-#
-# Copyright 1998-2023 by Bill Spitzak and others.
-#
-# This library is free software. Distribution and use rights are outlined in
-# the file "COPYING" which should have been included with this file. If this
-# file is missing or damaged, see the license at:
-#
-# https://www.fltk.org/COPYING.php
-#
-# Please see the following page on how to report bugs and issues:
-#
-# https://www.fltk.org/bugs.php
-#
-
-#
-# Notes to developers:
-#
-# This script uses wget to download the scripts to the current working
-# directory, and it overwrites existing files. You may also use your
-# browser to view and download the files if wget is not installed on
-# your system.
-#
-# After downloading the scripts, copy config.guess and config.sub to
-# the FLTK root directory, test, and eventually commit the changes:
-#
-# # cd to FLTK root directory
-#
-# $ make distclean
-# $ autoconf -f
-# $ ./configure [options ...]
-# $ make
-# # test
-# $ git add config.guess config.sub
-# $ git commit
-#
-
-for FILE in config.guess config.sub; do
- echo ""
- echo "Downloading $FILE..."
- echo ""
- wget -O $FILE \
- "https://git.savannah.gnu.org/cgit/config.git/plain/$FILE"
-done
-
-echo ""
-echo "Download complete, please check for errors, test, and commit changes."
-echo ""
diff --git a/png/Makefile b/png/Makefile
deleted file mode 100644
index 53efddb8a..000000000
--- a/png/Makefile
+++ /dev/null
@@ -1,104 +0,0 @@
-#
-# PNG library Makefile for the Fast Light Toolkit (FLTK).
-#
-# Copyright 1997-2011 by Easy Software Products.
-# Copyright 2012-2024 by Bill Spitzak and others.
-#
-# This library is free software. Distribution and use rights are outlined in
-# the file "COPYING" which should have been included with this file. If this
-# file is missing or damaged, see the license at:
-#
-# https://www.fltk.org/COPYING.php
-#
-# Please see the following page on how to report bugs and issues:
-#
-# https://www.fltk.org/bugs.php
-#
-
-include ../makeinclude
-
-#
-# Object files...
-#
-
-OBJS = png.o pngset.o pngget.o pngrutil.o pngtrans.o pngwutil.o \
- pngread.o pngrio.o pngwio.o pngwrite.o pngrtran.o \
- pngwtran.o pngmem.o pngerror.o pngpread.o \
- arm/arm_init.o arm/filter_neon_intrinsics.o arm/palette_neon_intrinsics.o \
- powerpc/powerpc_init.o powerpc/filter_vsx_intrinsics.o
-
-LIBPNG = ../lib/libfltk_png$(LIBEXT)
-
-
-#
-# Make all of the targets...
-#
-
-all: $(LIBPNG)
-
-
-#
-# Clean all of the targets and object files...
-#
-
-clean:
- $(RM) $(OBJS)
- $(RM) $(LIBPNG)
-
-
-#
-# Install everything...
-#
-
-install: $(LIBPNG)
- echo "Installing libfltk_png$(LIBEXT) in $(libdir)..."
- -$(INSTALL_DIR) "$(DESTDIR)$(libdir)"
- $(INSTALL_LIB) $(LIBPNG) "$(DESTDIR)$(libdir)"
- $(RANLIB) "$(DESTDIR)$(libdir)/libfltk_png$(LIBEXT)"
- echo "Installing png headers in $(includedir)/FL/images..."
- -$(INSTALL_DIR) "$(DESTDIR)$(includedir)/FL/images"
- $(INSTALL_DATA) png.h "$(DESTDIR)$(includedir)/FL/images"
- $(INSTALL_DATA) pngconf.h "$(DESTDIR)$(includedir)/FL/images"
- $(INSTALL_DATA) pnglibconf.h "$(DESTDIR)$(includedir)/FL/images"
- $(INSTALL_DATA) pngprefix.h "$(DESTDIR)$(includedir)/FL/images"
-
-
-#
-# Uninstall everything...
-#
-
-uninstall:
- echo "Uninstalling libfltk_png$(LIBEXT) in $(libdir)..."
- $(RM) "$(DESTDIR)$(libdir)/libfltk_png$(LIBEXT)"
- echo "Uninstalling png headers in $(includedir)/FL/images..."
- $(RM) "$(DESTDIR)$(includedir)/FL/images/png.h"
- $(RM) "$(DESTDIR)$(includedir)/FL/images/pngconf.h"
- $(RM) "$(DESTDIR)$(includedir)/FL/images/pnglibconf.h"
- $(RM) "$(DESTDIR)$(includedir)/FL/images/pngprefix.h"
-
-
-#
-# libfltk_png.a
-#
-
-$(LIBPNG): $(OBJS)
- echo Archiving $@...
- $(RM) $@
- $(LIBCOMMAND) $@ $(OBJS)
- $(RANLIB) $@
-
-
-#
-# Make dependencies...
-#
-
-depend: $(OBJS:.o=.c)
- makedepend -Y -I.. -f makedepend -w 20 $(OBJS:.o=.c)
- echo "# DO NOT DELETE THIS LINE -- make depend depends on it." > makedepend.tmp
- echo "" >> makedepend.tmp
- grep '^[a-zA-Z]' makedepend | ( LC_ALL=C sort -u -f >> makedepend.tmp; )
- mv makedepend.tmp makedepend
-
-include makedepend
-
-$(OBJS): ../makeinclude
diff --git a/png/makedepend b/png/makedepend
deleted file mode 100644
index be35a4f31..000000000
--- a/png/makedepend
+++ /dev/null
@@ -1,162 +0,0 @@
-# DO NOT DELETE THIS LINE -- make depend depends on it.
-
-arm/arm_init.o: png.h
-arm/arm_init.o: pngconf.h
-arm/arm_init.o: pngdebug.h
-arm/arm_init.o: pnginfo.h
-arm/arm_init.o: pnglibconf.h
-arm/arm_init.o: pngprefix.h
-arm/arm_init.o: pngpriv.h
-arm/arm_init.o: pngstruct.h
-arm/filter_neon_intrinsics.o: png.h
-arm/filter_neon_intrinsics.o: pngconf.h
-arm/filter_neon_intrinsics.o: pngdebug.h
-arm/filter_neon_intrinsics.o: pnginfo.h
-arm/filter_neon_intrinsics.o: pnglibconf.h
-arm/filter_neon_intrinsics.o: pngprefix.h
-arm/filter_neon_intrinsics.o: pngpriv.h
-arm/filter_neon_intrinsics.o: pngstruct.h
-arm/palette_neon_intrinsics.o: png.h
-arm/palette_neon_intrinsics.o: pngconf.h
-arm/palette_neon_intrinsics.o: pngdebug.h
-arm/palette_neon_intrinsics.o: pnginfo.h
-arm/palette_neon_intrinsics.o: pnglibconf.h
-arm/palette_neon_intrinsics.o: pngprefix.h
-arm/palette_neon_intrinsics.o: pngpriv.h
-arm/palette_neon_intrinsics.o: pngstruct.h
-png.o: png.h
-png.o: pngconf.h
-png.o: pngdebug.h
-png.o: pnginfo.h
-png.o: pnglibconf.h
-png.o: pngprefix.h
-png.o: pngpriv.h
-png.o: pngstruct.h
-pngerror.o: png.h
-pngerror.o: pngconf.h
-pngerror.o: pngdebug.h
-pngerror.o: pnginfo.h
-pngerror.o: pnglibconf.h
-pngerror.o: pngprefix.h
-pngerror.o: pngpriv.h
-pngerror.o: pngstruct.h
-pngget.o: png.h
-pngget.o: pngconf.h
-pngget.o: pngdebug.h
-pngget.o: pnginfo.h
-pngget.o: pnglibconf.h
-pngget.o: pngprefix.h
-pngget.o: pngpriv.h
-pngget.o: pngstruct.h
-pngmem.o: png.h
-pngmem.o: pngconf.h
-pngmem.o: pngdebug.h
-pngmem.o: pnginfo.h
-pngmem.o: pnglibconf.h
-pngmem.o: pngprefix.h
-pngmem.o: pngpriv.h
-pngmem.o: pngstruct.h
-pngpread.o: png.h
-pngpread.o: pngconf.h
-pngpread.o: pngdebug.h
-pngpread.o: pnginfo.h
-pngpread.o: pnglibconf.h
-pngpread.o: pngprefix.h
-pngpread.o: pngpriv.h
-pngpread.o: pngstruct.h
-pngread.o: png.h
-pngread.o: pngconf.h
-pngread.o: pngdebug.h
-pngread.o: pnginfo.h
-pngread.o: pnglibconf.h
-pngread.o: pngprefix.h
-pngread.o: pngpriv.h
-pngread.o: pngstruct.h
-pngrio.o: png.h
-pngrio.o: pngconf.h
-pngrio.o: pngdebug.h
-pngrio.o: pnginfo.h
-pngrio.o: pnglibconf.h
-pngrio.o: pngprefix.h
-pngrio.o: pngpriv.h
-pngrio.o: pngstruct.h
-pngrtran.o: png.h
-pngrtran.o: pngconf.h
-pngrtran.o: pngdebug.h
-pngrtran.o: pnginfo.h
-pngrtran.o: pnglibconf.h
-pngrtran.o: pngprefix.h
-pngrtran.o: pngpriv.h
-pngrtran.o: pngstruct.h
-pngrutil.o: png.h
-pngrutil.o: pngconf.h
-pngrutil.o: pngdebug.h
-pngrutil.o: pnginfo.h
-pngrutil.o: pnglibconf.h
-pngrutil.o: pngprefix.h
-pngrutil.o: pngpriv.h
-pngrutil.o: pngstruct.h
-pngset.o: png.h
-pngset.o: pngconf.h
-pngset.o: pngdebug.h
-pngset.o: pnginfo.h
-pngset.o: pnglibconf.h
-pngset.o: pngprefix.h
-pngset.o: pngpriv.h
-pngset.o: pngstruct.h
-pngtrans.o: png.h
-pngtrans.o: pngconf.h
-pngtrans.o: pngdebug.h
-pngtrans.o: pnginfo.h
-pngtrans.o: pnglibconf.h
-pngtrans.o: pngprefix.h
-pngtrans.o: pngpriv.h
-pngtrans.o: pngstruct.h
-pngwio.o: png.h
-pngwio.o: pngconf.h
-pngwio.o: pngdebug.h
-pngwio.o: pnginfo.h
-pngwio.o: pnglibconf.h
-pngwio.o: pngprefix.h
-pngwio.o: pngpriv.h
-pngwio.o: pngstruct.h
-pngwrite.o: png.h
-pngwrite.o: pngconf.h
-pngwrite.o: pngdebug.h
-pngwrite.o: pnginfo.h
-pngwrite.o: pnglibconf.h
-pngwrite.o: pngprefix.h
-pngwrite.o: pngpriv.h
-pngwrite.o: pngstruct.h
-pngwtran.o: png.h
-pngwtran.o: pngconf.h
-pngwtran.o: pngdebug.h
-pngwtran.o: pnginfo.h
-pngwtran.o: pnglibconf.h
-pngwtran.o: pngprefix.h
-pngwtran.o: pngpriv.h
-pngwtran.o: pngstruct.h
-pngwutil.o: png.h
-pngwutil.o: pngconf.h
-pngwutil.o: pngdebug.h
-pngwutil.o: pnginfo.h
-pngwutil.o: pnglibconf.h
-pngwutil.o: pngprefix.h
-pngwutil.o: pngpriv.h
-pngwutil.o: pngstruct.h
-powerpc/filter_vsx_intrinsics.o: png.h
-powerpc/filter_vsx_intrinsics.o: pngconf.h
-powerpc/filter_vsx_intrinsics.o: pngdebug.h
-powerpc/filter_vsx_intrinsics.o: pnginfo.h
-powerpc/filter_vsx_intrinsics.o: pnglibconf.h
-powerpc/filter_vsx_intrinsics.o: pngprefix.h
-powerpc/filter_vsx_intrinsics.o: pngpriv.h
-powerpc/filter_vsx_intrinsics.o: pngstruct.h
-powerpc/powerpc_init.o: png.h
-powerpc/powerpc_init.o: pngconf.h
-powerpc/powerpc_init.o: pngdebug.h
-powerpc/powerpc_init.o: pnginfo.h
-powerpc/powerpc_init.o: pnglibconf.h
-powerpc/powerpc_init.o: pngprefix.h
-powerpc/powerpc_init.o: pngpriv.h
-powerpc/powerpc_init.o: pngstruct.h
diff --git a/src/Makefile b/src/Makefile
deleted file mode 100644
index 2caf49923..000000000
--- a/src/Makefile
+++ /dev/null
@@ -1,1100 +0,0 @@
-#
-# Library Makefile for the Fast Light Tool Kit (FLTK).
-#
-# Copyright 1998-2024 by Bill Spitzak and others.
-#
-# This library is free software. Distribution and use rights are outlined in
-# the file "COPYING" which should have been included with this file. If this
-# file is missing or damaged, see the license at:
-#
-# https://www.fltk.org/COPYING.php
-#
-# Please see the following page on how to report bugs and issues:
-#
-# https://www.fltk.org/bugs.php
-#
-
-# Note: see ../configure.ac and/or ../makeinclude for definition of
-# FL_VERSION (x.y.z), FL_ABI_VERSION (x.y.0), and FL_DSO_VERSION (x.y)
-
-CPPFILES = \
- Fl.cxx \
- Fl_Adjuster.cxx \
- Fl_Bitmap.cxx \
- Fl_Browser.cxx \
- Fl_Browser_.cxx \
- Fl_Browser_load.cxx \
- Fl_Box.cxx \
- Fl_Button.cxx \
- Fl_Cairo.cxx \
- Fl_Chart.cxx \
- Fl_Check_Browser.cxx \
- Fl_Check_Button.cxx \
- Fl_Choice.cxx \
- Fl_Clock.cxx \
- Fl_Color_Chooser.cxx \
- Fl_Copy_Surface.cxx \
- Fl_Counter.cxx \
- Fl_Dial.cxx \
- Fl_Device.cxx \
- Fl_Double_Window.cxx \
- Fl_File_Browser.cxx \
- Fl_File_Chooser.cxx \
- Fl_File_Chooser2.cxx \
- Fl_File_Icon.cxx \
- Fl_File_Input.cxx \
- Fl_Flex.cxx \
- Fl_Graphics_Driver.cxx \
- Fl_Grid.cxx \
- Fl_Group.cxx \
- Fl_Help_View.cxx \
- Fl_Image.cxx \
- Fl_Image_Surface.cxx \
- Fl_Input.cxx \
- Fl_Input_.cxx \
- Fl_Input_Choice.cxx \
- Fl_Int_Vector.cxx \
- Fl_Light_Button.cxx \
- Fl_Menu.cxx \
- Fl_Menu_.cxx \
- Fl_Menu_Bar.cxx \
- Fl_Menu_Button.cxx \
- Fl_Menu_Window.cxx \
- Fl_Menu_add.cxx \
- Fl_Menu_global.cxx \
- Fl_Message.cxx \
- Fl_Multi_Label.cxx \
- Fl_Native_File_Chooser.cxx \
- Fl_Overlay_Window.cxx \
- Fl_Pack.cxx \
- Fl_Paged_Device.cxx \
- Fl_Pixmap.cxx \
- Fl_Positioner.cxx \
- Fl_Preferences.cxx \
- Fl_Printer.cxx \
- Fl_Progress.cxx \
- Fl_Repeat_Button.cxx \
- Fl_Return_Button.cxx \
- Fl_Roller.cxx \
- Fl_Round_Button.cxx \
- Fl_Screen_Driver.cxx \
- Fl_Scheme.cxx \
- Fl_Scheme_Choice.cxx \
- Fl_Scroll.cxx \
- Fl_Scrollbar.cxx \
- Fl_Shared_Image.cxx \
- Fl_Shortcut_Button.cxx \
- Fl_Single_Window.cxx \
- Fl_Slider.cxx \
- Fl_Spinner.cxx \
- Fl_String.cxx \
- Fl_Sys_Menu_Bar.cxx \
- Fl_System_Driver.cxx \
- Fl_Table.cxx \
- Fl_Table_Row.cxx \
- Fl_Tabs.cxx \
- Fl_Terminal.cxx \
- Fl_Text_Buffer.cxx \
- Fl_Text_Display.cxx \
- Fl_Text_Editor.cxx \
- Fl_Tile.cxx \
- Fl_Tiled_Image.cxx \
- Fl_Timeout.cxx \
- Fl_Tree.cxx \
- Fl_Tree_Item.cxx \
- Fl_Tree_Item_Array.cxx \
- Fl_Tree_Prefs.cxx \
- Fl_Tooltip.cxx \
- Fl_Valuator.cxx \
- Fl_Value_Input.cxx \
- Fl_Value_Output.cxx \
- Fl_Value_Slider.cxx \
- Fl_Widget.cxx \
- Fl_Widget_Surface.cxx \
- Fl_Window.cxx \
- Fl_Window_Driver.cxx \
- Fl_Window_fullscreen.cxx \
- Fl_Window_hotspot.cxx \
- Fl_Window_iconize.cxx \
- Fl_Wizard.cxx \
- Fl_XBM_Image.cxx \
- Fl_XPM_Image.cxx \
- Fl_abort.cxx \
- Fl_add_idle.cxx \
- Fl_arg.cxx \
- Fl_compose.cxx \
- Fl_display.cxx \
- Fl_get_system_colors.cxx \
- Fl_grab.cxx \
- Fl_lock.cxx \
- Fl_own_colormap.cxx \
- Fl_visual.cxx \
- filename_absolute.cxx \
- filename_expand.cxx \
- filename_ext.cxx \
- filename_isdir.cxx \
- filename_list.cxx \
- filename_match.cxx \
- filename_setext.cxx \
- fl_arc.cxx \
- fl_ask.cxx \
- fl_boxtype.cxx \
- fl_color.cxx \
- fl_contrast.cxx \
- fl_cursor.cxx \
- fl_curve.cxx \
- fl_diamond_box.cxx \
- fl_draw.cxx \
- fl_draw_arrow.cxx \
- fl_draw_pixmap.cxx \
- fl_encoding_latin1.cxx \
- fl_encoding_mac_roman.cxx \
- fl_engraved_label.cxx \
- fl_file_dir.cxx \
- fl_font.cxx \
- fl_gleam.cxx \
- fl_gtk.cxx \
- fl_labeltype.cxx \
- fl_open_uri.cxx \
- fl_oval_box.cxx \
- fl_overlay.cxx \
- fl_oxy.cxx \
- fl_plastic.cxx \
- fl_read_image.cxx \
- fl_rect.cxx \
- fl_round_box.cxx \
- fl_rounded_box.cxx \
- fl_set_font.cxx \
- fl_scroll_area.cxx \
- fl_shadow_box.cxx \
- fl_shortcut.cxx \
- fl_show_colormap.cxx \
- fl_string_functions.cxx \
- fl_symbols.cxx \
- fl_utf8.cxx \
- fl_vertex.cxx \
- print_button.cxx \
- screen_xywh.cxx
-
-OBJCPPFILES = \
- Fl_cocoa.mm \
- drivers/Cocoa/Fl_Cocoa_Printer_Driver.mm \
- Fl_Native_File_Chooser_MAC.mm \
- Fl_MacOS_Sys_Menu_Bar.mm
-
-FLCPPFILES = \
- forms_compatibility.cxx \
- forms_bitmap.cxx \
- forms_free.cxx \
- forms_fselect.cxx \
- forms_pixmap.cxx \
- forms_timer.cxx
-
-GLCPPFILES = \
- Fl_Gl_Choice.cxx \
- Fl_Gl_Overlay.cxx \
- Fl_Gl_Device_Plugin.cxx \
- Fl_Gl_Window.cxx \
- freeglut_geometry.cxx \
- freeglut_stroke_mono_roman.cxx \
- freeglut_stroke_roman.cxx \
- freeglut_teapot.cxx \
- gl_draw.cxx \
- gl_start.cxx \
- glut_compatibility.cxx \
- glut_font.cxx \
- drivers/OpenGL/Fl_OpenGL_Display_Device.cxx \
- drivers/OpenGL/Fl_OpenGL_Graphics_Driver_arci.cxx \
- drivers/OpenGL/Fl_OpenGL_Graphics_Driver_color.cxx \
- drivers/OpenGL/Fl_OpenGL_Graphics_Driver_font.cxx \
- drivers/OpenGL/Fl_OpenGL_Graphics_Driver_line_style.cxx \
- drivers/OpenGL/Fl_OpenGL_Graphics_Driver_rect.cxx \
- drivers/OpenGL/Fl_OpenGL_Graphics_Driver_vertex.cxx
-
-GLOBJCPPFILES = drivers/Cocoa/Fl_Cocoa_Gl_Window_Driver.mm
-GLCPPFILES_X11 = drivers/X11/Fl_X11_Gl_Window_Driver.cxx
-GLCPPFILES_XFT = $(GLCPPFILES_X11)
-GLCPPFILES_CAIRO = $(GLCPPFILES_X11)
-GLCPPFILES_WIN = drivers/WinAPI/Fl_WinAPI_Gl_Window_Driver.cxx
-GLCPPFILES_WAYLAND = drivers/Wayland/Fl_Wayland_Gl_Window_Driver.cxx
-GLCPPFILES_WAYLANDX11 = $(GLCPPFILES_WAYLAND) \
- drivers/X11/Fl_X11_Gl_Window_Driver.cxx
-
-GLCPPFILES += $(GLCPPFILES_$(BUILD))
-GLMMFILES_OSX = $(GLOBJCPPFILES)
-GLMMFILES = $(GLMMFILES_$(BUILD))
-
-# the following file currently doesn't contribute code to GLCPPFILES
-# drivers/OpenGL/Fl_OpenGL_Graphics_Driver.cxx
-
-IMGCPPFILES = \
- fl_images_core.cxx \
- fl_write_png.cxx \
- Fl_BMP_Image.cxx \
- Fl_File_Icon2.cxx \
- Fl_GIF_Image.cxx \
- Fl_Anim_GIF_Image.cxx \
- Fl_Help_Dialog.cxx \
- Fl_ICO_Image.cxx \
- Fl_JPEG_Image.cxx \
- Fl_PNG_Image.cxx \
- Fl_PNM_Image.cxx \
- Fl_Image_Reader.cxx \
- Fl_SVG_Image.cxx \
- nanosvg.cxx \
- drivers/SVG/Fl_SVG_File_Surface.cxx
-
-CFILES = flstring.c numericsort.c vsnprintf.c
-CFILES_WIN = fl_call_main.c
-
-UTF8CFILES = \
- xutf8/case.c \
- xutf8/is_right2left.c \
- xutf8/is_spacing.c
-
-QUARTZCPPFILES = \
- drivers/Quartz/Fl_Quartz_Graphics_Driver.cxx \
- drivers/Quartz/Fl_Quartz_Graphics_Driver_color.cxx \
- drivers/Quartz/Fl_Quartz_Graphics_Driver_rect.cxx \
- drivers/Quartz/Fl_Quartz_Graphics_Driver_font.cxx \
- drivers/Quartz/Fl_Quartz_Graphics_Driver_vertex.cxx \
- drivers/Quartz/Fl_Quartz_Graphics_Driver_image.cxx \
- drivers/Quartz/Fl_Quartz_Graphics_Driver_arci.cxx \
- drivers/Quartz/Fl_Quartz_Graphics_Driver_line_style.cxx \
- drivers/Quartz/Fl_Quartz_Copy_Surface_Driver.cxx \
- drivers/Quartz/Fl_Quartz_Image_Surface_Driver.cxx \
- drivers/Cocoa/Fl_Cocoa_Window_Driver.cxx \
- drivers/Cocoa/Fl_Cocoa_Screen_Driver.cxx \
- drivers/Posix/Fl_Posix_System_Driver.cxx \
- drivers/Darwin/Fl_Darwin_System_Driver.cxx \
- drivers/Darwin/fl_macOS_platform_init.cxx \
- Fl_get_key_mac.cxx
-
-# These C++ files are used under condition: BUILD_X11
-XLIBCPPFILES = \
- drivers/Xlib/Fl_Xlib_Copy_Surface_Driver.cxx \
- drivers/Xlib/Fl_Xlib_Image_Surface_Driver.cxx \
- drivers/X11/Fl_X11_Window_Driver.cxx \
- drivers/X11/Fl_X11_Screen_Driver.cxx \
- drivers/Posix/Fl_Posix_System_Driver.cxx \
- drivers/Unix/Fl_Unix_System_Driver.cxx \
- drivers/Unix/Fl_Unix_Screen_Driver.cxx \
- drivers/Posix/Fl_Posix_Printer_Driver.cxx \
- drivers/X11/fl_X11_platform_init.cxx \
- Fl_x.cxx \
- fl_dnd_x.cxx \
- Fl_Native_File_Chooser_FLTK.cxx \
- Fl_Native_File_Chooser_GTK.cxx\
- Fl_Native_File_Chooser_Kdialog.cxx \
- Fl_Native_File_Chooser_Zenity.cxx \
- Fl_get_key.cxx
-
-# These graphics driver files are used under condition: BUILD_CAIRO
-CAIROGDFILES = \
- drivers/Cairo/Fl_Cairo_Graphics_Driver.cxx \
- drivers/Cairo/Fl_X11_Cairo_Graphics_Driver.cxx
-
-# These graphics driver files are used under condition: BUILD_X11 AND BUILD_XFT
-XLIBGDFILES = drivers/Xlib/Fl_Xlib_Graphics_Driver.cxx \
- drivers/Xlib/Fl_Xlib_Graphics_Driver_arci.cxx \
- drivers/Xlib/Fl_Xlib_Graphics_Driver_color.cxx \
- drivers/Xlib/Fl_Xlib_Graphics_Driver_image.cxx \
- drivers/Xlib/Fl_Xlib_Graphics_Driver_line_style.cxx \
- drivers/Xlib/Fl_Xlib_Graphics_Driver_rect.cxx \
- drivers/Xlib/Fl_Xlib_Graphics_Driver_vertex.cxx
-
-# These C++ files are used under conditions: BUILD_WAYLAND or BUILD_WAYLANDX11
-WLCPPFILES = \
- drivers/Posix/Fl_Posix_Printer_Driver.cxx \
- Fl_Native_File_Chooser_FLTK.cxx \
- Fl_Native_File_Chooser_GTK.cxx \
- Fl_Native_File_Chooser_Kdialog.cxx \
- Fl_Native_File_Chooser_Zenity.cxx \
- drivers/Posix/Fl_Posix_System_Driver.cxx \
- drivers/Unix/Fl_Unix_System_Driver.cxx \
- drivers/Unix/Fl_Unix_Screen_Driver.cxx \
- drivers/Wayland/Fl_Wayland_Screen_Driver.cxx \
- drivers/Wayland/Fl_Wayland_Window_Driver.cxx \
- drivers/Wayland/Fl_Wayland_Image_Surface_Driver.cxx \
- drivers/Wayland/Fl_Wayland_Copy_Surface_Driver.cxx \
- drivers/Wayland/Fl_Wayland_Graphics_Driver.cxx \
- drivers/Wayland/fl_wayland_platform_init.cxx \
- drivers/Wayland/fl_wayland_clipboard_dnd.cxx
-
-# These C++ files are used under condition: BUILD_WAYLANDX11
-WLX11CPPFILES = \
- drivers/X11/Fl_X11_Screen_Driver.cxx \
- drivers/X11/Fl_X11_Window_Driver.cxx \
- drivers/Cairo/Fl_X11_Cairo_Graphics_Driver.cxx \
- drivers/Xlib/Fl_Xlib_Copy_Surface_Driver.cxx \
- drivers/Xlib/Fl_Xlib_Image_Surface_Driver.cxx \
- Fl_x.cxx \
- fl_dnd_x.cxx \
- Fl_get_key.cxx
-
-
-# fl_dnd_x.cxx Fl_Native_File_Chooser_GTK.cxx
-
-# This C file is used under condition: BUILD_X11
-XLIBCFILES = \
- xutf8/keysym2Ucs.c \
- scandir_posix.c
-
-# These C files are used under condition: BUILD_X11 AND NOT BUILD_XFT
-XLIBXCFILES = \
- xutf8/utf8Input.c \
- xutf8/utf8Utils.c \
- xutf8/utf8Wrap.c
-
-# These C++ files are used under condition: BUILD_X11 AND NOT BUILD_XFT
-XLIBFONTFILES = \
- drivers/Xlib/Fl_Xlib_Graphics_Driver_font_x.cxx
-
-# These C++ files are used under condition: BUILD_X11 AND BUILD_XFT
-XLIBXFTFILES = \
- drivers/Xlib/Fl_Xlib_Graphics_Driver_font_xft.cxx \
- drivers/Cairo/Fl_Cairo_Graphics_Driver.cxx
-
-# This C file is used under condition: BUILD_WAYLAND
-WLCFILES = \
- xutf8/keysym2Ucs.c \
- scandir_posix.c
-
-# These C++ files are used under conditions: BUILD_WAYLAND or BUILD_WAYLANDX11
-WLXFTFILES = \
- drivers/Cairo/Fl_Cairo_Graphics_Driver.cxx
-
-# These C++ files are used under condition: BUILD_GDI
-GDICPPFILES = \
- drivers/GDI/Fl_GDI_Graphics_Driver.cxx \
- drivers/GDI/Fl_GDI_Graphics_Driver_arci.cxx \
- drivers/GDI/Fl_GDI_Graphics_Driver_color.cxx \
- drivers/GDI/Fl_GDI_Graphics_Driver_font.cxx \
- drivers/GDI/Fl_GDI_Graphics_Driver_image.cxx \
- drivers/GDI/Fl_GDI_Graphics_Driver_line_style.cxx \
- drivers/GDI/Fl_GDI_Graphics_Driver_rect.cxx \
- drivers/GDI/Fl_GDI_Graphics_Driver_vertex.cxx \
- drivers/GDI/Fl_GDI_Copy_Surface_Driver.cxx \
- drivers/GDI/Fl_GDI_Image_Surface_Driver.cxx \
- drivers/WinAPI/Fl_WinAPI_Window_Driver.cxx \
- drivers/WinAPI/Fl_WinAPI_Screen_Driver.cxx \
- drivers/WinAPI/Fl_WinAPI_System_Driver.cxx \
- drivers/WinAPI/Fl_WinAPI_Printer_Driver.cxx \
- drivers/WinAPI/fl_WinAPI_platform_init.cxx \
- Fl_win32.cxx \
- fl_dnd_win32.cxx \
- Fl_Native_File_Chooser_WIN32.cxx \
- Fl_get_key_win32.cxx
-
-# These C files are used under condition: BUILD_GDI
-GDICFILES = \
- scandir_win32.c
-
-PSCPPFILES = \
- drivers/PostScript/Fl_PostScript.cxx \
- drivers/PostScript/Fl_PostScript_image.cxx
-
-################################################################
-FLTKFLAGS = -DFL_LIBRARY
-include ../makeinclude
-
-# makeinclude has set this variable:
-# BUILD = {WIN|X11|XFT|CAIRO|OSX|WAYLAND|WAYLANDX11}
-
-MMFILES_OSX = $(OBJCPPFILES)
-MMFILES = $(MMFILES_$(BUILD))
-
-CPPFILES += $(PSCPPFILES)
-CPPFILES_OSX = $(QUARTZCPPFILES)
-
-CPPFILES_XFT = $(XLIBCPPFILES) $(XLIBGDFILES) $(XLIBXFTFILES)
-CPPFILES_X11 = $(XLIBCPPFILES) $(XLIBGDFILES) $(XLIBFONTFILES)
-CPPFILES_CAIRO = $(XLIBCPPFILES) $(CAIROGDFILES)
-
-CPPFILES_WAYLAND = $(WLCPPFILES) $(WLXFTFILES)
-CPPFILES_WAYLANDX11 = $(CPPFILES_WAYLAND) $(WLX11CPPFILES)
-
-CPPFILES_WIN = $(GDICPPFILES)
-
-CPPFILES += $(CPPFILES_$(BUILD))
-
-
-CFILES_X11 = $(XLIBCFILES) $(XLIBXCFILES)
-CFILES_CAIRO = $(XLIBCFILES)
-CFILES_XFT = $(XLIBCFILES)
-
-CFILES_WAYLANDX11 = $(WLCFILES)
-EXTRA_OBJECTS_WAYLAND = ../libdecor/build/fl_libdecor.o ../libdecor/build/libdecor-cairo-blur.o \
- ../libdecor/build/fl_libdecor-plugins.o \
- xdg-decoration-protocol.o xdg-shell-protocol.o text-input-protocol.o \
- gtk-shell-protocol.o \
- ../libdecor/build/desktop-settings.o ../libdecor/build/os-compatibility.o
-EXTRA_OBJECTS_WAYLANDX11 = $(EXTRA_OBJECTS_WAYLAND)
-EXTRA_CXXFLAGS_WAYLAND = -I.
-EXTRA_CXXFLAGS_WAYLANDX11 = $(EXTRA_CXXFLAGS_WAYLAND)
-
-CFILES_WIN += $(GDICFILES)
-
-CFILES += $(CFILES_$(BUILD))
-CXXFLAGS += $(EXTRA_CXXFLAGS_$(BUILD))
-
-
-OBJECTS = $(MMFILES:.mm=.o) $(CPPFILES:.cxx=.o) $(CFILES:.c=.o) $(UTF8CFILES:.c=.o)
-OBJECTS += $(EXTRA_OBJECTS_$(BUILD))
-GLOBJECTS = $(GLCPPFILES:.cxx=.o) $(GLMMFILES:.mm=.o)
-FLOBJECTS = $(FLCPPFILES:.cxx=.o)
-IMGOBJECTS = $(IMGCPPFILES:.cxx=.o)
-
-all: $(LIBNAME) $(DSONAME) \
- $(FLLIBNAME) $(FLDSONAME) \
- $(GLLIBNAME) $(GLDSONAME) \
- $(IMGLIBNAME) $(IMGDSONAME)
-
-$(LIBNAME): $(OBJECTS)
- echo $(LIBCOMMAND) $@ ...
- $(RM) $@
- $(LIBCOMMAND) $@ $(OBJECTS)
- $(RANLIB) $@
-
-libfltk.so.$(FL_DSO_VERSION): $(OBJECTS)
- echo $(DSOCOMMAND) $@ ...
- $(DSOCOMMAND) $@ $(OBJECTS) $(LDFLAGS) $(LDLIBS) $(CAIROLIBS)
- $(RM) libfltk.so
- $(LN) libfltk.so.$(FL_DSO_VERSION) libfltk.so
-
-libfltk.sl.$(FL_DSO_VERSION): $(OBJECTS)
- echo $(DSOCOMMAND) $@ ...
- $(DSOCOMMAND) $@ $(OBJECTS)
- $(RM) libfltk.sl
- $(LN) libfltk.sl.$(FL_DSO_VERSION) libfltk.sl
-
-libfltk.$(FL_DSO_VERSION).dylib: $(OBJECTS)
- echo $(DSOCOMMAND) $@ ...
- $(DSOCOMMAND) $@ \
- -install_name $(libdir)/$@ \
- -current_version $(FL_VERSION) \
- -compatibility_version $(FL_DSO_VERSION).0 \
- $(OBJECTS) $(LDFLAGS) $(LDLIBS) $(CAIROLIBS)
- $(RM) libfltk.dylib
- $(LN) libfltk.$(FL_DSO_VERSION).dylib libfltk.dylib
-
-libfltk_s.a: $(OBJECTS)
- echo $(DSOCOMMAND) libfltk_s.o ...
- $(DSOCOMMAND) libfltk_s.o $(OBJECTS) $(IMAGELIBS)
- echo $(LIBCOMMAND) libfltk_s.a libfltk_s.o
- $(RM) $@
- $(LIBCOMMAND) libfltk_s.a libfltk_s.o
- $(CHMOD) +x libfltk_s.a
-
-$(FLLIBNAME): $(FLOBJECTS)
- echo $(LIBCOMMAND) $@ ...
- $(RM) $@
- $(LIBCOMMAND) $@ $(FLOBJECTS)
- $(RANLIB) $@
-
-libfltk_forms.so.$(FL_DSO_VERSION): $(FLOBJECTS) libfltk.so.$(FL_DSO_VERSION)
- echo $(DSOCOMMAND) $@ ...
- $(DSOCOMMAND) $@ $(FLOBJECTS) -L. -lfltk $(LDFLAGS) $(LDLIBS)
- $(RM) libfltk_forms.so
- $(LN) libfltk_forms.so.$(FL_DSO_VERSION) libfltk_forms.so
-
-libfltk_forms.sl.$(FL_DSO_VERSION): $(FLOBJECTS) libfltk.sl.$(FL_DSO_VERSION)
- echo $(DSOCOMMAND) $@ ...
- $(DSOCOMMAND) $@ $(FLOBJECTS) -L. -lfltk
- $(RM) libfltk_forms.sl
- $(LN) libfltk_forms.sl.$(FL_DSO_VERSION) libfltk_forms.sl
-
-libfltk_forms.$(FL_DSO_VERSION).dylib: $(FLOBJECTS) libfltk.$(FL_DSO_VERSION).dylib
- echo $(DSOCOMMAND) $@ ...
- $(DSOCOMMAND) $@ \
- -install_name $(libdir)/$@ \
- -current_version $(FL_VERSION) \
- -compatibility_version $(FL_ABI_VERSION) \
- $(FLOBJECTS) -L. $(LDFLAGS) $(LDLIBS) -lfltk
- $(RM) libfltk_forms.dylib
- $(LN) libfltk_forms.$(FL_DSO_VERSION).dylib libfltk_forms.dylib
-
-libfltk_forms_s.a: $(FLOBJECTS)
- echo $(DSOCOMMAND) libfltk_forms_s.o ...
- $(DSOCOMMAND) libfltk_forms_s.o $(FLOBJECTS)
- echo $(LIBCOMMAND) libfltk_forms_s.a libfltk_forms_s.o
- $(RM) $@
- $(LIBCOMMAND) libfltk_forms_s.a libfltk_forms_s.o
- $(CHMOD) +x libfltk_forms_s.a
-
-$(GLLIBNAME): $(GLOBJECTS)
- echo $(LIBCOMMAND) $@ ...
- $(RM) $@
- $(LIBCOMMAND) $@ $(GLOBJECTS)
- $(RANLIB) $@
-
-libfltk_gl.so.$(FL_DSO_VERSION): $(GLOBJECTS) libfltk.so.$(FL_DSO_VERSION)
- echo $(DSOCOMMAND) $@ ...
- $(DSOCOMMAND) $@ $(GLOBJECTS) -L. -lfltk $(LDFLAGS) $(LDLIBS) $(GLDLIBS)
- $(RM) libfltk_gl.so
- $(LN) libfltk_gl.so.$(FL_DSO_VERSION) libfltk_gl.so
-
-libfltk_gl.sl.$(FL_DSO_VERSION): $(GLOBJECTS) libfltk.sl.$(FL_DSO_VERSION)
- echo $(DSOCOMMAND) $@ ...
- $(DSOCOMMAND) $@ $(GLOBJECTS) -L. -lfltk
- $(RM) libfltk_gl.sl
- $(LN) libfltk_gl.sl.$(FL_DSO_VERSION) libfltk_gl.sl
-
-libfltk_gl.$(FL_DSO_VERSION).dylib: $(GLOBJECTS) libfltk.$(FL_DSO_VERSION).dylib
- echo $(DSOCOMMAND) $@ ...
- $(DSOCOMMAND) $@ \
- -install_name $(libdir)/$@ \
- -current_version $(FL_VERSION) \
- -compatibility_version $(FL_ABI_VERSION) \
- $(GLOBJECTS) -L. $(GLDLIBS) -lfltk
- $(RM) libfltk_gl.dylib
- $(LN) libfltk_gl.$(FL_DSO_VERSION).dylib libfltk_gl.dylib
-
-libfltk_gl_s.a: $(GLOBJECTS)
- echo $(DSOCOMMAND) libfltk_gl_s.o ...
- $(DSOCOMMAND) libfltk_gl_s.o $(GLOBJECTS)
- echo $(LIBCOMMAND) libfltk_gl_s.a libfltk_gl_s.o
- $(RM) $@
- $(LIBCOMMAND) libfltk_gl_s.a libfltk_gl_s.o
- $(CHMOD) +x libfltk_gl_s.a
-
-$(IMGLIBNAME): $(IMGOBJECTS)
- echo $(LIBCOMMAND) $@ ...
- $(RM) $@
- $(LIBCOMMAND) $@ $(IMGOBJECTS)
- $(RANLIB) $@
-
-libfltk_images.so.$(FL_DSO_VERSION): $(IMGOBJECTS) libfltk.so.$(FL_DSO_VERSION)
- echo $(DSOCOMMAND) $@ ...
- $(DSOCOMMAND) $@ $(IMGOBJECTS) -L. $(IMAGELIBS) -lfltk $(LDFLAGS) $(LDLIBS)
- $(RM) libfltk_images.so
- $(LN) libfltk_images.so.$(FL_DSO_VERSION) libfltk_images.so
-
-libfltk_images.sl.$(FL_DSO_VERSION): $(IMGOBJECTS) libfltk.sl.$(FL_DSO_VERSION)
- echo $(DSOCOMMAND) $@ ...
- $(DSOCOMMAND) $@ $(IMGOBJECTS) -L. $(IMAGELIBS) -lfltk
- $(RM) libfltk_images.sl
- $(LN) libfltk_images.sl.$(FL_DSO_VERSION) libfltk_images.sl
-
-libfltk_images.$(FL_DSO_VERSION).dylib: $(IMGOBJECTS) libfltk.$(FL_DSO_VERSION).dylib
- echo $(DSOCOMMAND) $@ ...
- $(DSOCOMMAND) $@ \
- -install_name $(libdir)/$@ \
- -current_version $(FL_VERSION) \
- -compatibility_version $(FL_ABI_VERSION) \
- $(IMGOBJECTS) -L. $(LDFLAGS) $(LDLIBS) $(IMAGELIBS) -lfltk
- $(RM) libfltk_images.dylib
- $(LN) libfltk_images.$(FL_DSO_VERSION).dylib libfltk_images.dylib
-
-libfltk_images_s.a: $(IMGOBJECTS)
- echo $(DSOCOMMAND) libfltk_images_s.o ...
- $(DSOCOMMAND) libfltk_images_s.o $(IMGOBJECTS)
- echo $(LIBCOMMAND) libfltk_images_s.a libfltk_images_s.o
- $(RM) $@
- $(LIBCOMMAND) libfltk_images_s.a libfltk_images_s.o
- $(CHMOD) +x libfltk_images_s.a
-
-#-----------------------------------------------------------------
-# - the import libraries libfltk*.dll.a and the .dll files
-# are created from the libfltk*.a files. They are built
-# into the src dir.
-# - The _images, _gl, _forms and dlls must be linked
-# against the import libraries in the src dir.
-#-----------------------------------------------------------------
-
-#-----------------------------------------------------------------
-# cygwin GDI shared libraries
-#-----------------------------------------------------------------
-
-cygfltknox-$(FL_DSO_VERSION).dll: $(LIBNAME)
- echo $(DSOCOMMAND) $(LIBNAME) ...
- $(DSOCOMMAND) $(LIBNAME) -Wl,--no-whole-archive \
- -Wl,--out-implib=libfltk.dll.a $(LDLIBS)
-
-cygfltknox_forms-$(FL_DSO_VERSION).dll: $(FLLIBNAME) cygfltknox-$(FL_DSO_VERSION).dll
- echo $(DSOCOMMAND) $(FLLIBNAME) ...
- $(DSOCOMMAND) $(FLLIBNAME) -Wl,--no-whole-archive \
- -Wl,--out-implib=libfltk_forms.dll.a \
- -L. -lfltk $(LDLIBS)
-
-cygfltknox_gl-$(FL_DSO_VERSION).dll: $(GLLIBNAME) cygfltknox-$(FL_DSO_VERSION).dll
- echo $(DSOCOMMAND) $(GLLIBNAME) ...
- $(DSOCOMMAND) $(GLLIBNAME) -Wl,--no-whole-archive \
- -Wl,--out-implib=libfltk_gl.dll.a \
- -L. -lfltk $(GLDLIBS)
-
-cygfltknox_images-$(FL_DSO_VERSION).dll: $(IMGLIBNAME) cygfltknox-$(FL_DSO_VERSION).dll
- echo $(DSOCOMMAND) $(IMGLIBNAME) ...
- $(DSOCOMMAND) $(IMGLIBNAME) -Wl,--no-whole-archive \
- -Wl,--out-implib=libfltk_images.dll.a \
- -L. -lfltk -Wl,--exclude-libs -Wl,libfltk_png.a \
- $(IMAGELIBS) $(LDLIBS)
-
-#-----------------------------------------------------------------
-# cygwin X11 shared libraries
-#-----------------------------------------------------------------
-
-cygfltk-$(FL_DSO_VERSION).dll: $(LIBNAME)
- echo $(DSOCOMMAND) $(LIBNAME) ...
- $(DSOCOMMAND) $(LIBNAME) -Wl,--no-whole-archive \
- -Wl,--out-implib=libfltk.dll.a $(LDLIBS)
-
-cygfltk_forms-$(FL_DSO_VERSION).dll: $(FLLIBNAME) cygfltk-$(FL_DSO_VERSION).dll
- echo $(DSOCOMMAND) $(FLLIBNAME) ...
- $(DSOCOMMAND) $(FLLIBNAME) -Wl,--no-whole-archive \
- -Wl,--out-implib=libfltk_forms.dll.a \
- -L. -lfltk $(LDLIBS)
-
-cygfltk_gl-$(FL_DSO_VERSION).dll: $(GLLIBNAME) cygfltk-$(FL_DSO_VERSION).dll
- echo $(DSOCOMMAND) $(GLLIBNAME) ...
- $(DSOCOMMAND) $(GLLIBNAME) -Wl,--no-whole-archive \
- -Wl,--out-implib=libfltk_gl.dll.a \
- -L. -lfltk $(GLDLIBS)
-
-cygfltk_images-$(FL_DSO_VERSION).dll: $(IMGLIBNAME) cygfltk-$(FL_DSO_VERSION).dll
- echo $(DSOCOMMAND) $(IMGLIBNAME) ...
- $(DSOCOMMAND) $(IMGLIBNAME) -Wl,--no-whole-archive \
- -Wl,--out-implib=libfltk_images.dll.a \
- -L. -lfltk -Wl,--exclude-libs -Wl,libfltk_png.a \
- $(IMAGELIBS) $(LDLIBS)
-
-mgwfltknox-$(FL_DSO_VERSION).dll: $(LIBNAME)
- echo $(DSOCOMMAND) $(LIBNAME) ...
- $(DSOCOMMAND) $(LIBNAME) -Wl,--no-whole-archive \
- -Wl,--out-implib=libfltk.dll.a $(LDLIBS)
-
-mgwfltknox_forms-$(FL_DSO_VERSION).dll: $(FLLIBNAME) mgwfltknox-$(FL_DSO_VERSION).dll
- echo $(DSOCOMMAND) $(FLLIBNAME) ...
- $(DSOCOMMAND) $(FLLIBNAME) -Wl,--no-whole-archive \
- -Wl,--out-implib=libfltk_forms.dll.a \
- -L. -lfltk $(LDLIBS)
-
-mgwfltknox_gl-$(FL_DSO_VERSION).dll: $(GLLIBNAME) mgwfltknox-$(FL_DSO_VERSION).dll
- echo $(DSOCOMMAND) $(GLLIBNAME) ...
- $(DSOCOMMAND) $(GLLIBNAME) -Wl,--no-whole-archive \
- -Wl,--out-implib=libfltk_gl.dll.a \
- -L. -lfltk $(GLDLIBS)
-
-#-----------------------------------------------------
-# See STR #1585 for --exclude-libs
-#-----------------------------------------------------
-
-mgwfltknox_images-$(FL_DSO_VERSION).dll: $(IMGLIBNAME) mgwfltknox-$(FL_DSO_VERSION).dll
- echo $(DSOCOMMAND) $(IMGLIBNAME) ...
- $(DSOCOMMAND) $(IMGLIBNAME) -Wl,--no-whole-archive \
- -Wl,--out-implib=libfltk_images.dll.a \
- -L. -lfltk -Wl,--exclude-libs -Wl,libfltk_png.a \
- $(IMAGELIBS) $(LDLIBS)
-
-# Note: The rebuild target can only be used if you have the original .fl
-# files. This is normally only used by the FLTK maintainers...
-# It *must* be executed *after* fluid has been built and
-# the libs must be rebuilt if any {.fl|.cxx|.h} files were changed.
-
-rebuild:
- echo 'Rebuilding fluid (.fl) and .cxx/.h files from .fl files ...'
- ../fluid/fluid$(EXEEXT) -u -c Fl_File_Chooser.fl
- ../fluid/fluid$(EXEEXT) -u -c Fl_Help_Dialog.fl
-
-clean:
- -$(RM) *.o xutf8/*.o *.dll.a core.* *~ *.bak *.bck
- -$(RM) drivers/Cairo/*.o
- -$(RM) drivers/Cocoa/*.o
- -$(RM) drivers/Darwin/*.o
- -$(RM) drivers/GDI/*.o
- -$(RM) drivers/OpenGL/*.o
- -$(RM) drivers/Posix/*.o
- -$(RM) drivers/PostScript/*.o
- -$(RM) drivers/Quartz/*.o
- -$(RM) drivers/SVG/*.o
- -$(RM) drivers/Unix/*.o
- -$(RM) drivers/WinAPI/*.o
- -$(RM) drivers/X11/*.o
- -$(RM) drivers/Xlib/*.o
- -$(RM) drivers/Wayland/*.o
- -$(RM) $(DSONAME) $(FLDSONAME) $(GLDSONAME) $(IMGDSONAME) \
- $(LIBNAME) $(FLLIBNAME) $(GLLIBNAME) \
- $(IMGLIBNAME) \
- libfltk.so libfltk_forms.so libfltk_gl.so libfltk_images.so \
- libfltk.sl libfltk_forms.sl libfltk_gl.sl libfltk_images.sl \
- libfltk.dylib libfltk_forms.dylib \
- libfltk_gl.dylib libfltk_images.dylib \
- cmap core
-
-depend: $(CPPFILES) $(MMFILES) $(FLCPPFILES) $(GLCPPFILES) $(IMGCPPFILES) $(CFILES) $(UTF8CFILES) $(XLIBCFILES)
- makedepend -Y -I.. -f makedepend -w 20 $(CPPFILES) $(MMFILES) $(FLCPPFILES) \
- $(GLCPPFILES) $(IMGCPPFILES) $(CFILES) $(UTF8CFILES) $(XLIBCFILES)
- echo "# DO NOT DELETE THIS LINE -- make depend depends on it." > makedepend.tmp
- echo "" >> makedepend.tmp
- grep '^[a-zA-Z]' makedepend | ( LC_ALL=C sort -u -f >> makedepend.tmp; )
- mv makedepend.tmp makedepend
-
-# Automatically generated dependencies... generated on a Linux/Unix host !
-include makedepend
-
-# These dependencies aren't part of the makedepend file since
-# they are part of the Windows and MacOS code base...
-# Please add only non-Linux/Unix files or such that are optional
-# (like "*non-Xft*") here:
-Fl_get_key_mac.o: Fl_get_key_mac.cxx
-Fl_get_key_win32.o: Fl_get_key_win32.cxx
-scandir_win32.o: scandir_win32.c
-Fl_Native_File_Chooser_WIN32.o: Fl_Native_File_Chooser_WIN32.cxx
-Fl_Native_File_Chooser_MAC.o: Fl_Native_File_Chooser_MAC.mm
-Fl_Native_File_Chooser_FLTK.o: Fl_Native_File_Chooser_FLTK.cxx
-Fl_Native_File_Chooser_GTK.o: Fl_Native_File_Chooser_GTK.cxx
-Fl_win32.o: Fl_win32.cxx
-Fl_cocoa.o: Fl_cocoa.mm
-fl_color.o:
-fl_dnd_win32.o: fl_dnd_win32.cxx
-fl_dnd_x.o: fl_dnd_x.cxx
-Fl_Printer.o: ../src/drivers/PostScript/Fl_PostScript.cxx
-Fl_Quartz_Printer.o: Fl_Quartz_Printer.mm
-fl_arci.o: ../FL/mac.H ../FL/win32.H
-Fl_arg.o: ../FL/mac.H ../FL/win32.H
-fl_ask.o: ../FL/mac.H ../FL/win32.H
-Fl_Bitmap.o: ../FL/mac.H ../FL/win32.H
-fl_color.o: ../FL/mac.H ../FL/win32.H
-fl_cursor.o: ../FL/mac.H ../FL/win32.H
-Fl_Double_Window.o: ../FL/mac.H ../FL/win32.H
-fl_draw_image.o: ../FL/mac.H ../FL/win32.H
-fl_draw_pixmap.o: ../FL/mac.H ../FL/win32.H
-fl_encoding_latin1.o: ../FL/mac.H ../FL/win32.H
-fl_encoding_mac_roman.o: ../FL/mac.H ../FL/win32.H
-Fl_File_Chooser2.o: ../FL/mac.H ../FL/win32.H
-fl_font.o: ../FL/mac.H ../FL/win32.H
-Fl_get_system_colors.o: ../FL/mac.H ../FL/win32.H
-Fl_Gl_Choice.o: ../FL/mac.H ../FL/win32.H
-Fl_Gl_Overlay.o: ../FL/mac.H ../FL/win32.H
-Fl_Gl_Window.o: ../FL/mac.H ../FL/win32.H
-Fl_grab.o: ../FL/mac.H ../FL/win32.H
-Fl_Image.o: ../FL/mac.H ../FL/win32.H
-fl_line_style.o: ../FL/mac.H ../FL/win32.H
-Fl_Menu_Window.o: ../FL/mac.H ../FL/win32.H
-fl_overlay.o: ../FL/mac.H ../FL/win32.H
-Fl_Overlay_Window.o: ../FL/mac.H ../FL/win32.H
-Fl_own_colormap.o: ../FL/mac.H ../FL/win32.H
-Fl_Pixmap.o: ../FL/mac.H ../FL/win32.H
-Fl_Printer.o: ../FL/mac.H ../FL/win32.H
-fl_rect.o: ../FL/mac.H ../FL/win32.H
-fl_scroll_area.o: ../FL/mac.H ../FL/win32.H
-fl_set_font.o: ../FL/mac.H ../FL/win32.H
-fl_set_fonts.o: ../FL/mac.H ../FL/win32.H
-fl_shortcut.o: ../FL/mac.H ../FL/win32.H
-fl_vertex.o: ../FL/mac.H ../FL/win32.H
-Fl_visual.o: ../FL/mac.H ../FL/win32.H
-Fl_Window_fullscreen.o: ../FL/mac.H ../FL/win32.H
-Fl_Window_iconize.o: ../FL/mac.H ../FL/win32.H
-gl_draw.o: ../FL/mac.H ../FL/win32.H
-gl_start.o: ../FL/mac.H ../FL/win32.H
-# these additional dependencies are for non-Xft builds on Linux/Unix
-drivers/X11/Fl_X11_Screen_Driver.o: Xutf8.h
-drivers/Xlib/Fl_Xlib_Graphics_Driver_font_x.o: ../config.h
-drivers/Xlib/Fl_Xlib_Graphics_Driver_font_x.o: drivers/Xlib/Fl_Font.H
-drivers/Xlib/Fl_Xlib_Graphics_Driver_font_x.o: drivers/Xlib/Fl_Xlib_Graphics_Driver.H
-drivers/Xlib/Fl_Xlib_Graphics_Driver_font_x.o: ../FL/fl_config.h
-drivers/Xlib/Fl_Xlib_Graphics_Driver_font_x.o: ../FL/Enumerations.H
-drivers/Xlib/Fl_Xlib_Graphics_Driver_font_x.o: ../FL/Fl_Bitmap.H
-drivers/Xlib/Fl_Xlib_Graphics_Driver_font_x.o: ../FL/Fl_Device.H
-drivers/Xlib/Fl_Xlib_Graphics_Driver_font_x.o: ../FL/fl_draw.H
-drivers/Xlib/Fl_Xlib_Graphics_Driver_font_x.o: ../FL/Fl_Export.H
-drivers/Xlib/Fl_Xlib_Graphics_Driver_font_x.o: ../FL/Fl_Graphics_Driver.H
-drivers/Xlib/Fl_Xlib_Graphics_Driver_font_x.o: ../FL/Fl.H
-drivers/Xlib/Fl_Xlib_Graphics_Driver_font_x.o: ../FL/Fl_Image.H
-drivers/Xlib/Fl_Xlib_Graphics_Driver_font_x.o: ../FL/Fl_Pixmap.H
-drivers/Xlib/Fl_Xlib_Graphics_Driver_font_x.o: ../FL/Fl_Plugin.H
-drivers/Xlib/Fl_Xlib_Graphics_Driver_font_x.o: ../FL/Fl_Preferences.H
-drivers/Xlib/Fl_Xlib_Graphics_Driver_font_x.o: ../FL/Fl_RGB_Image.H
-drivers/Xlib/Fl_Xlib_Graphics_Driver_font_x.o: ../FL/fl_types.h
-drivers/Xlib/Fl_Xlib_Graphics_Driver_font_x.o: ../FL/fl_utf8.h
-drivers/Xlib/Fl_Xlib_Graphics_Driver_font_x.o: ../FL/Fl_Widget.H
-drivers/Xlib/Fl_Xlib_Graphics_Driver_font_x.o: ../FL/platform.H
-drivers/Xlib/Fl_Xlib_Graphics_Driver_font_x.o: ../FL/platform_types.h
-drivers/Xlib/Fl_Xlib_Graphics_Driver_font_x.o: flstring.h
-drivers/Xlib/Fl_Xlib_Graphics_Driver_font_x.o: Xutf8.h
-drivers/Xlib/Fl_Xlib_Graphics_Driver.o: Xutf8.h
-gl_draw.o: Xutf8.h
-xutf8/utf8Utils.o: ../FL/Fl_Export.H
-xutf8/utf8Utils.o: Xutf8.h
-xutf8/utf8Wrap.o: ../FL/Fl_Export.H
-xutf8/utf8Wrap.o: utf8_internal.h
-xutf8/utf8Wrap.o: Xutf8.h
-xutf8/utf8Wrap.o: xutf8/headers/dingbats_.h
-xutf8/utf8Wrap.o: xutf8/headers/symbol_.h
-xutf8/utf8Wrap.o: xutf8/lcUniConv/big5.h
-xutf8/utf8Wrap.o: xutf8/lcUniConv/cp1251.h
-xutf8/utf8Wrap.o: xutf8/lcUniConv/cp936ext.h
-xutf8/utf8Wrap.o: xutf8/lcUniConv/gb2312.h
-xutf8/utf8Wrap.o: xutf8/lcUniConv/iso8859_10.h
-xutf8/utf8Wrap.o: xutf8/lcUniConv/iso8859_11.h
-xutf8/utf8Wrap.o: xutf8/lcUniConv/iso8859_13.h
-xutf8/utf8Wrap.o: xutf8/lcUniConv/iso8859_14.h
-xutf8/utf8Wrap.o: xutf8/lcUniConv/iso8859_15.h
-xutf8/utf8Wrap.o: xutf8/lcUniConv/iso8859_2.h
-xutf8/utf8Wrap.o: xutf8/lcUniConv/iso8859_3.h
-xutf8/utf8Wrap.o: xutf8/lcUniConv/iso8859_4.h
-xutf8/utf8Wrap.o: xutf8/lcUniConv/iso8859_5.h
-xutf8/utf8Wrap.o: xutf8/lcUniConv/iso8859_6.h
-xutf8/utf8Wrap.o: xutf8/lcUniConv/iso8859_7.h
-xutf8/utf8Wrap.o: xutf8/lcUniConv/iso8859_8.h
-xutf8/utf8Wrap.o: xutf8/lcUniConv/iso8859_9.h
-xutf8/utf8Wrap.o: xutf8/lcUniConv/jisx0201.h
-xutf8/utf8Wrap.o: xutf8/lcUniConv/jisx0208.h
-xutf8/utf8Wrap.o: xutf8/lcUniConv/jisx0212.h
-xutf8/utf8Wrap.o: xutf8/lcUniConv/koi8_r.h
-xutf8/utf8Wrap.o: xutf8/lcUniConv/koi8_u.h
-xutf8/utf8Wrap.o: xutf8/lcUniConv/ksc5601.h
-xutf8/utf8Wrap.o: xutf8/ucs2fontmap.c
-
-################################################################
-
-install: $(LIBNAME) $(DSONAME) \
- $(FLLIBNAME) $(FLDSONAME) \
- $(GLLIBNAME) $(GLDSONAME) \
- $(IMGLIBNAME) $(IMGDSONAME)
- echo "Installing libraries in $(DESTDIR)$(libdir)..."
- -$(INSTALL_DIR) "$(DESTDIR)$(libdir)"
- -$(INSTALL_DIR) "$(DESTDIR)$(bindir)"
- $(RM) "$(DESTDIR)$(libdir)/$(LIBBASENAME)"
- $(INSTALL_LIB) $(LIBNAME) "$(DESTDIR)$(libdir)"
- $(INSTALL_LIB) $(FLLIBNAME) "$(DESTDIR)$(libdir)"
- $(INSTALL_LIB) $(IMGLIBNAME) "$(DESTDIR)$(libdir)"
- $(RANLIB) "$(DESTDIR)$(libdir)/$(LIBBASENAME)"
- $(RANLIB) "$(DESTDIR)$(libdir)/$(FLLIBBASENAME)"
- if test x$(GLLIBNAME) != x; then \
- $(INSTALL_LIB) $(GLLIBNAME) "$(DESTDIR)$(libdir)"; \
- $(RANLIB) "$(DESTDIR)$(libdir)/$(GLLIBBASENAME)"; \
- fi
- $(RANLIB) "$(DESTDIR)$(libdir)/$(IMGLIBBASENAME)"
- if test x$(DSONAME) = xlibfltk.so.$(FL_DSO_VERSION); then\
- $(RM) "$(DESTDIR)$(libdir)"/libfltk.so*;\
- $(INSTALL_LIB) libfltk.so.$(FL_DSO_VERSION) "$(DESTDIR)$(libdir)"; \
- $(LN) libfltk.so.$(FL_DSO_VERSION) "$(DESTDIR)$(libdir)/libfltk.so";\
- fi
- if test x$(DSONAME) = xlibfltk.sl.$(FL_DSO_VERSION); then\
- $(RM) "$(DESTDIR)$(libdir)"/libfltk.sl*;\
- $(INSTALL_LIB) libfltk.sl.$(FL_DSO_VERSION) "$(DESTDIR)$(libdir)"; \
- $(LN) libfltk.sl.$(FL_DSO_VERSION) "$(DESTDIR)$(libdir)/libfltk.sl";\
- fi
- if test x$(DSONAME) = xlibfltk.$(FL_DSO_VERSION).dylib; then\
- $(RM) "$(DESTDIR)$(libdir)"/libfltk.*dylib;\
- $(INSTALL_LIB) libfltk.$(FL_DSO_VERSION).dylib "$(DESTDIR)$(libdir)"; \
- $(LN) libfltk.$(FL_DSO_VERSION).dylib "$(DESTDIR)$(libdir)/libfltk.dylib";\
- fi
- if test x$(DSONAME) = xlibfltk_s.a; then\
- $(RM) "$(DESTDIR)$(libdir)/libfltk_s.a";\
- $(INSTALL_LIB) libfltk_s.a "$(DESTDIR)$(libdir)"; \
- fi
- if test x$(DSONAME) = xcygfltknox-$(FL_DSO_VERSION).dll; then\
- $(RM) "$(DESTDIR)$(bindir)/$(DSONAME)";\
- $(INSTALL_LIB) $(DSONAME) "$(DESTDIR)$(bindir)"; \
- $(RM) "$(DESTDIR)$(libdir)/libfltk.dll.a";\
- $(INSTALL_LIB) libfltk.dll.a "$(DESTDIR)$(libdir)"; \
- fi
- if test x$(DSONAME) = xmgwfltknox-$(FL_DSO_VERSION).dll; then\
- $(RM) "$(DESTDIR)$(bindir)/$(DSONAME)";\
- $(INSTALL_LIB) $(DSONAME) "$(DESTDIR)$(bindir)"; \
- $(RM) "$(DESTDIR)$(libdir)/libfltk.dll.a";\
- $(INSTALL_LIB) libfltk.dll.a "$(DESTDIR)$(libdir)"; \
- fi
- if test x$(FLDSONAME) = xlibfltk_forms.so.$(FL_DSO_VERSION); then\
- $(RM) "$(DESTDIR)$(libdir)"/libfltk_forms.so*;\
- $(INSTALL_LIB) libfltk_forms.so.$(FL_DSO_VERSION) "$(DESTDIR)$(libdir)"; \
- $(LN) libfltk_forms.so.$(FL_DSO_VERSION) "$(DESTDIR)$(libdir)/libfltk_forms.so";\
- fi
- if test x$(FLDSONAME) = xlibfltk_forms.sl.$(FL_DSO_VERSION); then\
- $(RM) "$(DESTDIR)$(libdir)"/libfltk_forms.sl*;\
- $(INSTALL_LIB) libfltk_forms.sl.$(FL_DSO_VERSION) "$(DESTDIR)$(libdir)"; \
- $(LN) libfltk_forms.sl.$(FL_DSO_VERSION) "$(DESTDIR)$(libdir)/libfltk_forms.sl";\
- fi
- if test x$(FLDSONAME) = xlibfltk_forms.$(FL_DSO_VERSION).dylib; then\
- $(RM) "$(DESTDIR)$(libdir)"/libfltk_forms.*dylib;\
- $(INSTALL_LIB) libfltk_forms.$(FL_DSO_VERSION).dylib "$(DESTDIR)$(libdir)"; \
- $(LN) libfltk_forms.$(FL_DSO_VERSION).dylib "$(DESTDIR)$(libdir)/libfltk_forms.dylib";\
- fi
- if test x$(FLDSONAME) = xlibfltk_forms_s.a; then\
- $(RM) "$(DESTDIR)$(libdir)/libfltk_forms_s.a";\
- $(INSTALL_LIB) libfltk_forms_s.a "$(DESTDIR)$(libdir)"; \
- fi
- if test x$(FLDSONAME) = xcygfltknox_forms-$(FL_DSO_VERSION).dll; then\
- $(RM) "$(DESTDIR)$(bindir)/$(FLDSONAME)";\
- $(INSTALL_LIB) $(FLDSONAME) "$(DESTDIR)$(bindir)"; \
- $(RM) "$(DESTDIR)$(libdir)/libfltk_forms.dll.a";\
- $(INSTALL_LIB) libfltk_forms.dll.a "$(DESTDIR)$(libdir)"; \
- fi
- if test x$(FLDSONAME) = xmgwfltknox_forms-$(FL_DSO_VERSION).dll; then\
- $(RM) "$(DESTDIR)$(bindir)/$(FLDSONAME)";\
- $(INSTALL_LIB) $(FLDSONAME) "$(DESTDIR)$(bindir)"; \
- $(RM) "$(DESTDIR)$(libdir)/libfltk_forms.dll.a";\
- $(INSTALL_LIB) libfltk_forms.dll.a "$(DESTDIR)$(libdir)"; \
- fi
- if test x$(GLDSONAME) = xlibfltk_gl.so.$(FL_DSO_VERSION); then\
- $(RM) "$(DESTDIR)$(libdir)"/libfltk_gl.so*;\
- $(INSTALL_LIB) libfltk_gl.so.$(FL_DSO_VERSION) "$(DESTDIR)$(libdir)"; \
- $(LN) libfltk_gl.so.$(FL_DSO_VERSION) "$(DESTDIR)$(libdir)/libfltk_gl.so";\
- fi
- if test x$(GLDSONAME) = xlibfltk_gl.sl.$(FL_DSO_VERSION); then\
- $(RM) "$(DESTDIR)$(libdir)"/libfltk_gl.sl*;\
- $(INSTALL_LIB) libfltk_gl.sl.$(FL_DSO_VERSION) "$(DESTDIR)$(libdir)"; \
- $(LN) libfltk_gl.sl.$(FL_DSO_VERSION) "$(DESTDIR)$(libdir)/libfltk_gl.sl";\
- fi
- if test x$(GLDSONAME) = xlibfltk_gl.$(FL_DSO_VERSION).dylib; then\
- $(RM) "$(DESTDIR)$(libdir)"/libfltk_gl.*dylib;\
- $(INSTALL_LIB) libfltk_gl.$(FL_DSO_VERSION).dylib "$(DESTDIR)$(libdir)"; \
- $(LN) libfltk_gl.$(FL_DSO_VERSION).dylib "$(DESTDIR)$(libdir)/libfltk_gl.dylib";\
- fi
- if test x$(GLDSONAME) = xlibfltk_gl_s.a; then\
- $(RM) "$(DESTDIR)$(libdir)/libfltk_gl_s.a";\
- $(INSTALL_LIB) libfltk_gl_s.a "$(DESTDIR)$(libdir)"; \
- fi
- if test x$(GLDSONAME) = xcygfltknox_gl-$(FL_DSO_VERSION).dll; then\
- $(RM) "$(DESTDIR)$(bindir)/$(GLDSONAME)";\
- $(INSTALL_LIB) $(GLDSONAME) "$(DESTDIR)$(bindir)"; \
- $(RM) "$(DESTDIR)$(libdir)/libfltk_gl.dll.a";\
- $(INSTALL_LIB) libfltk_gl.dll.a "$(DESTDIR)$(libdir)"; \
- fi
- if test x$(GLDSONAME) = xmgwfltknox_gl-$(FL_DSO_VERSION).dll; then\
- $(RM) "$(DESTDIR)$(bindir)/$(GLDSONAME)";\
- $(INSTALL_LIB) $(GLDSONAME) "$(DESTDIR)$(bindir)"; \
- $(RM) "$(DESTDIR)$(libdir)/libfltk_gl.dll.a";\
- $(INSTALL_LIB) libfltk_gl.dll.a "$(DESTDIR)$(libdir)"; \
- fi
- if test x$(IMGDSONAME) = xlibfltk_images.so.$(FL_DSO_VERSION); then\
- $(RM) "$(DESTDIR)$(libdir)"/libfltk_images.so*;\
- $(INSTALL_LIB) libfltk_images.so.$(FL_DSO_VERSION) "$(DESTDIR)$(libdir)"; \
- $(LN) libfltk_images.so.$(FL_DSO_VERSION) "$(DESTDIR)$(libdir)/libfltk_images.so";\
- fi
- if test x$(IMGDSONAME) = xlibfltk_images.sl.$(FL_DSO_VERSION); then\
- $(RM) "$(DESTDIR)$(libdir)"/libfltk_images.sl*;\
- $(INSTALL_LIB) libfltk_images.sl.$(FL_DSO_VERSION) "$(DESTDIR)$(libdir)"; \
- $(LN) libfltk_images.sl.$(FL_DSO_VERSION) "$(DESTDIR)$(libdir)/libfltk_images.sl";\
- fi
- if test x$(IMGDSONAME) = xlibfltk_images.$(FL_DSO_VERSION).dylib; then\
- $(RM) "$(DESTDIR)$(libdir)"/libfltk_images.*dylib;\
- $(INSTALL_LIB) libfltk_images.$(FL_DSO_VERSION).dylib "$(DESTDIR)$(libdir)"; \
- $(LN) libfltk_images.$(FL_DSO_VERSION).dylib "$(DESTDIR)$(libdir)/libfltk_images.dylib";\
- fi
- if test x$(IMGDSONAME) = xlibfltk_images_s.a; then\
- $(RM) "$(DESTDIR)$(libdir)/libfltk_images_s.a";\
- $(INSTALL_LIB) libfltk_images_s.a "$(DESTDIR)$(libdir)"; \
- fi
- if test x$(IMGDSONAME) = xcygfltknox_images-$(FL_DSO_VERSION).dll; then\
- $(RM) "$(DESTDIR)$(bindir)/$(IMGDSONAME)"; \
- $(INSTALL_LIB) $(IMGDSONAME) "$(DESTDIR)$(bindir)"; \
- $(RM) "$(DESTDIR)$(libdir)/libfltk_images.dll.a";\
- $(INSTALL_LIB) libfltk_images.dll.a "$(DESTDIR)$(libdir)"; \
- fi
- if test x$(IMGDSONAME) = xmgwfltknox_images-$(FL_DSO_VERSION).dll; then\
- $(RM) "$(DESTDIR)$(bindir)/$(IMGDSONAME)"; \
- $(INSTALL_LIB) $(IMGDSONAME) "$(DESTDIR)$(bindir)"; \
- $(RM) "$(DESTDIR)$(libdir)/libfltk_images.dll.a";\
- $(INSTALL_LIB) libfltk_images.dll.a "$(DESTDIR)$(libdir)"; \
- fi
-
-
-uninstall:
- echo "Uninstalling libraries..."
- $(RM) "$(DESTDIR)$(libdir)/$(LIBBASENAME)"
- if test x$(DSONAME) = xlibfltk.so.$(FL_DSO_VERSION); then\
- $(RM) "$(DESTDIR)$(libdir)"/libfltk.so*;\
- fi
- if test x$(DSONAME) = xlibfltk.sl.$(FL_DSO_VERSION); then\
- $(RM) "$(DESTDIR)$(libdir)"/libfltk.sl*;\
- fi
- if test x$(DSONAME) = xlibfltk.$(FL_DSO_VERSION).dylib; then\
- $(RM) "$(DESTDIR)$(libdir)"/libfltk.*dylib;\
- fi
- if test x$(DSONAME) = xlibfltk_s.a; then\
- $(RM) "$(DESTDIR)$(libdir)/libfltk_s.a";\
- fi
- if test x$(DSONAME) = xcygfltknox-$(FL_DSO_VERSION).dll; then\
- $(RM) "$(DESTDIR)$(bindir)/$(DSONAME)"; \
- $(RM) "$(DESTDIR)$(libdir)/libfltk.dll.a";\
- fi
- if test x$(DSONAME) = xcygfltk-$(FL_DSO_VERSION).dll; then\
- $(RM) "$(DESTDIR)$(bindir)/$(DSONAME)"; \
- $(RM) "$(DESTDIR)$(libdir)/libfltk.dll.a";\
- fi
- if test x$(DSONAME) = xmgwfltknox-$(FL_DSO_VERSION).dll; then\
- $(RM) "$(DESTDIR)$(bindir)/$(DSONAME)"; \
- $(RM) "$(DESTDIR)$(libdir)/libfltk.dll.a";\
- fi
- $(RM) "$(DESTDIR)$(libdir)/$(FLLIBBASENAME)";
- if test x$(FLDSONAME) = xlibfltk_forms.so.$(FL_DSO_VERSION); then\
- $(RM) "$(DESTDIR)$(libdir)"/libfltk_forms.so*;\
- fi
- if test x$(FLDSONAME) = xlibfltk_forms.sl.$(FL_DSO_VERSION); then\
- $(RM) "$(DESTDIR)$(libdir)"/libfltk_forms.sl*;\
- fi
- if test x$(FLDSONAME) = xlibfltk_forms.$(FL_DSO_VERSION).dylib; then\
- $(RM) "$(DESTDIR)$(libdir)"/libfltk_forms.*dylib;\
- fi
- if test x$(FLDSONAME) = xlibfltk_forms_s.a; then\
- $(RM) "$(DESTDIR)$(libdir)/libfltk_forms_s.a";\
- fi
- if test x$(FLDSONAME) = xcygfltknox_forms-$(FL_DSO_VERSION).dll; then\
- $(RM) "$(DESTDIR)$(bindir)/$(FLDSONAME)"; \
- $(RM) "$(DESTDIR)$(libdir)/libfltk_forms.dll.a";\
- fi
- if test x$(FLDSONAME) = xcygfltk_forms-$(FL_DSO_VERSION).dll; then\
- $(RM) "$(DESTDIR)$(bindir)/$(FLDSONAME)"; \
- $(RM) "$(DESTDIR)$(libdir)/libfltk_forms.dll.a";\
- fi
- if test x$(FLDSONAME) = xmgwfltknox_forms-$(FL_DSO_VERSION).dll; then\
- $(RM) "$(DESTDIR)$(bindir)/$(FLDSONAME)"; \
- $(RM) "$(DESTDIR)$(libdir)/libfltk_forms.dll.a";\
- fi
- if test x$(GLLIBNAME) != x; then\
- $(RM) "$(DESTDIR)$(libdir)/$(GLLIBBASENAME)";\
- fi
- if test x$(GLDSONAME) = xlibfltk_gl.so.$(FL_DSO_VERSION); then\
- $(RM) "$(DESTDIR)$(libdir)"/libfltk_gl.so*;\
- fi
- if test x$(GLDSONAME) = xlibfltk_gl.sl.$(FL_DSO_VERSION); then\
- $(RM) "$(DESTDIR)$(libdir)"/libfltk_gl.sl*;\
- fi
- if test x$(GLDSONAME) = xlibfltk_gl.$(FL_DSO_VERSION).dylib; then\
- $(RM) "$(DESTDIR)$(libdir)"/libfltk_gl.*dylib;\
- fi
- if test x$(GLDSONAME) = xlibfltk_gl_s.a; then\
- $(RM) "$(DESTDIR)$(libdir)/libfltk_gl_s.a";\
- fi
- if test x$(GLDSONAME) = xcygfltknox_gl-$(FL_DSO_VERSION).dll; then\
- $(RM) "$(DESTDIR)$(bindir)/$(GLDSONAME)"; \
- $(RM) "$(DESTDIR)$(libdir)/libfltk_gl.dll.a";\
- fi
- if test x$(GLDSONAME) = xcygfltk_gl-$(FL_DSO_VERSION).dll; then\
- $(RM) "$(DESTDIR)$(bindir)/$(GLDSONAME)"; \
- $(RM) "$(DESTDIR)$(libdir)/libfltk_gl.dll.a";\
- fi
- if test x$(GLDSONAME) = xmgwfltknox_gl-$(FL_DSO_VERSION).dll; then\
- $(RM) "$(DESTDIR)$(bindir)/$(GLDSONAME)"; \
- $(RM) "$(DESTDIR)$(libdir)/libfltk_gl.dll.a";\
- fi
- if test x$(IMGLIBNAME) != x; then\
- $(RM) "$(DESTDIR)$(libdir)/$(IMGLIBBASENAME)";\
- fi
- if test x$(IMGDSONAME) = xlibfltk_images.so.$(FL_DSO_VERSION); then\
- $(RM) "$(DESTDIR)$(libdir)"/libfltk_images.so*;\
- fi
- if test x$(IMGDSONAME) = xlibfltk_images.sl.$(FL_DSO_VERSION); then\
- $(RM) "$(DESTDIR)$(libdir)"/libfltk_images.sl*;\
- fi
- if test x$(IMGDSONAME) = xlibfltk_images.$(FL_DSO_VERSION).dylib; then\
- $(RM) "$(DESTDIR)$(libdir)"/libfltk_images.*dylib;\
- fi
- if test x$(IMGDSONAME) = xlibfltk_images_s.a; then\
- $(RM) "$(DESTDIR)$(libdir)/libfltk_images_s.a";\
- fi
- if test x$(IMGDSONAME) = xcygfltknox_images-$(FL_DSO_VERSION).dll; then\
- $(RM) "$(DESTDIR)$(bindir)/$(IMGDSONAME)"; \
- $(RM) "$(DESTDIR)$(libdir)/libfltk_images.dll.a";\
- fi
- if test x$(IMGDSONAME) = xcygfltk_images-$(FL_DSO_VERSION).dll; then\
- $(RM) "$(DESTDIR)$(bindir)/$(IMGDSONAME)"; \
- $(RM) "$(DESTDIR)$(libdir)/libfltk_images.dll.a";\
- fi
- if test x$(IMGDSONAME) = xmgwfltknox_images-$(FL_DSO_VERSION).dll; then\
- $(RM) "$(DESTDIR)$(bindir)/$(IMGDSONAME)"; \
- $(RM) "$(DESTDIR)$(libdir)/libfltk_images.dll.a";\
- fi
diff --git a/src/makedepend b/src/makedepend
deleted file mode 100644
index 123d90b33..000000000
--- a/src/makedepend
+++ /dev/null
@@ -1,5153 +0,0 @@
-# DO NOT DELETE THIS LINE -- make depend depends on it.
-
-drivers/Cairo/Fl_Cairo_Graphics_Driver.o: ../config.h
-drivers/Cairo/Fl_Cairo_Graphics_Driver.o: ../FL/fl_config.h
-drivers/OpenGL/Fl_OpenGL_Display_Device.o: ../FL/Enumerations.H
-drivers/OpenGL/Fl_OpenGL_Display_Device.o: ../FL/Fl.H
-drivers/OpenGL/Fl_OpenGL_Display_Device.o: ../FL/fl_attr.h
-drivers/OpenGL/Fl_OpenGL_Display_Device.o: ../FL/Fl_Bitmap.H
-drivers/OpenGL/Fl_OpenGL_Display_Device.o: ../FL/fl_config.h
-drivers/OpenGL/Fl_OpenGL_Display_Device.o: ../FL/Fl_Device.H
-drivers/OpenGL/Fl_OpenGL_Display_Device.o: ../FL/fl_draw.H
-drivers/OpenGL/Fl_OpenGL_Display_Device.o: ../FL/Fl_Export.H
-drivers/OpenGL/Fl_OpenGL_Display_Device.o: ../FL/Fl_Graphics_Driver.H
-drivers/OpenGL/Fl_OpenGL_Display_Device.o: ../FL/Fl_Image.H
-drivers/OpenGL/Fl_OpenGL_Display_Device.o: ../FL/Fl_Pixmap.H
-drivers/OpenGL/Fl_OpenGL_Display_Device.o: ../FL/Fl_Plugin.H
-drivers/OpenGL/Fl_OpenGL_Display_Device.o: ../FL/Fl_Preferences.H
-drivers/OpenGL/Fl_OpenGL_Display_Device.o: ../FL/Fl_RGB_Image.H
-drivers/OpenGL/Fl_OpenGL_Display_Device.o: ../FL/fl_types.h
-drivers/OpenGL/Fl_OpenGL_Display_Device.o: ../FL/Fl_Widget.H
-drivers/OpenGL/Fl_OpenGL_Display_Device.o: ../FL/platform_types.h
-drivers/OpenGL/Fl_OpenGL_Display_Device.o: drivers/OpenGL/Fl_OpenGL_Display_Device.H
-drivers/OpenGL/Fl_OpenGL_Display_Device.o: drivers/OpenGL/Fl_OpenGL_Graphics_Driver.H
-drivers/OpenGL/Fl_OpenGL_Graphics_Driver_arci.o: ../config.h
-drivers/OpenGL/Fl_OpenGL_Graphics_Driver_arci.o: ../FL/Enumerations.H
-drivers/OpenGL/Fl_OpenGL_Graphics_Driver_arci.o: ../FL/Fl.H
-drivers/OpenGL/Fl_OpenGL_Graphics_Driver_arci.o: ../FL/fl_attr.h
-drivers/OpenGL/Fl_OpenGL_Graphics_Driver_arci.o: ../FL/Fl_Bitmap.H
-drivers/OpenGL/Fl_OpenGL_Graphics_Driver_arci.o: ../FL/Fl_Cairo.H
-drivers/OpenGL/Fl_OpenGL_Graphics_Driver_arci.o: ../FL/fl_casts.H
-drivers/OpenGL/Fl_OpenGL_Graphics_Driver_arci.o: ../FL/fl_config.h
-drivers/OpenGL/Fl_OpenGL_Graphics_Driver_arci.o: ../FL/Fl_Device.H
-drivers/OpenGL/Fl_OpenGL_Graphics_Driver_arci.o: ../FL/fl_draw.H
-drivers/OpenGL/Fl_OpenGL_Graphics_Driver_arci.o: ../FL/Fl_Export.H
-drivers/OpenGL/Fl_OpenGL_Graphics_Driver_arci.o: ../FL/Fl_Gl_Window.H
-drivers/OpenGL/Fl_OpenGL_Graphics_Driver_arci.o: ../FL/Fl_Graphics_Driver.H
-drivers/OpenGL/Fl_OpenGL_Graphics_Driver_arci.o: ../FL/Fl_Image.H
-drivers/OpenGL/Fl_OpenGL_Graphics_Driver_arci.o: ../FL/Fl_Pixmap.H
-drivers/OpenGL/Fl_OpenGL_Graphics_Driver_arci.o: ../FL/Fl_Plugin.H
-drivers/OpenGL/Fl_OpenGL_Graphics_Driver_arci.o: ../FL/Fl_Preferences.H
-drivers/OpenGL/Fl_OpenGL_Graphics_Driver_arci.o: ../FL/Fl_RGB_Image.H
-drivers/OpenGL/Fl_OpenGL_Graphics_Driver_arci.o: ../FL/fl_types.h
-drivers/OpenGL/Fl_OpenGL_Graphics_Driver_arci.o: ../FL/fl_utf8.h
-drivers/OpenGL/Fl_OpenGL_Graphics_Driver_arci.o: ../FL/Fl_Widget.H
-drivers/OpenGL/Fl_OpenGL_Graphics_Driver_arci.o: ../FL/Fl_Window.H
-drivers/OpenGL/Fl_OpenGL_Graphics_Driver_arci.o: ../FL/gl.h
-drivers/OpenGL/Fl_OpenGL_Graphics_Driver_arci.o: ../FL/math.h
-drivers/OpenGL/Fl_OpenGL_Graphics_Driver_arci.o: ../FL/platform_types.h
-drivers/OpenGL/Fl_OpenGL_Graphics_Driver_arci.o: drivers/OpenGL/Fl_OpenGL_Graphics_Driver.H
-drivers/OpenGL/Fl_OpenGL_Graphics_Driver_color.o: ../config.h
-drivers/OpenGL/Fl_OpenGL_Graphics_Driver_color.o: ../FL/Enumerations.H
-drivers/OpenGL/Fl_OpenGL_Graphics_Driver_color.o: ../FL/Fl.H
-drivers/OpenGL/Fl_OpenGL_Graphics_Driver_color.o: ../FL/fl_attr.h
-drivers/OpenGL/Fl_OpenGL_Graphics_Driver_color.o: ../FL/Fl_Bitmap.H
-drivers/OpenGL/Fl_OpenGL_Graphics_Driver_color.o: ../FL/Fl_Cairo.H
-drivers/OpenGL/Fl_OpenGL_Graphics_Driver_color.o: ../FL/fl_casts.H
-drivers/OpenGL/Fl_OpenGL_Graphics_Driver_color.o: ../FL/fl_config.h
-drivers/OpenGL/Fl_OpenGL_Graphics_Driver_color.o: ../FL/Fl_Device.H
-drivers/OpenGL/Fl_OpenGL_Graphics_Driver_color.o: ../FL/fl_draw.H
-drivers/OpenGL/Fl_OpenGL_Graphics_Driver_color.o: ../FL/Fl_Export.H
-drivers/OpenGL/Fl_OpenGL_Graphics_Driver_color.o: ../FL/Fl_Gl_Window.H
-drivers/OpenGL/Fl_OpenGL_Graphics_Driver_color.o: ../FL/Fl_Graphics_Driver.H
-drivers/OpenGL/Fl_OpenGL_Graphics_Driver_color.o: ../FL/Fl_Image.H
-drivers/OpenGL/Fl_OpenGL_Graphics_Driver_color.o: ../FL/Fl_Pixmap.H
-drivers/OpenGL/Fl_OpenGL_Graphics_Driver_color.o: ../FL/Fl_Plugin.H
-drivers/OpenGL/Fl_OpenGL_Graphics_Driver_color.o: ../FL/Fl_Preferences.H
-drivers/OpenGL/Fl_OpenGL_Graphics_Driver_color.o: ../FL/Fl_RGB_Image.H
-drivers/OpenGL/Fl_OpenGL_Graphics_Driver_color.o: ../FL/fl_types.h
-drivers/OpenGL/Fl_OpenGL_Graphics_Driver_color.o: ../FL/fl_utf8.h
-drivers/OpenGL/Fl_OpenGL_Graphics_Driver_color.o: ../FL/Fl_Widget.H
-drivers/OpenGL/Fl_OpenGL_Graphics_Driver_color.o: ../FL/Fl_Window.H
-drivers/OpenGL/Fl_OpenGL_Graphics_Driver_color.o: ../FL/gl.h
-drivers/OpenGL/Fl_OpenGL_Graphics_Driver_color.o: ../FL/platform_types.h
-drivers/OpenGL/Fl_OpenGL_Graphics_Driver_color.o: drivers/OpenGL/Fl_OpenGL_Graphics_Driver.H
-drivers/OpenGL/Fl_OpenGL_Graphics_Driver_font.o: ../config.h
-drivers/OpenGL/Fl_OpenGL_Graphics_Driver_font.o: ../FL/Enumerations.H
-drivers/OpenGL/Fl_OpenGL_Graphics_Driver_font.o: ../FL/Fl.H
-drivers/OpenGL/Fl_OpenGL_Graphics_Driver_font.o: ../FL/fl_attr.h
-drivers/OpenGL/Fl_OpenGL_Graphics_Driver_font.o: ../FL/Fl_Bitmap.H
-drivers/OpenGL/Fl_OpenGL_Graphics_Driver_font.o: ../FL/Fl_Cairo.H
-drivers/OpenGL/Fl_OpenGL_Graphics_Driver_font.o: ../FL/fl_casts.H
-drivers/OpenGL/Fl_OpenGL_Graphics_Driver_font.o: ../FL/fl_config.h
-drivers/OpenGL/Fl_OpenGL_Graphics_Driver_font.o: ../FL/Fl_Device.H
-drivers/OpenGL/Fl_OpenGL_Graphics_Driver_font.o: ../FL/fl_draw.H
-drivers/OpenGL/Fl_OpenGL_Graphics_Driver_font.o: ../FL/Fl_Export.H
-drivers/OpenGL/Fl_OpenGL_Graphics_Driver_font.o: ../FL/Fl_Gl_Window.H
-drivers/OpenGL/Fl_OpenGL_Graphics_Driver_font.o: ../FL/Fl_Graphics_Driver.H
-drivers/OpenGL/Fl_OpenGL_Graphics_Driver_font.o: ../FL/Fl_Image.H
-drivers/OpenGL/Fl_OpenGL_Graphics_Driver_font.o: ../FL/Fl_Pixmap.H
-drivers/OpenGL/Fl_OpenGL_Graphics_Driver_font.o: ../FL/Fl_Plugin.H
-drivers/OpenGL/Fl_OpenGL_Graphics_Driver_font.o: ../FL/Fl_Preferences.H
-drivers/OpenGL/Fl_OpenGL_Graphics_Driver_font.o: ../FL/Fl_RGB_Image.H
-drivers/OpenGL/Fl_OpenGL_Graphics_Driver_font.o: ../FL/fl_types.h
-drivers/OpenGL/Fl_OpenGL_Graphics_Driver_font.o: ../FL/fl_utf8.h
-drivers/OpenGL/Fl_OpenGL_Graphics_Driver_font.o: ../FL/Fl_Widget.H
-drivers/OpenGL/Fl_OpenGL_Graphics_Driver_font.o: ../FL/Fl_Window.H
-drivers/OpenGL/Fl_OpenGL_Graphics_Driver_font.o: ../FL/gl.h
-drivers/OpenGL/Fl_OpenGL_Graphics_Driver_font.o: ../FL/platform_types.h
-drivers/OpenGL/Fl_OpenGL_Graphics_Driver_font.o: drivers/OpenGL/Fl_OpenGL_Graphics_Driver.H
-drivers/OpenGL/Fl_OpenGL_Graphics_Driver_line_style.o: ../config.h
-drivers/OpenGL/Fl_OpenGL_Graphics_Driver_line_style.o: ../FL/Enumerations.H
-drivers/OpenGL/Fl_OpenGL_Graphics_Driver_line_style.o: ../FL/Fl.H
-drivers/OpenGL/Fl_OpenGL_Graphics_Driver_line_style.o: ../FL/fl_attr.h
-drivers/OpenGL/Fl_OpenGL_Graphics_Driver_line_style.o: ../FL/Fl_Bitmap.H
-drivers/OpenGL/Fl_OpenGL_Graphics_Driver_line_style.o: ../FL/Fl_Cairo.H
-drivers/OpenGL/Fl_OpenGL_Graphics_Driver_line_style.o: ../FL/fl_casts.H
-drivers/OpenGL/Fl_OpenGL_Graphics_Driver_line_style.o: ../FL/fl_config.h
-drivers/OpenGL/Fl_OpenGL_Graphics_Driver_line_style.o: ../FL/Fl_Device.H
-drivers/OpenGL/Fl_OpenGL_Graphics_Driver_line_style.o: ../FL/fl_draw.H
-drivers/OpenGL/Fl_OpenGL_Graphics_Driver_line_style.o: ../FL/Fl_Export.H
-drivers/OpenGL/Fl_OpenGL_Graphics_Driver_line_style.o: ../FL/Fl_Gl_Window.H
-drivers/OpenGL/Fl_OpenGL_Graphics_Driver_line_style.o: ../FL/Fl_Graphics_Driver.H
-drivers/OpenGL/Fl_OpenGL_Graphics_Driver_line_style.o: ../FL/Fl_Image.H
-drivers/OpenGL/Fl_OpenGL_Graphics_Driver_line_style.o: ../FL/Fl_Pixmap.H
-drivers/OpenGL/Fl_OpenGL_Graphics_Driver_line_style.o: ../FL/Fl_Plugin.H
-drivers/OpenGL/Fl_OpenGL_Graphics_Driver_line_style.o: ../FL/Fl_Preferences.H
-drivers/OpenGL/Fl_OpenGL_Graphics_Driver_line_style.o: ../FL/Fl_RGB_Image.H
-drivers/OpenGL/Fl_OpenGL_Graphics_Driver_line_style.o: ../FL/fl_types.h
-drivers/OpenGL/Fl_OpenGL_Graphics_Driver_line_style.o: ../FL/fl_utf8.h
-drivers/OpenGL/Fl_OpenGL_Graphics_Driver_line_style.o: ../FL/Fl_Widget.H
-drivers/OpenGL/Fl_OpenGL_Graphics_Driver_line_style.o: ../FL/Fl_Window.H
-drivers/OpenGL/Fl_OpenGL_Graphics_Driver_line_style.o: ../FL/gl.h
-drivers/OpenGL/Fl_OpenGL_Graphics_Driver_line_style.o: ../FL/platform_types.h
-drivers/OpenGL/Fl_OpenGL_Graphics_Driver_line_style.o: drivers/OpenGL/Fl_OpenGL_Graphics_Driver.H
-drivers/OpenGL/Fl_OpenGL_Graphics_Driver_rect.o: ../config.h
-drivers/OpenGL/Fl_OpenGL_Graphics_Driver_rect.o: ../FL/Enumerations.H
-drivers/OpenGL/Fl_OpenGL_Graphics_Driver_rect.o: ../FL/Fl.H
-drivers/OpenGL/Fl_OpenGL_Graphics_Driver_rect.o: ../FL/fl_attr.h
-drivers/OpenGL/Fl_OpenGL_Graphics_Driver_rect.o: ../FL/Fl_Bitmap.H
-drivers/OpenGL/Fl_OpenGL_Graphics_Driver_rect.o: ../FL/Fl_Cairo.H
-drivers/OpenGL/Fl_OpenGL_Graphics_Driver_rect.o: ../FL/fl_casts.H
-drivers/OpenGL/Fl_OpenGL_Graphics_Driver_rect.o: ../FL/fl_config.h
-drivers/OpenGL/Fl_OpenGL_Graphics_Driver_rect.o: ../FL/Fl_Device.H
-drivers/OpenGL/Fl_OpenGL_Graphics_Driver_rect.o: ../FL/fl_draw.H
-drivers/OpenGL/Fl_OpenGL_Graphics_Driver_rect.o: ../FL/Fl_Export.H
-drivers/OpenGL/Fl_OpenGL_Graphics_Driver_rect.o: ../FL/Fl_Gl_Window.H
-drivers/OpenGL/Fl_OpenGL_Graphics_Driver_rect.o: ../FL/Fl_Graphics_Driver.H
-drivers/OpenGL/Fl_OpenGL_Graphics_Driver_rect.o: ../FL/Fl_Image.H
-drivers/OpenGL/Fl_OpenGL_Graphics_Driver_rect.o: ../FL/Fl_Pixmap.H
-drivers/OpenGL/Fl_OpenGL_Graphics_Driver_rect.o: ../FL/Fl_Plugin.H
-drivers/OpenGL/Fl_OpenGL_Graphics_Driver_rect.o: ../FL/Fl_Preferences.H
-drivers/OpenGL/Fl_OpenGL_Graphics_Driver_rect.o: ../FL/Fl_RGB_Image.H
-drivers/OpenGL/Fl_OpenGL_Graphics_Driver_rect.o: ../FL/fl_types.h
-drivers/OpenGL/Fl_OpenGL_Graphics_Driver_rect.o: ../FL/fl_utf8.h
-drivers/OpenGL/Fl_OpenGL_Graphics_Driver_rect.o: ../FL/Fl_Widget.H
-drivers/OpenGL/Fl_OpenGL_Graphics_Driver_rect.o: ../FL/Fl_Window.H
-drivers/OpenGL/Fl_OpenGL_Graphics_Driver_rect.o: ../FL/gl.h
-drivers/OpenGL/Fl_OpenGL_Graphics_Driver_rect.o: ../FL/math.h
-drivers/OpenGL/Fl_OpenGL_Graphics_Driver_rect.o: ../FL/platform_types.h
-drivers/OpenGL/Fl_OpenGL_Graphics_Driver_rect.o: drivers/OpenGL/Fl_OpenGL_Graphics_Driver.H
-drivers/OpenGL/Fl_OpenGL_Graphics_Driver_vertex.o: ../FL/Enumerations.H
-drivers/OpenGL/Fl_OpenGL_Graphics_Driver_vertex.o: ../FL/Fl.H
-drivers/OpenGL/Fl_OpenGL_Graphics_Driver_vertex.o: ../FL/fl_attr.h
-drivers/OpenGL/Fl_OpenGL_Graphics_Driver_vertex.o: ../FL/Fl_Bitmap.H
-drivers/OpenGL/Fl_OpenGL_Graphics_Driver_vertex.o: ../FL/fl_config.h
-drivers/OpenGL/Fl_OpenGL_Graphics_Driver_vertex.o: ../FL/Fl_Device.H
-drivers/OpenGL/Fl_OpenGL_Graphics_Driver_vertex.o: ../FL/fl_draw.H
-drivers/OpenGL/Fl_OpenGL_Graphics_Driver_vertex.o: ../FL/Fl_Export.H
-drivers/OpenGL/Fl_OpenGL_Graphics_Driver_vertex.o: ../FL/Fl_Graphics_Driver.H
-drivers/OpenGL/Fl_OpenGL_Graphics_Driver_vertex.o: ../FL/Fl_Image.H
-drivers/OpenGL/Fl_OpenGL_Graphics_Driver_vertex.o: ../FL/Fl_Pixmap.H
-drivers/OpenGL/Fl_OpenGL_Graphics_Driver_vertex.o: ../FL/Fl_Plugin.H
-drivers/OpenGL/Fl_OpenGL_Graphics_Driver_vertex.o: ../FL/Fl_Preferences.H
-drivers/OpenGL/Fl_OpenGL_Graphics_Driver_vertex.o: ../FL/Fl_RGB_Image.H
-drivers/OpenGL/Fl_OpenGL_Graphics_Driver_vertex.o: ../FL/fl_types.h
-drivers/OpenGL/Fl_OpenGL_Graphics_Driver_vertex.o: ../FL/Fl_Widget.H
-drivers/OpenGL/Fl_OpenGL_Graphics_Driver_vertex.o: ../FL/gl.h
-drivers/OpenGL/Fl_OpenGL_Graphics_Driver_vertex.o: ../FL/math.h
-drivers/OpenGL/Fl_OpenGL_Graphics_Driver_vertex.o: ../FL/platform_types.h
-drivers/OpenGL/Fl_OpenGL_Graphics_Driver_vertex.o: drivers/OpenGL/Fl_OpenGL_Graphics_Driver.H
-drivers/Posix/Fl_Posix_Printer_Driver.o: ../config.h
-drivers/Posix/Fl_Posix_Printer_Driver.o: ../FL/Enumerations.H
-drivers/Posix/Fl_Posix_Printer_Driver.o: ../FL/filename.H
-drivers/Posix/Fl_Posix_Printer_Driver.o: ../FL/Fl.H
-drivers/Posix/Fl_Posix_Printer_Driver.o: ../FL/fl_ask.H
-drivers/Posix/Fl_Posix_Printer_Driver.o: ../FL/fl_attr.h
-drivers/Posix/Fl_Posix_Printer_Driver.o: ../FL/Fl_Bitmap.H
-drivers/Posix/Fl_Posix_Printer_Driver.o: ../FL/Fl_Box.H
-drivers/Posix/Fl_Posix_Printer_Driver.o: ../FL/Fl_Button.H
-drivers/Posix/Fl_Posix_Printer_Driver.o: ../FL/Fl_Cairo.H
-drivers/Posix/Fl_Posix_Printer_Driver.o: ../FL/fl_casts.H
-drivers/Posix/Fl_Posix_Printer_Driver.o: ../FL/Fl_Check_Button.H
-drivers/Posix/Fl_Posix_Printer_Driver.o: ../FL/Fl_Choice.H
-drivers/Posix/Fl_Posix_Printer_Driver.o: ../FL/fl_config.h
-drivers/Posix/Fl_Posix_Printer_Driver.o: ../FL/Fl_Device.H
-drivers/Posix/Fl_Posix_Printer_Driver.o: ../FL/Fl_Double_Window.H
-drivers/Posix/Fl_Posix_Printer_Driver.o: ../FL/fl_draw.H
-drivers/Posix/Fl_Posix_Printer_Driver.o: ../FL/Fl_Export.H
-drivers/Posix/Fl_Posix_Printer_Driver.o: ../FL/Fl_Group.H
-drivers/Posix/Fl_Posix_Printer_Driver.o: ../FL/Fl_Image.H
-drivers/Posix/Fl_Posix_Printer_Driver.o: ../FL/Fl_Input.H
-drivers/Posix/Fl_Posix_Printer_Driver.o: ../FL/Fl_Input_.H
-drivers/Posix/Fl_Posix_Printer_Driver.o: ../FL/Fl_Int_Input.H
-drivers/Posix/Fl_Posix_Printer_Driver.o: ../FL/Fl_Light_Button.H
-drivers/Posix/Fl_Posix_Printer_Driver.o: ../FL/Fl_Menu_.H
-drivers/Posix/Fl_Posix_Printer_Driver.o: ../FL/Fl_Menu_Item.H
-drivers/Posix/Fl_Posix_Printer_Driver.o: ../FL/Fl_Multi_Label.H
-drivers/Posix/Fl_Posix_Printer_Driver.o: ../FL/Fl_Paged_Device.H
-drivers/Posix/Fl_Posix_Printer_Driver.o: ../FL/Fl_Pixmap.H
-drivers/Posix/Fl_Posix_Printer_Driver.o: ../FL/Fl_Plugin.H
-drivers/Posix/Fl_Posix_Printer_Driver.o: ../FL/Fl_PostScript.H
-drivers/Posix/Fl_Posix_Printer_Driver.o: ../FL/Fl_Preferences.H
-drivers/Posix/Fl_Posix_Printer_Driver.o: ../FL/Fl_Printer.H
-drivers/Posix/Fl_Posix_Printer_Driver.o: ../FL/Fl_Progress.H
-drivers/Posix/Fl_Posix_Printer_Driver.o: ../FL/Fl_Repeat_Button.H
-drivers/Posix/Fl_Posix_Printer_Driver.o: ../FL/Fl_Return_Button.H
-drivers/Posix/Fl_Posix_Printer_Driver.o: ../FL/Fl_Round_Button.H
-drivers/Posix/Fl_Posix_Printer_Driver.o: ../FL/Fl_Spinner.H
-drivers/Posix/Fl_Posix_Printer_Driver.o: ../FL/fl_string_functions.h
-drivers/Posix/Fl_Posix_Printer_Driver.o: ../FL/fl_types.h
-drivers/Posix/Fl_Posix_Printer_Driver.o: ../FL/fl_utf8.h
-drivers/Posix/Fl_Posix_Printer_Driver.o: ../FL/Fl_Widget.H
-drivers/Posix/Fl_Posix_Printer_Driver.o: ../FL/Fl_Widget_Surface.H
-drivers/Posix/Fl_Posix_Printer_Driver.o: ../FL/Fl_Window.H
-drivers/Posix/Fl_Posix_Printer_Driver.o: ../FL/platform_types.h
-drivers/Posix/Fl_Posix_Printer_Driver.o: ../src/flstring.h
-drivers/Posix/Fl_Posix_Printer_Driver.o: ../src/print_panel.cxx
-drivers/Posix/Fl_Posix_Printer_Driver.o: drivers/Posix/Fl_Posix_System_Driver.H
-drivers/Posix/Fl_Posix_Printer_Driver.o: drivers/PostScript/Fl_PostScript_Graphics_Driver.H
-drivers/Posix/Fl_Posix_Printer_Driver.o: Fl_System_Driver.H
-drivers/Posix/Fl_Posix_Printer_Driver.o: print_panel.h
-drivers/Posix/Fl_Posix_System_Driver.o: ../config.h
-drivers/Posix/Fl_Posix_System_Driver.o: ../FL/Enumerations.H
-drivers/Posix/Fl_Posix_System_Driver.o: ../FL/filename.H
-drivers/Posix/Fl_Posix_System_Driver.o: ../FL/Fl.H
-drivers/Posix/Fl_Posix_System_Driver.o: ../FL/fl_attr.h
-drivers/Posix/Fl_Posix_System_Driver.o: ../FL/Fl_Cairo.H
-drivers/Posix/Fl_Posix_System_Driver.o: ../FL/fl_casts.H
-drivers/Posix/Fl_Posix_System_Driver.o: ../FL/fl_config.h
-drivers/Posix/Fl_Posix_System_Driver.o: ../FL/Fl_Export.H
-drivers/Posix/Fl_Posix_System_Driver.o: ../FL/Fl_File_Icon.H
-drivers/Posix/Fl_Posix_System_Driver.o: ../FL/Fl_Preferences.H
-drivers/Posix/Fl_Posix_System_Driver.o: ../FL/fl_string_functions.h
-drivers/Posix/Fl_Posix_System_Driver.o: ../FL/fl_types.h
-drivers/Posix/Fl_Posix_System_Driver.o: ../FL/fl_utf8.h
-drivers/Posix/Fl_Posix_System_Driver.o: ../FL/platform_types.h
-drivers/Posix/Fl_Posix_System_Driver.o: drivers/Posix/Fl_Posix_System_Driver.H
-drivers/Posix/Fl_Posix_System_Driver.o: flstring.h
-drivers/Posix/Fl_Posix_System_Driver.o: Fl_System_Driver.H
-drivers/PostScript/Fl_PostScript.o: ../config.h
-drivers/PostScript/Fl_PostScript.o: ../FL/Enumerations.H
-drivers/PostScript/Fl_PostScript.o: ../FL/filename.H
-drivers/PostScript/Fl_PostScript.o: ../FL/Fl.H
-drivers/PostScript/Fl_PostScript.o: ../FL/fl_ask.H
-drivers/PostScript/Fl_PostScript.o: ../FL/fl_attr.h
-drivers/PostScript/Fl_PostScript.o: ../FL/Fl_Bitmap.H
-drivers/PostScript/Fl_PostScript.o: ../FL/Fl_Box.H
-drivers/PostScript/Fl_PostScript.o: ../FL/Fl_Browser.H
-drivers/PostScript/Fl_PostScript.o: ../FL/Fl_Button.H
-drivers/PostScript/Fl_PostScript.o: ../FL/Fl_Cairo.H
-drivers/PostScript/Fl_PostScript.o: ../FL/fl_callback_macros.H
-drivers/PostScript/Fl_PostScript.o: ../FL/fl_casts.H
-drivers/PostScript/Fl_PostScript.o: ../FL/Fl_Check_Button.H
-drivers/PostScript/Fl_PostScript.o: ../FL/Fl_Choice.H
-drivers/PostScript/Fl_PostScript.o: ../FL/fl_config.h
-drivers/PostScript/Fl_PostScript.o: ../FL/Fl_Device.H
-drivers/PostScript/Fl_PostScript.o: ../FL/Fl_Double_Window.H
-drivers/PostScript/Fl_PostScript.o: ../FL/fl_draw.H
-drivers/PostScript/Fl_PostScript.o: ../FL/Fl_Export.H
-drivers/PostScript/Fl_PostScript.o: ../FL/Fl_File_Browser.H
-drivers/PostScript/Fl_PostScript.o: ../FL/Fl_File_Chooser.H
-drivers/PostScript/Fl_PostScript.o: ../FL/Fl_File_Icon.H
-drivers/PostScript/Fl_PostScript.o: ../FL/Fl_File_Input.H
-drivers/PostScript/Fl_PostScript.o: ../FL/Fl_Group.H
-drivers/PostScript/Fl_PostScript.o: ../FL/Fl_Image.H
-drivers/PostScript/Fl_PostScript.o: ../FL/Fl_Image_Surface.H
-drivers/PostScript/Fl_PostScript.o: ../FL/Fl_Input.H
-drivers/PostScript/Fl_PostScript.o: ../FL/Fl_Input_.H
-drivers/PostScript/Fl_PostScript.o: ../FL/Fl_Light_Button.H
-drivers/PostScript/Fl_PostScript.o: ../FL/Fl_Menu_.H
-drivers/PostScript/Fl_PostScript.o: ../FL/Fl_Menu_Button.H
-drivers/PostScript/Fl_PostScript.o: ../FL/Fl_Menu_Item.H
-drivers/PostScript/Fl_PostScript.o: ../FL/Fl_Multi_Label.H
-drivers/PostScript/Fl_PostScript.o: ../FL/Fl_Native_File_Chooser.H
-drivers/PostScript/Fl_PostScript.o: ../FL/Fl_Paged_Device.H
-drivers/PostScript/Fl_PostScript.o: ../FL/Fl_PDF_File_Surface.H
-drivers/PostScript/Fl_PostScript.o: ../FL/Fl_Plugin.H
-drivers/PostScript/Fl_PostScript.o: ../FL/Fl_PostScript.H
-drivers/PostScript/Fl_PostScript.o: ../FL/Fl_Preferences.H
-drivers/PostScript/Fl_PostScript.o: ../FL/Fl_Return_Button.H
-drivers/PostScript/Fl_PostScript.o: ../FL/Fl_Shared_Image.H
-drivers/PostScript/Fl_PostScript.o: ../FL/fl_string_functions.h
-drivers/PostScript/Fl_PostScript.o: ../FL/Fl_Tile.H
-drivers/PostScript/Fl_PostScript.o: ../FL/fl_types.h
-drivers/PostScript/Fl_PostScript.o: ../FL/fl_utf8.h
-drivers/PostScript/Fl_PostScript.o: ../FL/Fl_Widget.H
-drivers/PostScript/Fl_PostScript.o: ../FL/Fl_Widget_Surface.H
-drivers/PostScript/Fl_PostScript.o: ../FL/Fl_Window.H
-drivers/PostScript/Fl_PostScript.o: ../FL/platform.H
-drivers/PostScript/Fl_PostScript.o: ../FL/platform_types.h
-drivers/PostScript/Fl_PostScript.o: ../FL/x11.H
-drivers/PostScript/Fl_PostScript.o: drivers/PostScript/Fl_PostScript_Graphics_Driver.H
-drivers/PostScript/Fl_PostScript.o: Fl_System_Driver.H
-drivers/PostScript/Fl_PostScript_image.o: ../config.h
-drivers/PostScript/Fl_PostScript_image.o: ../FL/Enumerations.H
-drivers/PostScript/Fl_PostScript_image.o: ../FL/Fl.H
-drivers/PostScript/Fl_PostScript_image.o: ../FL/fl_attr.h
-drivers/PostScript/Fl_PostScript_image.o: ../FL/Fl_Bitmap.H
-drivers/PostScript/Fl_PostScript_image.o: ../FL/Fl_Cairo.H
-drivers/PostScript/Fl_PostScript_image.o: ../FL/fl_casts.H
-drivers/PostScript/Fl_PostScript_image.o: ../FL/fl_config.h
-drivers/PostScript/Fl_PostScript_image.o: ../FL/Fl_Device.H
-drivers/PostScript/Fl_PostScript_image.o: ../FL/fl_draw.H
-drivers/PostScript/Fl_PostScript_image.o: ../FL/Fl_Export.H
-drivers/PostScript/Fl_PostScript_image.o: ../FL/Fl_Group.H
-drivers/PostScript/Fl_PostScript_image.o: ../FL/Fl_Image.H
-drivers/PostScript/Fl_PostScript_image.o: ../FL/Fl_Paged_Device.H
-drivers/PostScript/Fl_PostScript_image.o: ../FL/Fl_Pixmap.H
-drivers/PostScript/Fl_PostScript_image.o: ../FL/Fl_Plugin.H
-drivers/PostScript/Fl_PostScript_image.o: ../FL/Fl_PostScript.H
-drivers/PostScript/Fl_PostScript_image.o: ../FL/Fl_Preferences.H
-drivers/PostScript/Fl_PostScript_image.o: ../FL/fl_types.h
-drivers/PostScript/Fl_PostScript_image.o: ../FL/fl_utf8.h
-drivers/PostScript/Fl_PostScript_image.o: ../FL/Fl_Widget.H
-drivers/PostScript/Fl_PostScript_image.o: ../FL/Fl_Widget_Surface.H
-drivers/PostScript/Fl_PostScript_image.o: ../FL/Fl_Window.H
-drivers/PostScript/Fl_PostScript_image.o: ../FL/platform_types.h
-drivers/PostScript/Fl_PostScript_image.o: drivers/PostScript/Fl_PostScript_Graphics_Driver.H
-drivers/SVG/Fl_SVG_File_Surface.o: ../config.h
-drivers/SVG/Fl_SVG_File_Surface.o: ../FL/Enumerations.H
-drivers/SVG/Fl_SVG_File_Surface.o: ../FL/filename.H
-drivers/SVG/Fl_SVG_File_Surface.o: ../FL/Fl.H
-drivers/SVG/Fl_SVG_File_Surface.o: ../FL/fl_attr.h
-drivers/SVG/Fl_SVG_File_Surface.o: ../FL/Fl_Bitmap.H
-drivers/SVG/Fl_SVG_File_Surface.o: ../FL/Fl_Cairo.H
-drivers/SVG/Fl_SVG_File_Surface.o: ../FL/fl_casts.H
-drivers/SVG/Fl_SVG_File_Surface.o: ../FL/fl_config.h
-drivers/SVG/Fl_SVG_File_Surface.o: ../FL/Fl_Device.H
-drivers/SVG/Fl_SVG_File_Surface.o: ../FL/fl_draw.H
-drivers/SVG/Fl_SVG_File_Surface.o: ../FL/Fl_Export.H
-drivers/SVG/Fl_SVG_File_Surface.o: ../FL/Fl_Graphics_Driver.H
-drivers/SVG/Fl_SVG_File_Surface.o: ../FL/Fl_Group.H
-drivers/SVG/Fl_SVG_File_Surface.o: ../FL/Fl_Image.H
-drivers/SVG/Fl_SVG_File_Surface.o: ../FL/Fl_Pixmap.H
-drivers/SVG/Fl_SVG_File_Surface.o: ../FL/Fl_Plugin.H
-drivers/SVG/Fl_SVG_File_Surface.o: ../FL/Fl_Preferences.H
-drivers/SVG/Fl_SVG_File_Surface.o: ../FL/Fl_RGB_Image.H
-drivers/SVG/Fl_SVG_File_Surface.o: ../FL/fl_string_functions.h
-drivers/SVG/Fl_SVG_File_Surface.o: ../FL/Fl_SVG_File_Surface.H
-drivers/SVG/Fl_SVG_File_Surface.o: ../FL/fl_types.h
-drivers/SVG/Fl_SVG_File_Surface.o: ../FL/fl_utf8.h
-drivers/SVG/Fl_SVG_File_Surface.o: ../FL/Fl_Widget.H
-drivers/SVG/Fl_SVG_File_Surface.o: ../FL/Fl_Widget_Surface.H
-drivers/SVG/Fl_SVG_File_Surface.o: ../FL/Fl_Window.H
-drivers/SVG/Fl_SVG_File_Surface.o: ../FL/math.h
-drivers/SVG/Fl_SVG_File_Surface.o: ../FL/platform_types.h
-drivers/SVG/Fl_SVG_File_Surface.o: Fl_System_Driver.H
-drivers/Unix/Fl_Unix_Screen_Driver.o: ../config.h
-drivers/Unix/Fl_Unix_Screen_Driver.o: ../FL/Enumerations.H
-drivers/Unix/Fl_Unix_Screen_Driver.o: ../FL/Fl.H
-drivers/Unix/Fl_Unix_Screen_Driver.o: ../FL/fl_attr.h
-drivers/Unix/Fl_Unix_Screen_Driver.o: ../FL/Fl_Bitmap.H
-drivers/Unix/Fl_Unix_Screen_Driver.o: ../FL/Fl_Cairo.H
-drivers/Unix/Fl_Unix_Screen_Driver.o: ../FL/fl_casts.H
-drivers/Unix/Fl_Unix_Screen_Driver.o: ../FL/fl_config.h
-drivers/Unix/Fl_Unix_Screen_Driver.o: ../FL/Fl_Device.H
-drivers/Unix/Fl_Unix_Screen_Driver.o: ../FL/fl_draw.H
-drivers/Unix/Fl_Unix_Screen_Driver.o: ../FL/Fl_Export.H
-drivers/Unix/Fl_Unix_Screen_Driver.o: ../FL/Fl_Graphics_Driver.H
-drivers/Unix/Fl_Unix_Screen_Driver.o: ../FL/Fl_Group.H
-drivers/Unix/Fl_Unix_Screen_Driver.o: ../FL/Fl_Image.H
-drivers/Unix/Fl_Unix_Screen_Driver.o: ../FL/Fl_Pixmap.H
-drivers/Unix/Fl_Unix_Screen_Driver.o: ../FL/Fl_Plugin.H
-drivers/Unix/Fl_Unix_Screen_Driver.o: ../FL/Fl_Preferences.H
-drivers/Unix/Fl_Unix_Screen_Driver.o: ../FL/Fl_Rect.H
-drivers/Unix/Fl_Unix_Screen_Driver.o: ../FL/Fl_RGB_Image.H
-drivers/Unix/Fl_Unix_Screen_Driver.o: ../FL/Fl_Scrollbar.H
-drivers/Unix/Fl_Unix_Screen_Driver.o: ../FL/Fl_Slider.H
-drivers/Unix/Fl_Unix_Screen_Driver.o: ../FL/Fl_Text_Buffer.H
-drivers/Unix/Fl_Unix_Screen_Driver.o: ../FL/Fl_Text_Display.H
-drivers/Unix/Fl_Unix_Screen_Driver.o: ../FL/Fl_Text_Editor.H
-drivers/Unix/Fl_Unix_Screen_Driver.o: ../FL/fl_types.h
-drivers/Unix/Fl_Unix_Screen_Driver.o: ../FL/fl_utf8.h
-drivers/Unix/Fl_Unix_Screen_Driver.o: ../FL/Fl_Valuator.H
-drivers/Unix/Fl_Unix_Screen_Driver.o: ../FL/Fl_Widget.H
-drivers/Unix/Fl_Unix_Screen_Driver.o: ../FL/platform_types.h
-drivers/Unix/Fl_Unix_Screen_Driver.o: drivers/Unix/Fl_Unix_Screen_Driver.H
-drivers/Unix/Fl_Unix_Screen_Driver.o: Fl_Screen_Driver.H
-drivers/Unix/Fl_Unix_System_Driver.o: ../config.h
-drivers/Unix/Fl_Unix_System_Driver.o: ../FL/Enumerations.H
-drivers/Unix/Fl_Unix_System_Driver.o: ../FL/filename.H
-drivers/Unix/Fl_Unix_System_Driver.o: ../FL/Fl.H
-drivers/Unix/Fl_Unix_System_Driver.o: ../FL/fl_attr.h
-drivers/Unix/Fl_Unix_System_Driver.o: ../FL/Fl_Bitmap.H
-drivers/Unix/Fl_Unix_System_Driver.o: ../FL/Fl_Browser.H
-drivers/Unix/Fl_Unix_System_Driver.o: ../FL/Fl_Cairo.H
-drivers/Unix/Fl_Unix_System_Driver.o: ../FL/fl_casts.H
-drivers/Unix/Fl_Unix_System_Driver.o: ../FL/fl_config.h
-drivers/Unix/Fl_Unix_System_Driver.o: ../FL/Fl_Device.H
-drivers/Unix/Fl_Unix_System_Driver.o: ../FL/fl_draw.H
-drivers/Unix/Fl_Unix_System_Driver.o: ../FL/Fl_Export.H
-drivers/Unix/Fl_Unix_System_Driver.o: ../FL/Fl_File_Browser.H
-drivers/Unix/Fl_Unix_System_Driver.o: ../FL/Fl_File_Icon.H
-drivers/Unix/Fl_Unix_System_Driver.o: ../FL/Fl_Graphics_Driver.H
-drivers/Unix/Fl_Unix_System_Driver.o: ../FL/Fl_Group.H
-drivers/Unix/Fl_Unix_System_Driver.o: ../FL/Fl_Image.H
-drivers/Unix/Fl_Unix_System_Driver.o: ../FL/Fl_Pixmap.H
-drivers/Unix/Fl_Unix_System_Driver.o: ../FL/Fl_Plugin.H
-drivers/Unix/Fl_Unix_System_Driver.o: ../FL/Fl_Preferences.H
-drivers/Unix/Fl_Unix_System_Driver.o: ../FL/Fl_Rect.H
-drivers/Unix/Fl_Unix_System_Driver.o: ../FL/Fl_RGB_Image.H
-drivers/Unix/Fl_Unix_System_Driver.o: ../FL/Fl_Scrollbar.H
-drivers/Unix/Fl_Unix_System_Driver.o: ../FL/Fl_Slider.H
-drivers/Unix/Fl_Unix_System_Driver.o: ../FL/fl_string_functions.h
-drivers/Unix/Fl_Unix_System_Driver.o: ../FL/Fl_Text_Buffer.H
-drivers/Unix/Fl_Unix_System_Driver.o: ../FL/Fl_Text_Display.H
-drivers/Unix/Fl_Unix_System_Driver.o: ../FL/Fl_Text_Editor.H
-drivers/Unix/Fl_Unix_System_Driver.o: ../FL/fl_types.h
-drivers/Unix/Fl_Unix_System_Driver.o: ../FL/fl_utf8.h
-drivers/Unix/Fl_Unix_System_Driver.o: ../FL/Fl_Valuator.H
-drivers/Unix/Fl_Unix_System_Driver.o: ../FL/Fl_Widget.H
-drivers/Unix/Fl_Unix_System_Driver.o: ../FL/platform.H
-drivers/Unix/Fl_Unix_System_Driver.o: ../FL/platform_types.h
-drivers/Unix/Fl_Unix_System_Driver.o: ../FL/x11.H
-drivers/Unix/Fl_Unix_System_Driver.o: drivers/Posix/Fl_Posix_System_Driver.H
-drivers/Unix/Fl_Unix_System_Driver.o: drivers/Unix/Fl_Unix_Screen_Driver.H
-drivers/Unix/Fl_Unix_System_Driver.o: drivers/Unix/Fl_Unix_System_Driver.H
-drivers/Unix/Fl_Unix_System_Driver.o: flstring.h
-drivers/Unix/Fl_Unix_System_Driver.o: Fl_Screen_Driver.H
-drivers/Unix/Fl_Unix_System_Driver.o: Fl_String.H
-drivers/Unix/Fl_Unix_System_Driver.o: Fl_System_Driver.H
-drivers/Unix/Fl_Unix_System_Driver.o: Fl_Timeout.h
-drivers/X11/Fl_X11_Gl_Window_Driver.o: ../config.h
-drivers/X11/Fl_X11_Gl_Window_Driver.o: ../FL/Enumerations.H
-drivers/X11/Fl_X11_Gl_Window_Driver.o: ../FL/Fl.H
-drivers/X11/Fl_X11_Gl_Window_Driver.o: ../FL/fl_attr.h
-drivers/X11/Fl_X11_Gl_Window_Driver.o: ../FL/Fl_Bitmap.H
-drivers/X11/Fl_X11_Gl_Window_Driver.o: ../FL/Fl_Cairo.H
-drivers/X11/Fl_X11_Gl_Window_Driver.o: ../FL/fl_casts.H
-drivers/X11/Fl_X11_Gl_Window_Driver.o: ../FL/fl_config.h
-drivers/X11/Fl_X11_Gl_Window_Driver.o: ../FL/Fl_Device.H
-drivers/X11/Fl_X11_Gl_Window_Driver.o: ../FL/fl_draw.H
-drivers/X11/Fl_X11_Gl_Window_Driver.o: ../FL/Fl_Export.H
-drivers/X11/Fl_X11_Gl_Window_Driver.o: ../FL/Fl_Gl_Window.H
-drivers/X11/Fl_X11_Gl_Window_Driver.o: ../FL/Fl_Graphics_Driver.H
-drivers/X11/Fl_X11_Gl_Window_Driver.o: ../FL/Fl_Group.H
-drivers/X11/Fl_X11_Gl_Window_Driver.o: ../FL/Fl_Image.H
-drivers/X11/Fl_X11_Gl_Window_Driver.o: ../FL/Fl_Pixmap.H
-drivers/X11/Fl_X11_Gl_Window_Driver.o: ../FL/Fl_Plugin.H
-drivers/X11/Fl_X11_Gl_Window_Driver.o: ../FL/Fl_Preferences.H
-drivers/X11/Fl_X11_Gl_Window_Driver.o: ../FL/Fl_Rect.H
-drivers/X11/Fl_X11_Gl_Window_Driver.o: ../FL/Fl_RGB_Image.H
-drivers/X11/Fl_X11_Gl_Window_Driver.o: ../FL/Fl_Scrollbar.H
-drivers/X11/Fl_X11_Gl_Window_Driver.o: ../FL/Fl_Slider.H
-drivers/X11/Fl_X11_Gl_Window_Driver.o: ../FL/Fl_Text_Buffer.H
-drivers/X11/Fl_X11_Gl_Window_Driver.o: ../FL/Fl_Text_Display.H
-drivers/X11/Fl_X11_Gl_Window_Driver.o: ../FL/Fl_Text_Editor.H
-drivers/X11/Fl_X11_Gl_Window_Driver.o: ../FL/fl_types.h
-drivers/X11/Fl_X11_Gl_Window_Driver.o: ../FL/fl_utf8.h
-drivers/X11/Fl_X11_Gl_Window_Driver.o: ../FL/Fl_Valuator.H
-drivers/X11/Fl_X11_Gl_Window_Driver.o: ../FL/Fl_Widget.H
-drivers/X11/Fl_X11_Gl_Window_Driver.o: ../FL/Fl_Window.H
-drivers/X11/Fl_X11_Gl_Window_Driver.o: ../FL/gl.h
-drivers/X11/Fl_X11_Gl_Window_Driver.o: ../FL/platform.H
-drivers/X11/Fl_X11_Gl_Window_Driver.o: ../FL/platform_types.h
-drivers/X11/Fl_X11_Gl_Window_Driver.o: ../FL/x11.H
-drivers/X11/Fl_X11_Gl_Window_Driver.o: drivers/X11/Fl_X11_Gl_Window_Driver.H
-drivers/X11/Fl_X11_Gl_Window_Driver.o: Fl_Gl_Choice.H
-drivers/X11/Fl_X11_Gl_Window_Driver.o: Fl_Gl_Window_Driver.H
-drivers/X11/Fl_X11_Gl_Window_Driver.o: Fl_Screen_Driver.H
-drivers/X11/fl_X11_platform_init.o: ../config.h
-drivers/X11/fl_X11_platform_init.o: ../FL/Enumerations.H
-drivers/X11/fl_X11_platform_init.o: ../FL/filename.H
-drivers/X11/fl_X11_platform_init.o: ../FL/Fl.H
-drivers/X11/fl_X11_platform_init.o: ../FL/fl_attr.h
-drivers/X11/fl_X11_platform_init.o: ../FL/Fl_Bitmap.H
-drivers/X11/fl_X11_platform_init.o: ../FL/Fl_Cairo.H
-drivers/X11/fl_X11_platform_init.o: ../FL/fl_casts.H
-drivers/X11/fl_X11_platform_init.o: ../FL/fl_config.h
-drivers/X11/fl_X11_platform_init.o: ../FL/Fl_Copy_Surface.H
-drivers/X11/fl_X11_platform_init.o: ../FL/Fl_Device.H
-drivers/X11/fl_X11_platform_init.o: ../FL/Fl_Double_Window.H
-drivers/X11/fl_X11_platform_init.o: ../FL/fl_draw.H
-drivers/X11/fl_X11_platform_init.o: ../FL/Fl_Export.H
-drivers/X11/fl_X11_platform_init.o: ../FL/Fl_Graphics_Driver.H
-drivers/X11/fl_X11_platform_init.o: ../FL/Fl_Group.H
-drivers/X11/fl_X11_platform_init.o: ../FL/Fl_Image.H
-drivers/X11/fl_X11_platform_init.o: ../FL/Fl_Image_Surface.H
-drivers/X11/fl_X11_platform_init.o: ../FL/Fl_Overlay_Window.H
-drivers/X11/fl_X11_platform_init.o: ../FL/Fl_Pixmap.H
-drivers/X11/fl_X11_platform_init.o: ../FL/Fl_Plugin.H
-drivers/X11/fl_X11_platform_init.o: ../FL/Fl_Preferences.H
-drivers/X11/fl_X11_platform_init.o: ../FL/Fl_Rect.H
-drivers/X11/fl_X11_platform_init.o: ../FL/Fl_RGB_Image.H
-drivers/X11/fl_X11_platform_init.o: ../FL/Fl_Scrollbar.H
-drivers/X11/fl_X11_platform_init.o: ../FL/Fl_Shared_Image.H
-drivers/X11/fl_X11_platform_init.o: ../FL/Fl_Slider.H
-drivers/X11/fl_X11_platform_init.o: ../FL/Fl_Text_Buffer.H
-drivers/X11/fl_X11_platform_init.o: ../FL/Fl_Text_Display.H
-drivers/X11/fl_X11_platform_init.o: ../FL/Fl_Text_Editor.H
-drivers/X11/fl_X11_platform_init.o: ../FL/fl_types.h
-drivers/X11/fl_X11_platform_init.o: ../FL/fl_utf8.h
-drivers/X11/fl_X11_platform_init.o: ../FL/Fl_Valuator.H
-drivers/X11/fl_X11_platform_init.o: ../FL/Fl_Widget.H
-drivers/X11/fl_X11_platform_init.o: ../FL/Fl_Widget_Surface.H
-drivers/X11/fl_X11_platform_init.o: ../FL/Fl_Window.H
-drivers/X11/fl_X11_platform_init.o: ../FL/platform.H
-drivers/X11/fl_X11_platform_init.o: ../FL/platform_types.h
-drivers/X11/fl_X11_platform_init.o: ../FL/x11.H
-drivers/X11/fl_X11_platform_init.o: drivers/Posix/Fl_Posix_System_Driver.H
-drivers/X11/fl_X11_platform_init.o: drivers/Unix/Fl_Unix_Screen_Driver.H
-drivers/X11/fl_X11_platform_init.o: drivers/Unix/Fl_Unix_System_Driver.H
-drivers/X11/fl_X11_platform_init.o: drivers/X11/Fl_X11_Screen_Driver.H
-drivers/X11/fl_X11_platform_init.o: drivers/X11/Fl_X11_Window_Driver.H
-drivers/X11/fl_X11_platform_init.o: drivers/Xlib/Fl_Xlib_Copy_Surface_Driver.H
-drivers/X11/fl_X11_platform_init.o: drivers/Xlib/Fl_Xlib_Graphics_Driver.H
-drivers/X11/fl_X11_platform_init.o: drivers/Xlib/Fl_Xlib_Image_Surface_Driver.H
-drivers/X11/fl_X11_platform_init.o: Fl_Screen_Driver.H
-drivers/X11/fl_X11_platform_init.o: Fl_System_Driver.H
-drivers/X11/fl_X11_platform_init.o: Fl_Window_Driver.H
-drivers/X11/Fl_X11_Screen_Driver.o: ../config.h
-drivers/X11/Fl_X11_Screen_Driver.o: ../FL/Enumerations.H
-drivers/X11/Fl_X11_Screen_Driver.o: ../FL/filename.H
-drivers/X11/Fl_X11_Screen_Driver.o: ../FL/Fl.H
-drivers/X11/Fl_X11_Screen_Driver.o: ../FL/fl_ask.H
-drivers/X11/Fl_X11_Screen_Driver.o: ../FL/fl_attr.h
-drivers/X11/Fl_X11_Screen_Driver.o: ../FL/Fl_Bitmap.H
-drivers/X11/Fl_X11_Screen_Driver.o: ../FL/Fl_Box.H
-drivers/X11/Fl_X11_Screen_Driver.o: ../FL/Fl_Cairo.H
-drivers/X11/Fl_X11_Screen_Driver.o: ../FL/fl_casts.H
-drivers/X11/Fl_X11_Screen_Driver.o: ../FL/fl_config.h
-drivers/X11/Fl_X11_Screen_Driver.o: ../FL/Fl_Device.H
-drivers/X11/Fl_X11_Screen_Driver.o: ../FL/Fl_Double_Window.H
-drivers/X11/Fl_X11_Screen_Driver.o: ../FL/fl_draw.H
-drivers/X11/Fl_X11_Screen_Driver.o: ../FL/Fl_Export.H
-drivers/X11/Fl_X11_Screen_Driver.o: ../FL/Fl_Graphics_Driver.H
-drivers/X11/Fl_X11_Screen_Driver.o: ../FL/Fl_Group.H
-drivers/X11/Fl_X11_Screen_Driver.o: ../FL/Fl_Image.H
-drivers/X11/Fl_X11_Screen_Driver.o: ../FL/Fl_Image_Surface.H
-drivers/X11/Fl_X11_Screen_Driver.o: ../FL/Fl_Overlay_Window.H
-drivers/X11/Fl_X11_Screen_Driver.o: ../FL/Fl_Pixmap.H
-drivers/X11/Fl_X11_Screen_Driver.o: ../FL/Fl_Plugin.H
-drivers/X11/Fl_X11_Screen_Driver.o: ../FL/Fl_Preferences.H
-drivers/X11/Fl_X11_Screen_Driver.o: ../FL/Fl_Rect.H
-drivers/X11/Fl_X11_Screen_Driver.o: ../FL/Fl_RGB_Image.H
-drivers/X11/Fl_X11_Screen_Driver.o: ../FL/Fl_Scrollbar.H
-drivers/X11/Fl_X11_Screen_Driver.o: ../FL/Fl_Shared_Image.H
-drivers/X11/Fl_X11_Screen_Driver.o: ../FL/Fl_Slider.H
-drivers/X11/Fl_X11_Screen_Driver.o: ../FL/fl_string_functions.h
-drivers/X11/Fl_X11_Screen_Driver.o: ../FL/Fl_Text_Buffer.H
-drivers/X11/Fl_X11_Screen_Driver.o: ../FL/Fl_Text_Display.H
-drivers/X11/Fl_X11_Screen_Driver.o: ../FL/Fl_Text_Editor.H
-drivers/X11/Fl_X11_Screen_Driver.o: ../FL/Fl_Tooltip.H
-drivers/X11/Fl_X11_Screen_Driver.o: ../FL/fl_types.h
-drivers/X11/Fl_X11_Screen_Driver.o: ../FL/fl_utf8.h
-drivers/X11/Fl_X11_Screen_Driver.o: ../FL/Fl_Valuator.H
-drivers/X11/Fl_X11_Screen_Driver.o: ../FL/Fl_Widget.H
-drivers/X11/Fl_X11_Screen_Driver.o: ../FL/Fl_Widget_Surface.H
-drivers/X11/Fl_X11_Screen_Driver.o: ../FL/Fl_Window.H
-drivers/X11/Fl_X11_Screen_Driver.o: ../FL/platform.H
-drivers/X11/Fl_X11_Screen_Driver.o: ../FL/platform_types.h
-drivers/X11/Fl_X11_Screen_Driver.o: ../FL/x11.H
-drivers/X11/Fl_X11_Screen_Driver.o: drivers/Posix/Fl_Posix_System_Driver.H
-drivers/X11/Fl_X11_Screen_Driver.o: drivers/Unix/Fl_Unix_Screen_Driver.H
-drivers/X11/Fl_X11_Screen_Driver.o: drivers/X11/Fl_X11_Screen_Driver.H
-drivers/X11/Fl_X11_Screen_Driver.o: drivers/X11/Fl_X11_Window_Driver.H
-drivers/X11/Fl_X11_Screen_Driver.o: flstring.h
-drivers/X11/Fl_X11_Screen_Driver.o: Fl_Screen_Driver.H
-drivers/X11/Fl_X11_Screen_Driver.o: Fl_System_Driver.H
-drivers/X11/Fl_X11_Screen_Driver.o: Fl_Timeout.h
-drivers/X11/Fl_X11_Screen_Driver.o: Fl_Window_Driver.H
-drivers/X11/Fl_X11_Window_Driver.o: ../config.h
-drivers/X11/Fl_X11_Window_Driver.o: ../FL/Enumerations.H
-drivers/X11/Fl_X11_Window_Driver.o: ../FL/Fl.H
-drivers/X11/Fl_X11_Window_Driver.o: ../FL/fl_ask.H
-drivers/X11/Fl_X11_Window_Driver.o: ../FL/fl_attr.h
-drivers/X11/Fl_X11_Window_Driver.o: ../FL/Fl_Bitmap.H
-drivers/X11/Fl_X11_Window_Driver.o: ../FL/Fl_Cairo.H
-drivers/X11/Fl_X11_Window_Driver.o: ../FL/fl_casts.H
-drivers/X11/Fl_X11_Window_Driver.o: ../FL/fl_config.h
-drivers/X11/Fl_X11_Window_Driver.o: ../FL/Fl_Device.H
-drivers/X11/Fl_X11_Window_Driver.o: ../FL/Fl_Double_Window.H
-drivers/X11/Fl_X11_Window_Driver.o: ../FL/fl_draw.H
-drivers/X11/Fl_X11_Window_Driver.o: ../FL/Fl_Export.H
-drivers/X11/Fl_X11_Window_Driver.o: ../FL/Fl_Graphics_Driver.H
-drivers/X11/Fl_X11_Window_Driver.o: ../FL/Fl_Group.H
-drivers/X11/Fl_X11_Window_Driver.o: ../FL/Fl_Image.H
-drivers/X11/Fl_X11_Window_Driver.o: ../FL/Fl_Image_Surface.H
-drivers/X11/Fl_X11_Window_Driver.o: ../FL/Fl_Overlay_Window.H
-drivers/X11/Fl_X11_Window_Driver.o: ../FL/Fl_Pixmap.H
-drivers/X11/Fl_X11_Window_Driver.o: ../FL/Fl_Plugin.H
-drivers/X11/Fl_X11_Window_Driver.o: ../FL/Fl_Preferences.H
-drivers/X11/Fl_X11_Window_Driver.o: ../FL/Fl_Rect.H
-drivers/X11/Fl_X11_Window_Driver.o: ../FL/Fl_RGB_Image.H
-drivers/X11/Fl_X11_Window_Driver.o: ../FL/Fl_Scrollbar.H
-drivers/X11/Fl_X11_Window_Driver.o: ../FL/Fl_Shared_Image.H
-drivers/X11/Fl_X11_Window_Driver.o: ../FL/Fl_Slider.H
-drivers/X11/Fl_X11_Window_Driver.o: ../FL/Fl_Text_Buffer.H
-drivers/X11/Fl_X11_Window_Driver.o: ../FL/Fl_Text_Display.H
-drivers/X11/Fl_X11_Window_Driver.o: ../FL/Fl_Text_Editor.H
-drivers/X11/Fl_X11_Window_Driver.o: ../FL/Fl_Tooltip.H
-drivers/X11/Fl_X11_Window_Driver.o: ../FL/fl_types.h
-drivers/X11/Fl_X11_Window_Driver.o: ../FL/fl_utf8.h
-drivers/X11/Fl_X11_Window_Driver.o: ../FL/Fl_Valuator.H
-drivers/X11/Fl_X11_Window_Driver.o: ../FL/Fl_Widget.H
-drivers/X11/Fl_X11_Window_Driver.o: ../FL/Fl_Widget_Surface.H
-drivers/X11/Fl_X11_Window_Driver.o: ../FL/Fl_Window.H
-drivers/X11/Fl_X11_Window_Driver.o: ../FL/platform.H
-drivers/X11/Fl_X11_Window_Driver.o: ../FL/platform_types.h
-drivers/X11/Fl_X11_Window_Driver.o: ../FL/x11.H
-drivers/X11/Fl_X11_Window_Driver.o: drivers/Unix/Fl_Unix_Screen_Driver.H
-drivers/X11/Fl_X11_Window_Driver.o: drivers/X11/Fl_X11_Screen_Driver.H
-drivers/X11/Fl_X11_Window_Driver.o: drivers/X11/Fl_X11_Window_Driver.H
-drivers/X11/Fl_X11_Window_Driver.o: drivers/Xlib/Fl_Xlib_Graphics_Driver.H
-drivers/X11/Fl_X11_Window_Driver.o: Fl_Screen_Driver.H
-drivers/X11/Fl_X11_Window_Driver.o: Fl_Window_Driver.H
-drivers/Xlib/Fl_Xlib_Copy_Surface_Driver.o: ../config.h
-drivers/Xlib/Fl_Xlib_Copy_Surface_Driver.o: ../FL/Enumerations.H
-drivers/Xlib/Fl_Xlib_Copy_Surface_Driver.o: ../FL/Fl.H
-drivers/Xlib/Fl_Xlib_Copy_Surface_Driver.o: ../FL/fl_attr.h
-drivers/Xlib/Fl_Xlib_Copy_Surface_Driver.o: ../FL/Fl_Bitmap.H
-drivers/Xlib/Fl_Xlib_Copy_Surface_Driver.o: ../FL/Fl_Cairo.H
-drivers/Xlib/Fl_Xlib_Copy_Surface_Driver.o: ../FL/fl_casts.H
-drivers/Xlib/Fl_Xlib_Copy_Surface_Driver.o: ../FL/fl_config.h
-drivers/Xlib/Fl_Xlib_Copy_Surface_Driver.o: ../FL/Fl_Copy_Surface.H
-drivers/Xlib/Fl_Xlib_Copy_Surface_Driver.o: ../FL/Fl_Device.H
-drivers/Xlib/Fl_Xlib_Copy_Surface_Driver.o: ../FL/fl_draw.H
-drivers/Xlib/Fl_Xlib_Copy_Surface_Driver.o: ../FL/Fl_Export.H
-drivers/Xlib/Fl_Xlib_Copy_Surface_Driver.o: ../FL/Fl_Graphics_Driver.H
-drivers/Xlib/Fl_Xlib_Copy_Surface_Driver.o: ../FL/Fl_Group.H
-drivers/Xlib/Fl_Xlib_Copy_Surface_Driver.o: ../FL/Fl_Image.H
-drivers/Xlib/Fl_Xlib_Copy_Surface_Driver.o: ../FL/Fl_Image_Surface.H
-drivers/Xlib/Fl_Xlib_Copy_Surface_Driver.o: ../FL/Fl_Pixmap.H
-drivers/Xlib/Fl_Xlib_Copy_Surface_Driver.o: ../FL/Fl_Plugin.H
-drivers/Xlib/Fl_Xlib_Copy_Surface_Driver.o: ../FL/Fl_Preferences.H
-drivers/Xlib/Fl_Xlib_Copy_Surface_Driver.o: ../FL/Fl_Rect.H
-drivers/Xlib/Fl_Xlib_Copy_Surface_Driver.o: ../FL/Fl_RGB_Image.H
-drivers/Xlib/Fl_Xlib_Copy_Surface_Driver.o: ../FL/Fl_Scrollbar.H
-drivers/Xlib/Fl_Xlib_Copy_Surface_Driver.o: ../FL/Fl_Shared_Image.H
-drivers/Xlib/Fl_Xlib_Copy_Surface_Driver.o: ../FL/Fl_Slider.H
-drivers/Xlib/Fl_Xlib_Copy_Surface_Driver.o: ../FL/Fl_Text_Buffer.H
-drivers/Xlib/Fl_Xlib_Copy_Surface_Driver.o: ../FL/Fl_Text_Display.H
-drivers/Xlib/Fl_Xlib_Copy_Surface_Driver.o: ../FL/Fl_Text_Editor.H
-drivers/Xlib/Fl_Xlib_Copy_Surface_Driver.o: ../FL/fl_types.h
-drivers/Xlib/Fl_Xlib_Copy_Surface_Driver.o: ../FL/fl_utf8.h
-drivers/Xlib/Fl_Xlib_Copy_Surface_Driver.o: ../FL/Fl_Valuator.H
-drivers/Xlib/Fl_Xlib_Copy_Surface_Driver.o: ../FL/Fl_Widget.H
-drivers/Xlib/Fl_Xlib_Copy_Surface_Driver.o: ../FL/Fl_Widget_Surface.H
-drivers/Xlib/Fl_Xlib_Copy_Surface_Driver.o: ../FL/Fl_Window.H
-drivers/Xlib/Fl_Xlib_Copy_Surface_Driver.o: ../FL/platform.H
-drivers/Xlib/Fl_Xlib_Copy_Surface_Driver.o: ../FL/platform_types.h
-drivers/Xlib/Fl_Xlib_Copy_Surface_Driver.o: ../FL/x11.H
-drivers/Xlib/Fl_Xlib_Copy_Surface_Driver.o: drivers/Unix/Fl_Unix_Screen_Driver.H
-drivers/Xlib/Fl_Xlib_Copy_Surface_Driver.o: drivers/X11/Fl_X11_Screen_Driver.H
-drivers/Xlib/Fl_Xlib_Copy_Surface_Driver.o: drivers/Xlib/Fl_Xlib_Copy_Surface_Driver.H
-drivers/Xlib/Fl_Xlib_Copy_Surface_Driver.o: drivers/Xlib/Fl_Xlib_Graphics_Driver.H
-drivers/Xlib/Fl_Xlib_Copy_Surface_Driver.o: Fl_Screen_Driver.H
-drivers/Xlib/Fl_Xlib_Graphics_Driver.o: ../config.h
-drivers/Xlib/Fl_Xlib_Graphics_Driver.o: ../FL/Enumerations.H
-drivers/Xlib/Fl_Xlib_Graphics_Driver.o: ../FL/Fl.H
-drivers/Xlib/Fl_Xlib_Graphics_Driver.o: ../FL/fl_attr.h
-drivers/Xlib/Fl_Xlib_Graphics_Driver.o: ../FL/Fl_Bitmap.H
-drivers/Xlib/Fl_Xlib_Graphics_Driver.o: ../FL/fl_config.h
-drivers/Xlib/Fl_Xlib_Graphics_Driver.o: ../FL/Fl_Device.H
-drivers/Xlib/Fl_Xlib_Graphics_Driver.o: ../FL/fl_draw.H
-drivers/Xlib/Fl_Xlib_Graphics_Driver.o: ../FL/Fl_Export.H
-drivers/Xlib/Fl_Xlib_Graphics_Driver.o: ../FL/Fl_Graphics_Driver.H
-drivers/Xlib/Fl_Xlib_Graphics_Driver.o: ../FL/Fl_Image.H
-drivers/Xlib/Fl_Xlib_Graphics_Driver.o: ../FL/Fl_Pixmap.H
-drivers/Xlib/Fl_Xlib_Graphics_Driver.o: ../FL/Fl_Plugin.H
-drivers/Xlib/Fl_Xlib_Graphics_Driver.o: ../FL/Fl_Preferences.H
-drivers/Xlib/Fl_Xlib_Graphics_Driver.o: ../FL/Fl_RGB_Image.H
-drivers/Xlib/Fl_Xlib_Graphics_Driver.o: ../FL/fl_types.h
-drivers/Xlib/Fl_Xlib_Graphics_Driver.o: ../FL/Fl_Widget.H
-drivers/Xlib/Fl_Xlib_Graphics_Driver.o: ../FL/platform.H
-drivers/Xlib/Fl_Xlib_Graphics_Driver.o: ../FL/platform_types.h
-drivers/Xlib/Fl_Xlib_Graphics_Driver.o: ../FL/x11.H
-drivers/Xlib/Fl_Xlib_Graphics_Driver.o: drivers/Xlib/Fl_Font.H
-drivers/Xlib/Fl_Xlib_Graphics_Driver.o: drivers/Xlib/Fl_Xlib_Graphics_Driver.H
-drivers/Xlib/Fl_Xlib_Graphics_Driver_arci.o: ../config.h
-drivers/Xlib/Fl_Xlib_Graphics_Driver_arci.o: ../FL/Enumerations.H
-drivers/Xlib/Fl_Xlib_Graphics_Driver_arci.o: ../FL/Fl.H
-drivers/Xlib/Fl_Xlib_Graphics_Driver_arci.o: ../FL/fl_attr.h
-drivers/Xlib/Fl_Xlib_Graphics_Driver_arci.o: ../FL/Fl_Bitmap.H
-drivers/Xlib/Fl_Xlib_Graphics_Driver_arci.o: ../FL/fl_config.h
-drivers/Xlib/Fl_Xlib_Graphics_Driver_arci.o: ../FL/Fl_Device.H
-drivers/Xlib/Fl_Xlib_Graphics_Driver_arci.o: ../FL/fl_draw.H
-drivers/Xlib/Fl_Xlib_Graphics_Driver_arci.o: ../FL/Fl_Export.H
-drivers/Xlib/Fl_Xlib_Graphics_Driver_arci.o: ../FL/Fl_Graphics_Driver.H
-drivers/Xlib/Fl_Xlib_Graphics_Driver_arci.o: ../FL/Fl_Image.H
-drivers/Xlib/Fl_Xlib_Graphics_Driver_arci.o: ../FL/Fl_Pixmap.H
-drivers/Xlib/Fl_Xlib_Graphics_Driver_arci.o: ../FL/Fl_Plugin.H
-drivers/Xlib/Fl_Xlib_Graphics_Driver_arci.o: ../FL/Fl_Preferences.H
-drivers/Xlib/Fl_Xlib_Graphics_Driver_arci.o: ../FL/Fl_RGB_Image.H
-drivers/Xlib/Fl_Xlib_Graphics_Driver_arci.o: ../FL/fl_types.h
-drivers/Xlib/Fl_Xlib_Graphics_Driver_arci.o: ../FL/Fl_Widget.H
-drivers/Xlib/Fl_Xlib_Graphics_Driver_arci.o: ../FL/platform.H
-drivers/Xlib/Fl_Xlib_Graphics_Driver_arci.o: ../FL/platform_types.h
-drivers/Xlib/Fl_Xlib_Graphics_Driver_arci.o: ../FL/x11.H
-drivers/Xlib/Fl_Xlib_Graphics_Driver_arci.o: drivers/Xlib/Fl_Xlib_Graphics_Driver.H
-drivers/Xlib/Fl_Xlib_Graphics_Driver_color.o: ../config.h
-drivers/Xlib/Fl_Xlib_Graphics_Driver_color.o: ../FL/Enumerations.H
-drivers/Xlib/Fl_Xlib_Graphics_Driver_color.o: ../FL/Fl.H
-drivers/Xlib/Fl_Xlib_Graphics_Driver_color.o: ../FL/fl_attr.h
-drivers/Xlib/Fl_Xlib_Graphics_Driver_color.o: ../FL/Fl_Bitmap.H
-drivers/Xlib/Fl_Xlib_Graphics_Driver_color.o: ../FL/Fl_Cairo.H
-drivers/Xlib/Fl_Xlib_Graphics_Driver_color.o: ../FL/fl_casts.H
-drivers/Xlib/Fl_Xlib_Graphics_Driver_color.o: ../FL/fl_config.h
-drivers/Xlib/Fl_Xlib_Graphics_Driver_color.o: ../FL/Fl_Device.H
-drivers/Xlib/Fl_Xlib_Graphics_Driver_color.o: ../FL/fl_draw.H
-drivers/Xlib/Fl_Xlib_Graphics_Driver_color.o: ../FL/Fl_Export.H
-drivers/Xlib/Fl_Xlib_Graphics_Driver_color.o: ../FL/Fl_Graphics_Driver.H
-drivers/Xlib/Fl_Xlib_Graphics_Driver_color.o: ../FL/Fl_Image.H
-drivers/Xlib/Fl_Xlib_Graphics_Driver_color.o: ../FL/Fl_Pixmap.H
-drivers/Xlib/Fl_Xlib_Graphics_Driver_color.o: ../FL/Fl_Plugin.H
-drivers/Xlib/Fl_Xlib_Graphics_Driver_color.o: ../FL/Fl_Preferences.H
-drivers/Xlib/Fl_Xlib_Graphics_Driver_color.o: ../FL/Fl_RGB_Image.H
-drivers/Xlib/Fl_Xlib_Graphics_Driver_color.o: ../FL/fl_types.h
-drivers/Xlib/Fl_Xlib_Graphics_Driver_color.o: ../FL/fl_utf8.h
-drivers/Xlib/Fl_Xlib_Graphics_Driver_color.o: ../FL/Fl_Widget.H
-drivers/Xlib/Fl_Xlib_Graphics_Driver_color.o: ../FL/platform.H
-drivers/Xlib/Fl_Xlib_Graphics_Driver_color.o: ../FL/platform_types.h
-drivers/Xlib/Fl_Xlib_Graphics_Driver_color.o: ../FL/x11.H
-drivers/Xlib/Fl_Xlib_Graphics_Driver_color.o: drivers/Xlib/Fl_Xlib_Graphics_Driver.H
-drivers/Xlib/Fl_Xlib_Graphics_Driver_color.o: Fl_XColor.H
-drivers/Xlib/Fl_Xlib_Graphics_Driver_font_xft.o: ../config.h
-drivers/Xlib/Fl_Xlib_Graphics_Driver_font_xft.o: ../FL/Enumerations.H
-drivers/Xlib/Fl_Xlib_Graphics_Driver_font_xft.o: ../FL/Fl.H
-drivers/Xlib/Fl_Xlib_Graphics_Driver_font_xft.o: ../FL/fl_attr.h
-drivers/Xlib/Fl_Xlib_Graphics_Driver_font_xft.o: ../FL/Fl_Bitmap.H
-drivers/Xlib/Fl_Xlib_Graphics_Driver_font_xft.o: ../FL/Fl_Cairo.H
-drivers/Xlib/Fl_Xlib_Graphics_Driver_font_xft.o: ../FL/fl_casts.H
-drivers/Xlib/Fl_Xlib_Graphics_Driver_font_xft.o: ../FL/fl_config.h
-drivers/Xlib/Fl_Xlib_Graphics_Driver_font_xft.o: ../FL/Fl_Device.H
-drivers/Xlib/Fl_Xlib_Graphics_Driver_font_xft.o: ../FL/fl_draw.H
-drivers/Xlib/Fl_Xlib_Graphics_Driver_font_xft.o: ../FL/Fl_Export.H
-drivers/Xlib/Fl_Xlib_Graphics_Driver_font_xft.o: ../FL/Fl_Graphics_Driver.H
-drivers/Xlib/Fl_Xlib_Graphics_Driver_font_xft.o: ../FL/Fl_Image.H
-drivers/Xlib/Fl_Xlib_Graphics_Driver_font_xft.o: ../FL/Fl_Pixmap.H
-drivers/Xlib/Fl_Xlib_Graphics_Driver_font_xft.o: ../FL/Fl_Plugin.H
-drivers/Xlib/Fl_Xlib_Graphics_Driver_font_xft.o: ../FL/Fl_Preferences.H
-drivers/Xlib/Fl_Xlib_Graphics_Driver_font_xft.o: ../FL/Fl_RGB_Image.H
-drivers/Xlib/Fl_Xlib_Graphics_Driver_font_xft.o: ../FL/fl_string_functions.h
-drivers/Xlib/Fl_Xlib_Graphics_Driver_font_xft.o: ../FL/fl_types.h
-drivers/Xlib/Fl_Xlib_Graphics_Driver_font_xft.o: ../FL/fl_utf8.h
-drivers/Xlib/Fl_Xlib_Graphics_Driver_font_xft.o: ../FL/Fl_Widget.H
-drivers/Xlib/Fl_Xlib_Graphics_Driver_font_xft.o: ../FL/platform.H
-drivers/Xlib/Fl_Xlib_Graphics_Driver_font_xft.o: ../FL/platform_types.h
-drivers/Xlib/Fl_Xlib_Graphics_Driver_font_xft.o: ../FL/x11.H
-drivers/Xlib/Fl_Xlib_Graphics_Driver_font_xft.o: drivers/Xlib/Fl_Font.H
-drivers/Xlib/Fl_Xlib_Graphics_Driver_font_xft.o: drivers/Xlib/Fl_Xlib_Graphics_Driver.H
-drivers/Xlib/Fl_Xlib_Graphics_Driver_font_xft.o: flstring.h
-drivers/Xlib/Fl_Xlib_Graphics_Driver_image.o: ../config.h
-drivers/Xlib/Fl_Xlib_Graphics_Driver_image.o: ../FL/Enumerations.H
-drivers/Xlib/Fl_Xlib_Graphics_Driver_image.o: ../FL/Fl.H
-drivers/Xlib/Fl_Xlib_Graphics_Driver_image.o: ../FL/fl_attr.h
-drivers/Xlib/Fl_Xlib_Graphics_Driver_image.o: ../FL/Fl_Bitmap.H
-drivers/Xlib/Fl_Xlib_Graphics_Driver_image.o: ../FL/Fl_Cairo.H
-drivers/Xlib/Fl_Xlib_Graphics_Driver_image.o: ../FL/fl_casts.H
-drivers/Xlib/Fl_Xlib_Graphics_Driver_image.o: ../FL/fl_config.h
-drivers/Xlib/Fl_Xlib_Graphics_Driver_image.o: ../FL/Fl_Device.H
-drivers/Xlib/Fl_Xlib_Graphics_Driver_image.o: ../FL/Fl_Double_Window.H
-drivers/Xlib/Fl_Xlib_Graphics_Driver_image.o: ../FL/fl_draw.H
-drivers/Xlib/Fl_Xlib_Graphics_Driver_image.o: ../FL/Fl_Export.H
-drivers/Xlib/Fl_Xlib_Graphics_Driver_image.o: ../FL/Fl_Graphics_Driver.H
-drivers/Xlib/Fl_Xlib_Graphics_Driver_image.o: ../FL/Fl_Group.H
-drivers/Xlib/Fl_Xlib_Graphics_Driver_image.o: ../FL/Fl_Image.H
-drivers/Xlib/Fl_Xlib_Graphics_Driver_image.o: ../FL/Fl_Image_Surface.H
-drivers/Xlib/Fl_Xlib_Graphics_Driver_image.o: ../FL/Fl_Overlay_Window.H
-drivers/Xlib/Fl_Xlib_Graphics_Driver_image.o: ../FL/Fl_Pixmap.H
-drivers/Xlib/Fl_Xlib_Graphics_Driver_image.o: ../FL/Fl_Plugin.H
-drivers/Xlib/Fl_Xlib_Graphics_Driver_image.o: ../FL/Fl_Preferences.H
-drivers/Xlib/Fl_Xlib_Graphics_Driver_image.o: ../FL/Fl_Rect.H
-drivers/Xlib/Fl_Xlib_Graphics_Driver_image.o: ../FL/Fl_RGB_Image.H
-drivers/Xlib/Fl_Xlib_Graphics_Driver_image.o: ../FL/Fl_Scrollbar.H
-drivers/Xlib/Fl_Xlib_Graphics_Driver_image.o: ../FL/Fl_Shared_Image.H
-drivers/Xlib/Fl_Xlib_Graphics_Driver_image.o: ../FL/Fl_Slider.H
-drivers/Xlib/Fl_Xlib_Graphics_Driver_image.o: ../FL/fl_string_functions.h
-drivers/Xlib/Fl_Xlib_Graphics_Driver_image.o: ../FL/Fl_Text_Buffer.H
-drivers/Xlib/Fl_Xlib_Graphics_Driver_image.o: ../FL/Fl_Text_Display.H
-drivers/Xlib/Fl_Xlib_Graphics_Driver_image.o: ../FL/Fl_Text_Editor.H
-drivers/Xlib/Fl_Xlib_Graphics_Driver_image.o: ../FL/Fl_Tiled_Image.H
-drivers/Xlib/Fl_Xlib_Graphics_Driver_image.o: ../FL/fl_types.h
-drivers/Xlib/Fl_Xlib_Graphics_Driver_image.o: ../FL/fl_utf8.h
-drivers/Xlib/Fl_Xlib_Graphics_Driver_image.o: ../FL/Fl_Valuator.H
-drivers/Xlib/Fl_Xlib_Graphics_Driver_image.o: ../FL/Fl_Widget.H
-drivers/Xlib/Fl_Xlib_Graphics_Driver_image.o: ../FL/Fl_Widget_Surface.H
-drivers/Xlib/Fl_Xlib_Graphics_Driver_image.o: ../FL/Fl_Window.H
-drivers/Xlib/Fl_Xlib_Graphics_Driver_image.o: ../FL/platform.H
-drivers/Xlib/Fl_Xlib_Graphics_Driver_image.o: ../FL/platform_types.h
-drivers/Xlib/Fl_Xlib_Graphics_Driver_image.o: ../FL/x11.H
-drivers/Xlib/Fl_Xlib_Graphics_Driver_image.o: drivers/Unix/Fl_Unix_Screen_Driver.H
-drivers/Xlib/Fl_Xlib_Graphics_Driver_image.o: drivers/X11/Fl_X11_Screen_Driver.H
-drivers/Xlib/Fl_Xlib_Graphics_Driver_image.o: drivers/X11/Fl_X11_Window_Driver.H
-drivers/Xlib/Fl_Xlib_Graphics_Driver_image.o: drivers/Xlib/Fl_Xlib_Graphics_Driver.H
-drivers/Xlib/Fl_Xlib_Graphics_Driver_image.o: flstring.h
-drivers/Xlib/Fl_Xlib_Graphics_Driver_image.o: Fl_Screen_Driver.H
-drivers/Xlib/Fl_Xlib_Graphics_Driver_image.o: Fl_Window_Driver.H
-drivers/Xlib/Fl_Xlib_Graphics_Driver_image.o: Fl_XColor.H
-drivers/Xlib/Fl_Xlib_Graphics_Driver_line_style.o: ../config.h
-drivers/Xlib/Fl_Xlib_Graphics_Driver_line_style.o: ../FL/Enumerations.H
-drivers/Xlib/Fl_Xlib_Graphics_Driver_line_style.o: ../FL/Fl.H
-drivers/Xlib/Fl_Xlib_Graphics_Driver_line_style.o: ../FL/fl_attr.h
-drivers/Xlib/Fl_Xlib_Graphics_Driver_line_style.o: ../FL/Fl_Bitmap.H
-drivers/Xlib/Fl_Xlib_Graphics_Driver_line_style.o: ../FL/Fl_Cairo.H
-drivers/Xlib/Fl_Xlib_Graphics_Driver_line_style.o: ../FL/fl_casts.H
-drivers/Xlib/Fl_Xlib_Graphics_Driver_line_style.o: ../FL/fl_config.h
-drivers/Xlib/Fl_Xlib_Graphics_Driver_line_style.o: ../FL/Fl_Device.H
-drivers/Xlib/Fl_Xlib_Graphics_Driver_line_style.o: ../FL/fl_draw.H
-drivers/Xlib/Fl_Xlib_Graphics_Driver_line_style.o: ../FL/Fl_Export.H
-drivers/Xlib/Fl_Xlib_Graphics_Driver_line_style.o: ../FL/Fl_Graphics_Driver.H
-drivers/Xlib/Fl_Xlib_Graphics_Driver_line_style.o: ../FL/Fl_Image.H
-drivers/Xlib/Fl_Xlib_Graphics_Driver_line_style.o: ../FL/Fl_Pixmap.H
-drivers/Xlib/Fl_Xlib_Graphics_Driver_line_style.o: ../FL/Fl_Plugin.H
-drivers/Xlib/Fl_Xlib_Graphics_Driver_line_style.o: ../FL/Fl_Preferences.H
-drivers/Xlib/Fl_Xlib_Graphics_Driver_line_style.o: ../FL/Fl_RGB_Image.H
-drivers/Xlib/Fl_Xlib_Graphics_Driver_line_style.o: ../FL/fl_string_functions.h
-drivers/Xlib/Fl_Xlib_Graphics_Driver_line_style.o: ../FL/fl_types.h
-drivers/Xlib/Fl_Xlib_Graphics_Driver_line_style.o: ../FL/fl_utf8.h
-drivers/Xlib/Fl_Xlib_Graphics_Driver_line_style.o: ../FL/Fl_Widget.H
-drivers/Xlib/Fl_Xlib_Graphics_Driver_line_style.o: ../FL/platform.H
-drivers/Xlib/Fl_Xlib_Graphics_Driver_line_style.o: ../FL/platform_types.h
-drivers/Xlib/Fl_Xlib_Graphics_Driver_line_style.o: ../FL/x11.H
-drivers/Xlib/Fl_Xlib_Graphics_Driver_line_style.o: drivers/Xlib/Fl_Xlib_Graphics_Driver.H
-drivers/Xlib/Fl_Xlib_Graphics_Driver_line_style.o: flstring.h
-drivers/Xlib/Fl_Xlib_Graphics_Driver_rect.o: ../config.h
-drivers/Xlib/Fl_Xlib_Graphics_Driver_rect.o: ../FL/Enumerations.H
-drivers/Xlib/Fl_Xlib_Graphics_Driver_rect.o: ../FL/Fl.H
-drivers/Xlib/Fl_Xlib_Graphics_Driver_rect.o: ../FL/fl_attr.h
-drivers/Xlib/Fl_Xlib_Graphics_Driver_rect.o: ../FL/Fl_Bitmap.H
-drivers/Xlib/Fl_Xlib_Graphics_Driver_rect.o: ../FL/Fl_Cairo.H
-drivers/Xlib/Fl_Xlib_Graphics_Driver_rect.o: ../FL/fl_casts.H
-drivers/Xlib/Fl_Xlib_Graphics_Driver_rect.o: ../FL/fl_config.h
-drivers/Xlib/Fl_Xlib_Graphics_Driver_rect.o: ../FL/Fl_Device.H
-drivers/Xlib/Fl_Xlib_Graphics_Driver_rect.o: ../FL/fl_draw.H
-drivers/Xlib/Fl_Xlib_Graphics_Driver_rect.o: ../FL/Fl_Export.H
-drivers/Xlib/Fl_Xlib_Graphics_Driver_rect.o: ../FL/Fl_Graphics_Driver.H
-drivers/Xlib/Fl_Xlib_Graphics_Driver_rect.o: ../FL/Fl_Image.H
-drivers/Xlib/Fl_Xlib_Graphics_Driver_rect.o: ../FL/Fl_Pixmap.H
-drivers/Xlib/Fl_Xlib_Graphics_Driver_rect.o: ../FL/Fl_Plugin.H
-drivers/Xlib/Fl_Xlib_Graphics_Driver_rect.o: ../FL/Fl_Preferences.H
-drivers/Xlib/Fl_Xlib_Graphics_Driver_rect.o: ../FL/Fl_RGB_Image.H
-drivers/Xlib/Fl_Xlib_Graphics_Driver_rect.o: ../FL/fl_types.h
-drivers/Xlib/Fl_Xlib_Graphics_Driver_rect.o: ../FL/fl_utf8.h
-drivers/Xlib/Fl_Xlib_Graphics_Driver_rect.o: ../FL/Fl_Widget.H
-drivers/Xlib/Fl_Xlib_Graphics_Driver_rect.o: ../FL/platform.H
-drivers/Xlib/Fl_Xlib_Graphics_Driver_rect.o: ../FL/platform_types.h
-drivers/Xlib/Fl_Xlib_Graphics_Driver_rect.o: ../FL/x11.H
-drivers/Xlib/Fl_Xlib_Graphics_Driver_rect.o: drivers/Xlib/Fl_Xlib_Graphics_Driver.H
-drivers/Xlib/Fl_Xlib_Graphics_Driver_vertex.o: ../config.h
-drivers/Xlib/Fl_Xlib_Graphics_Driver_vertex.o: ../FL/Enumerations.H
-drivers/Xlib/Fl_Xlib_Graphics_Driver_vertex.o: ../FL/Fl.H
-drivers/Xlib/Fl_Xlib_Graphics_Driver_vertex.o: ../FL/fl_attr.h
-drivers/Xlib/Fl_Xlib_Graphics_Driver_vertex.o: ../FL/Fl_Bitmap.H
-drivers/Xlib/Fl_Xlib_Graphics_Driver_vertex.o: ../FL/fl_config.h
-drivers/Xlib/Fl_Xlib_Graphics_Driver_vertex.o: ../FL/Fl_Device.H
-drivers/Xlib/Fl_Xlib_Graphics_Driver_vertex.o: ../FL/fl_draw.H
-drivers/Xlib/Fl_Xlib_Graphics_Driver_vertex.o: ../FL/Fl_Export.H
-drivers/Xlib/Fl_Xlib_Graphics_Driver_vertex.o: ../FL/Fl_Graphics_Driver.H
-drivers/Xlib/Fl_Xlib_Graphics_Driver_vertex.o: ../FL/Fl_Image.H
-drivers/Xlib/Fl_Xlib_Graphics_Driver_vertex.o: ../FL/Fl_Pixmap.H
-drivers/Xlib/Fl_Xlib_Graphics_Driver_vertex.o: ../FL/Fl_Plugin.H
-drivers/Xlib/Fl_Xlib_Graphics_Driver_vertex.o: ../FL/Fl_Preferences.H
-drivers/Xlib/Fl_Xlib_Graphics_Driver_vertex.o: ../FL/Fl_RGB_Image.H
-drivers/Xlib/Fl_Xlib_Graphics_Driver_vertex.o: ../FL/fl_types.h
-drivers/Xlib/Fl_Xlib_Graphics_Driver_vertex.o: ../FL/Fl_Widget.H
-drivers/Xlib/Fl_Xlib_Graphics_Driver_vertex.o: ../FL/math.h
-drivers/Xlib/Fl_Xlib_Graphics_Driver_vertex.o: ../FL/platform.H
-drivers/Xlib/Fl_Xlib_Graphics_Driver_vertex.o: ../FL/platform_types.h
-drivers/Xlib/Fl_Xlib_Graphics_Driver_vertex.o: ../FL/x11.H
-drivers/Xlib/Fl_Xlib_Graphics_Driver_vertex.o: drivers/Xlib/Fl_Xlib_Graphics_Driver.H
-drivers/Xlib/Fl_Xlib_Image_Surface_Driver.o: ../config.h
-drivers/Xlib/Fl_Xlib_Image_Surface_Driver.o: ../FL/Enumerations.H
-drivers/Xlib/Fl_Xlib_Image_Surface_Driver.o: ../FL/Fl.H
-drivers/Xlib/Fl_Xlib_Image_Surface_Driver.o: ../FL/fl_attr.h
-drivers/Xlib/Fl_Xlib_Image_Surface_Driver.o: ../FL/Fl_Bitmap.H
-drivers/Xlib/Fl_Xlib_Image_Surface_Driver.o: ../FL/Fl_Cairo.H
-drivers/Xlib/Fl_Xlib_Image_Surface_Driver.o: ../FL/fl_casts.H
-drivers/Xlib/Fl_Xlib_Image_Surface_Driver.o: ../FL/fl_config.h
-drivers/Xlib/Fl_Xlib_Image_Surface_Driver.o: ../FL/Fl_Device.H
-drivers/Xlib/Fl_Xlib_Image_Surface_Driver.o: ../FL/fl_draw.H
-drivers/Xlib/Fl_Xlib_Image_Surface_Driver.o: ../FL/Fl_Export.H
-drivers/Xlib/Fl_Xlib_Image_Surface_Driver.o: ../FL/Fl_Graphics_Driver.H
-drivers/Xlib/Fl_Xlib_Image_Surface_Driver.o: ../FL/Fl_Group.H
-drivers/Xlib/Fl_Xlib_Image_Surface_Driver.o: ../FL/Fl_Image.H
-drivers/Xlib/Fl_Xlib_Image_Surface_Driver.o: ../FL/Fl_Image_Surface.H
-drivers/Xlib/Fl_Xlib_Image_Surface_Driver.o: ../FL/Fl_Pixmap.H
-drivers/Xlib/Fl_Xlib_Image_Surface_Driver.o: ../FL/Fl_Plugin.H
-drivers/Xlib/Fl_Xlib_Image_Surface_Driver.o: ../FL/Fl_Preferences.H
-drivers/Xlib/Fl_Xlib_Image_Surface_Driver.o: ../FL/Fl_Rect.H
-drivers/Xlib/Fl_Xlib_Image_Surface_Driver.o: ../FL/Fl_RGB_Image.H
-drivers/Xlib/Fl_Xlib_Image_Surface_Driver.o: ../FL/Fl_Scrollbar.H
-drivers/Xlib/Fl_Xlib_Image_Surface_Driver.o: ../FL/Fl_Shared_Image.H
-drivers/Xlib/Fl_Xlib_Image_Surface_Driver.o: ../FL/Fl_Slider.H
-drivers/Xlib/Fl_Xlib_Image_Surface_Driver.o: ../FL/Fl_Text_Buffer.H
-drivers/Xlib/Fl_Xlib_Image_Surface_Driver.o: ../FL/Fl_Text_Display.H
-drivers/Xlib/Fl_Xlib_Image_Surface_Driver.o: ../FL/Fl_Text_Editor.H
-drivers/Xlib/Fl_Xlib_Image_Surface_Driver.o: ../FL/fl_types.h
-drivers/Xlib/Fl_Xlib_Image_Surface_Driver.o: ../FL/fl_utf8.h
-drivers/Xlib/Fl_Xlib_Image_Surface_Driver.o: ../FL/Fl_Valuator.H
-drivers/Xlib/Fl_Xlib_Image_Surface_Driver.o: ../FL/Fl_Widget.H
-drivers/Xlib/Fl_Xlib_Image_Surface_Driver.o: ../FL/Fl_Widget_Surface.H
-drivers/Xlib/Fl_Xlib_Image_Surface_Driver.o: ../FL/Fl_Window.H
-drivers/Xlib/Fl_Xlib_Image_Surface_Driver.o: ../FL/platform.H
-drivers/Xlib/Fl_Xlib_Image_Surface_Driver.o: ../FL/platform_types.h
-drivers/Xlib/Fl_Xlib_Image_Surface_Driver.o: ../FL/x11.H
-drivers/Xlib/Fl_Xlib_Image_Surface_Driver.o: drivers/Xlib/Fl_Xlib_Graphics_Driver.H
-drivers/Xlib/Fl_Xlib_Image_Surface_Driver.o: drivers/Xlib/Fl_Xlib_Image_Surface_Driver.H
-drivers/Xlib/Fl_Xlib_Image_Surface_Driver.o: Fl_Screen_Driver.H
-filename_absolute.o: ../config.h
-filename_absolute.o: ../FL/Enumerations.H
-filename_absolute.o: ../FL/filename.H
-filename_absolute.o: ../FL/Fl.H
-filename_absolute.o: ../FL/fl_attr.h
-filename_absolute.o: ../FL/Fl_Cairo.H
-filename_absolute.o: ../FL/fl_casts.H
-filename_absolute.o: ../FL/fl_config.h
-filename_absolute.o: ../FL/Fl_Export.H
-filename_absolute.o: ../FL/Fl_Preferences.H
-filename_absolute.o: ../FL/fl_string_functions.h
-filename_absolute.o: ../FL/fl_types.h
-filename_absolute.o: ../FL/fl_utf8.h
-filename_absolute.o: ../FL/platform_types.h
-filename_absolute.o: flstring.h
-filename_absolute.o: Fl_System_Driver.H
-filename_expand.o: ../FL/Enumerations.H
-filename_expand.o: ../FL/filename.H
-filename_expand.o: ../FL/Fl.H
-filename_expand.o: ../FL/fl_attr.h
-filename_expand.o: ../FL/Fl_Cairo.H
-filename_expand.o: ../FL/fl_casts.H
-filename_expand.o: ../FL/fl_config.h
-filename_expand.o: ../FL/Fl_Export.H
-filename_expand.o: ../FL/Fl_Preferences.H
-filename_expand.o: ../FL/fl_types.h
-filename_expand.o: ../FL/fl_utf8.h
-filename_expand.o: ../FL/platform_types.h
-filename_expand.o: Fl_System_Driver.H
-filename_ext.o: ../FL/Enumerations.H
-filename_ext.o: ../FL/filename.H
-filename_ext.o: ../FL/Fl.H
-filename_ext.o: ../FL/fl_attr.h
-filename_ext.o: ../FL/Fl_Cairo.H
-filename_ext.o: ../FL/fl_casts.H
-filename_ext.o: ../FL/fl_config.h
-filename_ext.o: ../FL/Fl_Export.H
-filename_ext.o: ../FL/Fl_Preferences.H
-filename_ext.o: ../FL/fl_types.h
-filename_ext.o: ../FL/fl_utf8.h
-filename_ext.o: ../FL/platform_types.h
-filename_ext.o: Fl_System_Driver.H
-filename_isdir.o: ../config.h
-filename_isdir.o: ../FL/Enumerations.H
-filename_isdir.o: ../FL/filename.H
-filename_isdir.o: ../FL/Fl.H
-filename_isdir.o: ../FL/fl_attr.h
-filename_isdir.o: ../FL/Fl_Cairo.H
-filename_isdir.o: ../FL/fl_casts.H
-filename_isdir.o: ../FL/fl_config.h
-filename_isdir.o: ../FL/Fl_Export.H
-filename_isdir.o: ../FL/Fl_Preferences.H
-filename_isdir.o: ../FL/fl_string_functions.h
-filename_isdir.o: ../FL/fl_types.h
-filename_isdir.o: ../FL/fl_utf8.h
-filename_isdir.o: ../FL/platform_types.h
-filename_isdir.o: flstring.h
-filename_isdir.o: Fl_System_Driver.H
-filename_list.o: ../config.h
-filename_list.o: ../FL/Enumerations.H
-filename_list.o: ../FL/filename.H
-filename_list.o: ../FL/Fl.H
-filename_list.o: ../FL/fl_attr.h
-filename_list.o: ../FL/Fl_Cairo.H
-filename_list.o: ../FL/fl_casts.H
-filename_list.o: ../FL/fl_config.h
-filename_list.o: ../FL/Fl_Export.H
-filename_list.o: ../FL/Fl_Preferences.H
-filename_list.o: ../FL/fl_string_functions.h
-filename_list.o: ../FL/fl_types.h
-filename_list.o: ../FL/fl_utf8.h
-filename_list.o: ../FL/platform_types.h
-filename_list.o: flstring.h
-filename_list.o: Fl_System_Driver.H
-filename_match.o: ../FL/filename.H
-filename_match.o: ../FL/fl_config.h
-filename_match.o: ../FL/Fl_Export.H
-filename_match.o: ../FL/platform_types.h
-filename_setext.o: ../config.h
-filename_setext.o: ../FL/filename.H
-filename_setext.o: ../FL/fl_config.h
-filename_setext.o: ../FL/Fl_Export.H
-filename_setext.o: ../FL/fl_string_functions.h
-filename_setext.o: ../FL/platform_types.h
-filename_setext.o: flstring.h
-Fl.o: ../config.h
-Fl.o: ../FL/Enumerations.H
-Fl.o: ../FL/filename.H
-Fl.o: ../FL/Fl.H
-Fl.o: ../FL/fl_attr.h
-Fl.o: ../FL/Fl_Bitmap.H
-Fl.o: ../FL/Fl_Cairo.H
-Fl.o: ../FL/fl_casts.H
-Fl.o: ../FL/fl_config.h
-Fl.o: ../FL/Fl_Device.H
-Fl.o: ../FL/Fl_Double_Window.H
-Fl.o: ../FL/fl_draw.H
-Fl.o: ../FL/Fl_Export.H
-Fl.o: ../FL/Fl_Graphics_Driver.H
-Fl.o: ../FL/Fl_Group.H
-Fl.o: ../FL/Fl_Image.H
-Fl.o: ../FL/Fl_Overlay_Window.H
-Fl.o: ../FL/Fl_Pixmap.H
-Fl.o: ../FL/Fl_Plugin.H
-Fl.o: ../FL/Fl_Preferences.H
-Fl.o: ../FL/Fl_Rect.H
-Fl.o: ../FL/Fl_RGB_Image.H
-Fl.o: ../FL/Fl_Scrollbar.H
-Fl.o: ../FL/Fl_Slider.H
-Fl.o: ../FL/fl_string_functions.h
-Fl.o: ../FL/Fl_Text_Buffer.H
-Fl.o: ../FL/Fl_Text_Display.H
-Fl.o: ../FL/Fl_Text_Editor.H
-Fl.o: ../FL/Fl_Tooltip.H
-Fl.o: ../FL/fl_types.h
-Fl.o: ../FL/fl_utf8.h
-Fl.o: ../FL/Fl_Valuator.H
-Fl.o: ../FL/Fl_Widget.H
-Fl.o: ../FL/Fl_Window.H
-Fl.o: ../FL/platform.H
-Fl.o: ../FL/platform_types.h
-Fl.o: ../FL/x11.H
-Fl.o: flstring.h
-Fl.o: Fl_Screen_Driver.H
-Fl.o: Fl_System_Driver.H
-Fl.o: Fl_Timeout.h
-Fl.o: Fl_Window_Driver.H
-flstring.o: ../config.h
-flstring.o: ../FL/fl_config.h
-flstring.o: ../FL/Fl_Export.H
-flstring.o: ../FL/fl_string_functions.h
-flstring.o: flstring.h
-Fl_abort.o: ../FL/Enumerations.H
-Fl_abort.o: ../FL/filename.H
-Fl_abort.o: ../FL/Fl.H
-Fl_abort.o: ../FL/fl_attr.h
-Fl_abort.o: ../FL/Fl_Cairo.H
-Fl_abort.o: ../FL/fl_casts.H
-Fl_abort.o: ../FL/fl_config.h
-Fl_abort.o: ../FL/Fl_Export.H
-Fl_abort.o: ../FL/Fl_Preferences.H
-Fl_abort.o: ../FL/fl_types.h
-Fl_abort.o: ../FL/fl_utf8.h
-Fl_abort.o: ../FL/platform_types.h
-Fl_abort.o: Fl_System_Driver.H
-Fl_add_idle.o: ../FL/Enumerations.H
-Fl_add_idle.o: ../FL/Fl.H
-Fl_add_idle.o: ../FL/fl_attr.h
-Fl_add_idle.o: ../FL/Fl_Cairo.H
-Fl_add_idle.o: ../FL/fl_casts.H
-Fl_add_idle.o: ../FL/fl_config.h
-Fl_add_idle.o: ../FL/Fl_Export.H
-Fl_add_idle.o: ../FL/fl_types.h
-Fl_add_idle.o: ../FL/fl_utf8.h
-Fl_add_idle.o: ../FL/platform_types.h
-Fl_Adjuster.o: ../FL/Enumerations.H
-Fl_Adjuster.o: ../FL/Fl.H
-Fl_Adjuster.o: ../FL/Fl_Adjuster.H
-Fl_Adjuster.o: ../FL/fl_attr.h
-Fl_Adjuster.o: ../FL/Fl_Bitmap.H
-Fl_Adjuster.o: ../FL/Fl_Cairo.H
-Fl_Adjuster.o: ../FL/fl_casts.H
-Fl_Adjuster.o: ../FL/fl_config.h
-Fl_Adjuster.o: ../FL/fl_draw.H
-Fl_Adjuster.o: ../FL/Fl_Export.H
-Fl_Adjuster.o: ../FL/Fl_Image.H
-Fl_Adjuster.o: ../FL/fl_types.h
-Fl_Adjuster.o: ../FL/fl_utf8.h
-Fl_Adjuster.o: ../FL/Fl_Valuator.H
-Fl_Adjuster.o: ../FL/Fl_Widget.H
-Fl_Adjuster.o: ../FL/platform_types.h
-Fl_Adjuster.o: fastarrow.h
-Fl_Adjuster.o: mediumarrow.h
-Fl_Adjuster.o: slowarrow.h
-Fl_Anim_GIF_Image.o: ../FL/Enumerations.H
-Fl_Anim_GIF_Image.o: ../FL/Fl.H
-Fl_Anim_GIF_Image.o: ../FL/Fl_Anim_GIF_Image.H
-Fl_Anim_GIF_Image.o: ../FL/fl_attr.h
-Fl_Anim_GIF_Image.o: ../FL/Fl_Bitmap.H
-Fl_Anim_GIF_Image.o: ../FL/Fl_Cairo.H
-Fl_Anim_GIF_Image.o: ../FL/fl_casts.H
-Fl_Anim_GIF_Image.o: ../FL/fl_config.h
-Fl_Anim_GIF_Image.o: ../FL/Fl_Device.H
-Fl_Anim_GIF_Image.o: ../FL/Fl_Export.H
-Fl_Anim_GIF_Image.o: ../FL/Fl_GIF_Image.H
-Fl_Anim_GIF_Image.o: ../FL/Fl_Graphics_Driver.H
-Fl_Anim_GIF_Image.o: ../FL/Fl_Group.H
-Fl_Anim_GIF_Image.o: ../FL/Fl_Image.H
-Fl_Anim_GIF_Image.o: ../FL/Fl_Pixmap.H
-Fl_Anim_GIF_Image.o: ../FL/Fl_Plugin.H
-Fl_Anim_GIF_Image.o: ../FL/Fl_Preferences.H
-Fl_Anim_GIF_Image.o: ../FL/Fl_RGB_Image.H
-Fl_Anim_GIF_Image.o: ../FL/Fl_Shared_Image.H
-Fl_Anim_GIF_Image.o: ../FL/fl_string_functions.h
-Fl_Anim_GIF_Image.o: ../FL/fl_types.h
-Fl_Anim_GIF_Image.o: ../FL/fl_utf8.h
-Fl_Anim_GIF_Image.o: ../FL/Fl_Widget.H
-Fl_Anim_GIF_Image.o: ../FL/platform_types.h
-fl_arc.o: ../FL/fl_draw.H
-fl_arc.o: ../FL/math.h
-Fl_arg.o: ../FL/Enumerations.H
-Fl_arg.o: ../FL/filename.H
-Fl_arg.o: ../FL/Fl.H
-Fl_arg.o: ../FL/fl_attr.h
-Fl_arg.o: ../FL/Fl_Bitmap.H
-Fl_arg.o: ../FL/Fl_Cairo.H
-Fl_arg.o: ../FL/fl_casts.H
-Fl_arg.o: ../FL/fl_config.h
-Fl_arg.o: ../FL/Fl_Device.H
-Fl_arg.o: ../FL/Fl_Double_Window.H
-Fl_arg.o: ../FL/fl_draw.H
-Fl_arg.o: ../FL/Fl_Export.H
-Fl_arg.o: ../FL/Fl_Graphics_Driver.H
-Fl_arg.o: ../FL/Fl_Group.H
-Fl_arg.o: ../FL/Fl_Image.H
-Fl_arg.o: ../FL/Fl_Overlay_Window.H
-Fl_arg.o: ../FL/Fl_Pixmap.H
-Fl_arg.o: ../FL/Fl_Plugin.H
-Fl_arg.o: ../FL/Fl_Preferences.H
-Fl_arg.o: ../FL/Fl_Rect.H
-Fl_arg.o: ../FL/Fl_RGB_Image.H
-Fl_arg.o: ../FL/Fl_Scrollbar.H
-Fl_arg.o: ../FL/Fl_Slider.H
-Fl_arg.o: ../FL/Fl_Text_Buffer.H
-Fl_arg.o: ../FL/Fl_Text_Display.H
-Fl_arg.o: ../FL/Fl_Text_Editor.H
-Fl_arg.o: ../FL/Fl_Tooltip.H
-Fl_arg.o: ../FL/fl_types.h
-Fl_arg.o: ../FL/fl_utf8.h
-Fl_arg.o: ../FL/Fl_Valuator.H
-Fl_arg.o: ../FL/Fl_Widget.H
-Fl_arg.o: ../FL/Fl_Window.H
-Fl_arg.o: ../FL/platform_types.h
-Fl_arg.o: Fl_Screen_Driver.H
-Fl_arg.o: Fl_System_Driver.H
-Fl_arg.o: Fl_Window_Driver.H
-fl_ask.o: ../config.h
-fl_ask.o: ../FL/Enumerations.H
-fl_ask.o: ../FL/Fl.H
-fl_ask.o: ../FL/fl_ask.H
-fl_ask.o: ../FL/fl_attr.h
-fl_ask.o: ../FL/Fl_Bitmap.H
-fl_ask.o: ../FL/Fl_Box.H
-fl_ask.o: ../FL/Fl_Cairo.H
-fl_ask.o: ../FL/fl_casts.H
-fl_ask.o: ../FL/fl_config.h
-fl_ask.o: ../FL/Fl_Device.H
-fl_ask.o: ../FL/fl_draw.H
-fl_ask.o: ../FL/Fl_Export.H
-fl_ask.o: ../FL/Fl_Graphics_Driver.H
-fl_ask.o: ../FL/Fl_Group.H
-fl_ask.o: ../FL/Fl_Image.H
-fl_ask.o: ../FL/Fl_Input_.H
-fl_ask.o: ../FL/Fl_Pixmap.H
-fl_ask.o: ../FL/Fl_Plugin.H
-fl_ask.o: ../FL/Fl_Preferences.H
-fl_ask.o: ../FL/Fl_Rect.H
-fl_ask.o: ../FL/Fl_RGB_Image.H
-fl_ask.o: ../FL/Fl_Scrollbar.H
-fl_ask.o: ../FL/Fl_Slider.H
-fl_ask.o: ../FL/fl_string_functions.h
-fl_ask.o: ../FL/Fl_Text_Buffer.H
-fl_ask.o: ../FL/Fl_Text_Display.H
-fl_ask.o: ../FL/Fl_Text_Editor.H
-fl_ask.o: ../FL/fl_types.h
-fl_ask.o: ../FL/fl_utf8.h
-fl_ask.o: ../FL/Fl_Valuator.H
-fl_ask.o: ../FL/Fl_Widget.H
-fl_ask.o: ../FL/Fl_Window.H
-fl_ask.o: ../FL/platform_types.h
-fl_ask.o: flstring.h
-fl_ask.o: Fl_Message.h
-fl_ask.o: Fl_Screen_Driver.H
-Fl_Bitmap.o: ../FL/Enumerations.H
-Fl_Bitmap.o: ../FL/Fl.H
-Fl_Bitmap.o: ../FL/fl_attr.h
-Fl_Bitmap.o: ../FL/Fl_Bitmap.H
-Fl_Bitmap.o: ../FL/Fl_Cairo.H
-Fl_Bitmap.o: ../FL/fl_casts.H
-Fl_Bitmap.o: ../FL/fl_config.h
-Fl_Bitmap.o: ../FL/fl_draw.H
-Fl_Bitmap.o: ../FL/Fl_Export.H
-Fl_Bitmap.o: ../FL/Fl_Image.H
-Fl_Bitmap.o: ../FL/Fl_Menu_Item.H
-Fl_Bitmap.o: ../FL/Fl_Multi_Label.H
-Fl_Bitmap.o: ../FL/fl_types.h
-Fl_Bitmap.o: ../FL/fl_utf8.h
-Fl_Bitmap.o: ../FL/Fl_Widget.H
-Fl_Bitmap.o: ../FL/platform_types.h
-Fl_BMP_Image.o: ../FL/Enumerations.H
-Fl_BMP_Image.o: ../FL/Fl.H
-Fl_BMP_Image.o: ../FL/fl_attr.h
-Fl_BMP_Image.o: ../FL/Fl_BMP_Image.H
-Fl_BMP_Image.o: ../FL/Fl_Cairo.H
-Fl_BMP_Image.o: ../FL/fl_casts.H
-Fl_BMP_Image.o: ../FL/fl_config.h
-Fl_BMP_Image.o: ../FL/Fl_Export.H
-Fl_BMP_Image.o: ../FL/Fl_Image.H
-Fl_BMP_Image.o: ../FL/fl_types.h
-Fl_BMP_Image.o: ../FL/fl_utf8.h
-Fl_BMP_Image.o: ../FL/platform_types.h
-Fl_BMP_Image.o: Fl_Image_Reader.h
-Fl_Box.o: ../FL/Fl.H
-Fl_Box.o: ../FL/Fl_Box.H
-Fl_Box.o: ../FL/Fl_Widget.H
-fl_boxtype.o: ../config.h
-fl_boxtype.o: ../FL/Enumerations.H
-fl_boxtype.o: ../FL/Fl.H
-fl_boxtype.o: ../FL/fl_attr.h
-fl_boxtype.o: ../FL/Fl_Cairo.H
-fl_boxtype.o: ../FL/fl_casts.H
-fl_boxtype.o: ../FL/fl_config.h
-fl_boxtype.o: ../FL/fl_draw.H
-fl_boxtype.o: ../FL/Fl_Export.H
-fl_boxtype.o: ../FL/fl_types.h
-fl_boxtype.o: ../FL/fl_utf8.h
-fl_boxtype.o: ../FL/Fl_Widget.H
-fl_boxtype.o: ../FL/platform_types.h
-Fl_Browser.o: ../config.h
-Fl_Browser.o: ../FL/Enumerations.H
-Fl_Browser.o: ../FL/Fl.H
-Fl_Browser.o: ../FL/fl_attr.h
-Fl_Browser.o: ../FL/Fl_Browser.H
-Fl_Browser.o: ../FL/Fl_Browser_.H
-Fl_Browser.o: ../FL/Fl_Cairo.H
-Fl_Browser.o: ../FL/fl_casts.H
-Fl_Browser.o: ../FL/fl_config.h
-Fl_Browser.o: ../FL/fl_draw.H
-Fl_Browser.o: ../FL/Fl_Export.H
-Fl_Browser.o: ../FL/Fl_Group.H
-Fl_Browser.o: ../FL/Fl_Hold_Browser.H
-Fl_Browser.o: ../FL/Fl_Image.H
-Fl_Browser.o: ../FL/Fl_Multi_Browser.H
-Fl_Browser.o: ../FL/Fl_Scrollbar.H
-Fl_Browser.o: ../FL/Fl_Select_Browser.H
-Fl_Browser.o: ../FL/Fl_Slider.H
-Fl_Browser.o: ../FL/fl_string_functions.h
-Fl_Browser.o: ../FL/fl_types.h
-Fl_Browser.o: ../FL/fl_utf8.h
-Fl_Browser.o: ../FL/Fl_Valuator.H
-Fl_Browser.o: ../FL/Fl_Widget.H
-Fl_Browser.o: ../FL/platform_types.h
-Fl_Browser.o: flstring.h
-Fl_Browser_.o: ../FL/Enumerations.H
-Fl_Browser_.o: ../FL/Fl.H
-Fl_Browser_.o: ../FL/fl_attr.h
-Fl_Browser_.o: ../FL/Fl_Browser_.H
-Fl_Browser_.o: ../FL/Fl_Cairo.H
-Fl_Browser_.o: ../FL/fl_casts.H
-Fl_Browser_.o: ../FL/fl_config.h
-Fl_Browser_.o: ../FL/fl_draw.H
-Fl_Browser_.o: ../FL/Fl_Export.H
-Fl_Browser_.o: ../FL/Fl_Group.H
-Fl_Browser_.o: ../FL/Fl_Scrollbar.H
-Fl_Browser_.o: ../FL/Fl_Slider.H
-Fl_Browser_.o: ../FL/fl_types.h
-Fl_Browser_.o: ../FL/fl_utf8.h
-Fl_Browser_.o: ../FL/Fl_Valuator.H
-Fl_Browser_.o: ../FL/Fl_Widget.H
-Fl_Browser_.o: ../FL/platform_types.h
-Fl_Browser_load.o: ../FL/Enumerations.H
-Fl_Browser_load.o: ../FL/Fl.H
-Fl_Browser_load.o: ../FL/fl_attr.h
-Fl_Browser_load.o: ../FL/Fl_Browser.H
-Fl_Browser_load.o: ../FL/Fl_Browser_.H
-Fl_Browser_load.o: ../FL/Fl_Cairo.H
-Fl_Browser_load.o: ../FL/fl_casts.H
-Fl_Browser_load.o: ../FL/fl_config.h
-Fl_Browser_load.o: ../FL/Fl_Export.H
-Fl_Browser_load.o: ../FL/Fl_Group.H
-Fl_Browser_load.o: ../FL/Fl_Image.H
-Fl_Browser_load.o: ../FL/Fl_Scrollbar.H
-Fl_Browser_load.o: ../FL/Fl_Slider.H
-Fl_Browser_load.o: ../FL/fl_types.h
-Fl_Browser_load.o: ../FL/fl_utf8.h
-Fl_Browser_load.o: ../FL/Fl_Valuator.H
-Fl_Browser_load.o: ../FL/Fl_Widget.H
-Fl_Browser_load.o: ../FL/platform_types.h
-Fl_Button.o: ../FL/Enumerations.H
-Fl_Button.o: ../FL/Fl.H
-Fl_Button.o: ../FL/fl_attr.h
-Fl_Button.o: ../FL/Fl_Bitmap.H
-Fl_Button.o: ../FL/Fl_Button.H
-Fl_Button.o: ../FL/Fl_Cairo.H
-Fl_Button.o: ../FL/fl_casts.H
-Fl_Button.o: ../FL/fl_config.h
-Fl_Button.o: ../FL/fl_draw.H
-Fl_Button.o: ../FL/Fl_Export.H
-Fl_Button.o: ../FL/Fl_Group.H
-Fl_Button.o: ../FL/Fl_Image.H
-Fl_Button.o: ../FL/Fl_Radio_Button.H
-Fl_Button.o: ../FL/Fl_Toggle_Button.H
-Fl_Button.o: ../FL/fl_types.h
-Fl_Button.o: ../FL/fl_utf8.h
-Fl_Button.o: ../FL/Fl_Widget.H
-Fl_Button.o: ../FL/Fl_Window.H
-Fl_Button.o: ../FL/platform_types.h
-Fl_Cairo.o: ../FL/Enumerations.H
-Fl_Cairo.o: ../FL/Fl.H
-Fl_Cairo.o: ../FL/fl_attr.h
-Fl_Cairo.o: ../FL/Fl_Bitmap.H
-Fl_Cairo.o: ../FL/Fl_Cairo.H
-Fl_Cairo.o: ../FL/fl_casts.H
-Fl_Cairo.o: ../FL/fl_config.h
-Fl_Cairo.o: ../FL/Fl_Export.H
-Fl_Cairo.o: ../FL/Fl_Group.H
-Fl_Cairo.o: ../FL/Fl_Image.H
-Fl_Cairo.o: ../FL/fl_types.h
-Fl_Cairo.o: ../FL/fl_utf8.h
-Fl_Cairo.o: ../FL/Fl_Widget.H
-Fl_Cairo.o: ../FL/Fl_Window.H
-Fl_Cairo.o: ../FL/platform.H
-Fl_Cairo.o: ../FL/platform_types.h
-Fl_Cairo.o: ../FL/x11.H
-Fl_Chart.o: ../config.h
-Fl_Chart.o: ../FL/Enumerations.H
-Fl_Chart.o: ../FL/Fl.H
-Fl_Chart.o: ../FL/fl_attr.h
-Fl_Chart.o: ../FL/Fl_Cairo.H
-Fl_Chart.o: ../FL/fl_casts.H
-Fl_Chart.o: ../FL/Fl_Chart.H
-Fl_Chart.o: ../FL/fl_config.h
-Fl_Chart.o: ../FL/fl_draw.H
-Fl_Chart.o: ../FL/Fl_Export.H
-Fl_Chart.o: ../FL/fl_string_functions.h
-Fl_Chart.o: ../FL/fl_types.h
-Fl_Chart.o: ../FL/fl_utf8.h
-Fl_Chart.o: ../FL/Fl_Widget.H
-Fl_Chart.o: ../FL/math.h
-Fl_Chart.o: ../FL/platform_types.h
-Fl_Chart.o: flstring.h
-Fl_Check_Browser.o: ../config.h
-Fl_Check_Browser.o: ../FL/Enumerations.H
-Fl_Check_Browser.o: ../FL/Fl.H
-Fl_Check_Browser.o: ../FL/fl_attr.h
-Fl_Check_Browser.o: ../FL/Fl_Browser_.H
-Fl_Check_Browser.o: ../FL/Fl_Cairo.H
-Fl_Check_Browser.o: ../FL/fl_casts.H
-Fl_Check_Browser.o: ../FL/Fl_Check_Browser.H
-Fl_Check_Browser.o: ../FL/fl_config.h
-Fl_Check_Browser.o: ../FL/fl_draw.H
-Fl_Check_Browser.o: ../FL/Fl_Export.H
-Fl_Check_Browser.o: ../FL/Fl_Group.H
-Fl_Check_Browser.o: ../FL/Fl_Scrollbar.H
-Fl_Check_Browser.o: ../FL/Fl_Slider.H
-Fl_Check_Browser.o: ../FL/fl_string_functions.h
-Fl_Check_Browser.o: ../FL/fl_types.h
-Fl_Check_Browser.o: ../FL/fl_utf8.h
-Fl_Check_Browser.o: ../FL/Fl_Valuator.H
-Fl_Check_Browser.o: ../FL/Fl_Widget.H
-Fl_Check_Browser.o: ../FL/platform_types.h
-Fl_Check_Browser.o: flstring.h
-Fl_Check_Button.o: ../FL/Enumerations.H
-Fl_Check_Button.o: ../FL/Fl.H
-Fl_Check_Button.o: ../FL/fl_attr.h
-Fl_Check_Button.o: ../FL/Fl_Button.H
-Fl_Check_Button.o: ../FL/Fl_Cairo.H
-Fl_Check_Button.o: ../FL/fl_casts.H
-Fl_Check_Button.o: ../FL/Fl_Check_Button.H
-Fl_Check_Button.o: ../FL/fl_config.h
-Fl_Check_Button.o: ../FL/Fl_Export.H
-Fl_Check_Button.o: ../FL/Fl_Light_Button.H
-Fl_Check_Button.o: ../FL/fl_types.h
-Fl_Check_Button.o: ../FL/fl_utf8.h
-Fl_Check_Button.o: ../FL/platform_types.h
-Fl_Choice.o: ../config.h
-Fl_Choice.o: ../FL/Enumerations.H
-Fl_Choice.o: ../FL/Fl.H
-Fl_Choice.o: ../FL/fl_attr.h
-Fl_Choice.o: ../FL/Fl_Cairo.H
-Fl_Choice.o: ../FL/fl_casts.H
-Fl_Choice.o: ../FL/Fl_Choice.H
-Fl_Choice.o: ../FL/fl_config.h
-Fl_Choice.o: ../FL/fl_draw.H
-Fl_Choice.o: ../FL/Fl_Export.H
-Fl_Choice.o: ../FL/Fl_Image.H
-Fl_Choice.o: ../FL/Fl_Menu_.H
-Fl_Choice.o: ../FL/Fl_Menu_Item.H
-Fl_Choice.o: ../FL/Fl_Multi_Label.H
-Fl_Choice.o: ../FL/fl_string_functions.h
-Fl_Choice.o: ../FL/fl_types.h
-Fl_Choice.o: ../FL/fl_utf8.h
-Fl_Choice.o: ../FL/Fl_Widget.H
-Fl_Choice.o: ../FL/platform_types.h
-Fl_Choice.o: flstring.h
-Fl_Clock.o: ../FL/Enumerations.H
-Fl_Clock.o: ../FL/filename.H
-Fl_Clock.o: ../FL/Fl.H
-Fl_Clock.o: ../FL/fl_attr.h
-Fl_Clock.o: ../FL/Fl_Cairo.H
-Fl_Clock.o: ../FL/fl_casts.H
-Fl_Clock.o: ../FL/Fl_Clock.H
-Fl_Clock.o: ../FL/fl_config.h
-Fl_Clock.o: ../FL/fl_draw.H
-Fl_Clock.o: ../FL/Fl_Export.H
-Fl_Clock.o: ../FL/Fl_Preferences.H
-Fl_Clock.o: ../FL/Fl_Round_Clock.H
-Fl_Clock.o: ../FL/fl_types.h
-Fl_Clock.o: ../FL/fl_utf8.h
-Fl_Clock.o: ../FL/Fl_Widget.H
-Fl_Clock.o: ../FL/platform_types.h
-Fl_Clock.o: Fl_System_Driver.H
-fl_color.o: ../FL/Enumerations.H
-fl_color.o: ../FL/Fl.H
-fl_color.o: ../FL/fl_attr.h
-fl_color.o: ../FL/Fl_Bitmap.H
-fl_color.o: ../FL/Fl_Cairo.H
-fl_color.o: ../FL/fl_casts.H
-fl_color.o: ../FL/fl_config.h
-fl_color.o: ../FL/Fl_Device.H
-fl_color.o: ../FL/Fl_Export.H
-fl_color.o: ../FL/Fl_Graphics_Driver.H
-fl_color.o: ../FL/Fl_Image.H
-fl_color.o: ../FL/Fl_Pixmap.H
-fl_color.o: ../FL/Fl_Plugin.H
-fl_color.o: ../FL/Fl_Preferences.H
-fl_color.o: ../FL/Fl_RGB_Image.H
-fl_color.o: ../FL/fl_types.h
-fl_color.o: ../FL/fl_utf8.h
-fl_color.o: ../FL/Fl_Widget.H
-fl_color.o: ../FL/platform_types.h
-fl_color.o: fl_cmap.h
-Fl_Color_Chooser.o: ../FL/Enumerations.H
-Fl_Color_Chooser.o: ../FL/Fl.H
-Fl_Color_Chooser.o: ../FL/fl_attr.h
-Fl_Color_Chooser.o: ../FL/Fl_Bitmap.H
-Fl_Color_Chooser.o: ../FL/Fl_Box.H
-Fl_Color_Chooser.o: ../FL/Fl_Button.H
-Fl_Color_Chooser.o: ../FL/Fl_Cairo.H
-Fl_Color_Chooser.o: ../FL/fl_casts.H
-Fl_Color_Chooser.o: ../FL/Fl_Choice.H
-Fl_Color_Chooser.o: ../FL/Fl_Color_Chooser.H
-Fl_Color_Chooser.o: ../FL/fl_config.h
-Fl_Color_Chooser.o: ../FL/fl_draw.H
-Fl_Color_Chooser.o: ../FL/Fl_Export.H
-Fl_Color_Chooser.o: ../FL/Fl_Group.H
-Fl_Color_Chooser.o: ../FL/Fl_Image.H
-Fl_Color_Chooser.o: ../FL/Fl_Input.H
-Fl_Color_Chooser.o: ../FL/Fl_Input_.H
-Fl_Color_Chooser.o: ../FL/Fl_Menu_.H
-Fl_Color_Chooser.o: ../FL/Fl_Menu_Item.H
-Fl_Color_Chooser.o: ../FL/Fl_Multi_Label.H
-Fl_Color_Chooser.o: ../FL/Fl_Return_Button.H
-Fl_Color_Chooser.o: ../FL/fl_types.h
-Fl_Color_Chooser.o: ../FL/fl_utf8.h
-Fl_Color_Chooser.o: ../FL/Fl_Valuator.H
-Fl_Color_Chooser.o: ../FL/Fl_Value_Input.H
-Fl_Color_Chooser.o: ../FL/Fl_Widget.H
-Fl_Color_Chooser.o: ../FL/Fl_Window.H
-Fl_Color_Chooser.o: ../FL/math.h
-Fl_Color_Chooser.o: ../FL/platform_types.h
-Fl_compose.o: ../FL/Enumerations.H
-Fl_compose.o: ../FL/Fl.H
-Fl_compose.o: ../FL/fl_attr.h
-Fl_compose.o: ../FL/Fl_Bitmap.H
-Fl_compose.o: ../FL/Fl_Cairo.H
-Fl_compose.o: ../FL/fl_casts.H
-Fl_compose.o: ../FL/fl_config.h
-Fl_compose.o: ../FL/Fl_Device.H
-Fl_compose.o: ../FL/fl_draw.H
-Fl_compose.o: ../FL/Fl_Export.H
-Fl_compose.o: ../FL/Fl_Graphics_Driver.H
-Fl_compose.o: ../FL/Fl_Group.H
-Fl_compose.o: ../FL/Fl_Image.H
-Fl_compose.o: ../FL/Fl_Pixmap.H
-Fl_compose.o: ../FL/Fl_Plugin.H
-Fl_compose.o: ../FL/Fl_Preferences.H
-Fl_compose.o: ../FL/Fl_Rect.H
-Fl_compose.o: ../FL/Fl_RGB_Image.H
-Fl_compose.o: ../FL/Fl_Scrollbar.H
-Fl_compose.o: ../FL/Fl_Slider.H
-Fl_compose.o: ../FL/Fl_Text_Buffer.H
-Fl_compose.o: ../FL/Fl_Text_Display.H
-Fl_compose.o: ../FL/Fl_Text_Editor.H
-Fl_compose.o: ../FL/fl_types.h
-Fl_compose.o: ../FL/fl_utf8.h
-Fl_compose.o: ../FL/Fl_Valuator.H
-Fl_compose.o: ../FL/Fl_Widget.H
-Fl_compose.o: ../FL/platform_types.h
-Fl_compose.o: Fl_Screen_Driver.H
-fl_contrast.o: ../FL/Enumerations.H
-fl_contrast.o: ../FL/Fl.H
-fl_contrast.o: ../FL/fl_attr.h
-fl_contrast.o: ../FL/Fl_Cairo.H
-fl_contrast.o: ../FL/fl_casts.H
-fl_contrast.o: ../FL/fl_config.h
-fl_contrast.o: ../FL/Fl_Export.H
-fl_contrast.o: ../FL/fl_types.h
-fl_contrast.o: ../FL/fl_utf8.h
-fl_contrast.o: ../FL/platform_types.h
-Fl_Copy_Surface.o: ../FL/Enumerations.H
-Fl_Copy_Surface.o: ../FL/Fl.H
-Fl_Copy_Surface.o: ../FL/fl_attr.h
-Fl_Copy_Surface.o: ../FL/Fl_Bitmap.H
-Fl_Copy_Surface.o: ../FL/Fl_Cairo.H
-Fl_Copy_Surface.o: ../FL/fl_casts.H
-Fl_Copy_Surface.o: ../FL/fl_config.h
-Fl_Copy_Surface.o: ../FL/Fl_Copy_Surface.H
-Fl_Copy_Surface.o: ../FL/Fl_Device.H
-Fl_Copy_Surface.o: ../FL/Fl_Export.H
-Fl_Copy_Surface.o: ../FL/Fl_Group.H
-Fl_Copy_Surface.o: ../FL/Fl_Image.H
-Fl_Copy_Surface.o: ../FL/Fl_Plugin.H
-Fl_Copy_Surface.o: ../FL/Fl_Preferences.H
-Fl_Copy_Surface.o: ../FL/fl_types.h
-Fl_Copy_Surface.o: ../FL/fl_utf8.h
-Fl_Copy_Surface.o: ../FL/Fl_Widget.H
-Fl_Copy_Surface.o: ../FL/Fl_Widget_Surface.H
-Fl_Copy_Surface.o: ../FL/Fl_Window.H
-Fl_Copy_Surface.o: ../FL/platform_types.h
-Fl_Counter.o: ../FL/Enumerations.H
-Fl_Counter.o: ../FL/Fl.H
-Fl_Counter.o: ../FL/fl_attr.h
-Fl_Counter.o: ../FL/Fl_Cairo.H
-Fl_Counter.o: ../FL/fl_casts.H
-Fl_Counter.o: ../FL/fl_config.h
-Fl_Counter.o: ../FL/Fl_Counter.H
-Fl_Counter.o: ../FL/fl_draw.H
-Fl_Counter.o: ../FL/Fl_Export.H
-Fl_Counter.o: ../FL/Fl_Simple_Counter.H
-Fl_Counter.o: ../FL/fl_types.h
-Fl_Counter.o: ../FL/fl_utf8.h
-Fl_Counter.o: ../FL/Fl_Valuator.H
-Fl_Counter.o: ../FL/platform_types.h
-fl_cursor.o: ../FL/Enumerations.H
-fl_cursor.o: ../FL/Fl.H
-fl_cursor.o: ../FL/fl_attr.h
-fl_cursor.o: ../FL/Fl_Bitmap.H
-fl_cursor.o: ../FL/Fl_Cairo.H
-fl_cursor.o: ../FL/fl_casts.H
-fl_cursor.o: ../FL/fl_config.h
-fl_cursor.o: ../FL/Fl_Double_Window.H
-fl_cursor.o: ../FL/fl_draw.H
-fl_cursor.o: ../FL/Fl_Export.H
-fl_cursor.o: ../FL/Fl_Group.H
-fl_cursor.o: ../FL/Fl_Image.H
-fl_cursor.o: ../FL/Fl_Overlay_Window.H
-fl_cursor.o: ../FL/Fl_Pixmap.H
-fl_cursor.o: ../FL/Fl_RGB_Image.H
-fl_cursor.o: ../FL/fl_types.h
-fl_cursor.o: ../FL/fl_utf8.h
-fl_cursor.o: ../FL/Fl_Widget.H
-fl_cursor.o: ../FL/Fl_Window.H
-fl_cursor.o: ../FL/platform.H
-fl_cursor.o: ../FL/platform_types.h
-fl_cursor.o: ../FL/x11.H
-fl_cursor.o: fl_cursor_help.xpm
-fl_cursor.o: fl_cursor_nesw.xpm
-fl_cursor.o: fl_cursor_none.xpm
-fl_cursor.o: fl_cursor_nwse.xpm
-fl_cursor.o: fl_cursor_wait.xpm
-fl_cursor.o: Fl_Window_Driver.H
-fl_curve.o: ../FL/fl_draw.H
-Fl_Device.o: ../config.h
-Fl_Device.o: ../FL/Enumerations.H
-Fl_Device.o: ../FL/Fl.H
-Fl_Device.o: ../FL/fl_attr.h
-Fl_Device.o: ../FL/Fl_Bitmap.H
-Fl_Device.o: ../FL/Fl_Cairo.H
-Fl_Device.o: ../FL/fl_casts.H
-Fl_Device.o: ../FL/fl_config.h
-Fl_Device.o: ../FL/Fl_Device.H
-Fl_Device.o: ../FL/Fl_Export.H
-Fl_Device.o: ../FL/Fl_Graphics_Driver.H
-Fl_Device.o: ../FL/Fl_Group.H
-Fl_Device.o: ../FL/Fl_Image.H
-Fl_Device.o: ../FL/Fl_Paged_Device.H
-Fl_Device.o: ../FL/Fl_PDF_File_Surface.H
-Fl_Device.o: ../FL/Fl_Pixmap.H
-Fl_Device.o: ../FL/Fl_Plugin.H
-Fl_Device.o: ../FL/Fl_Preferences.H
-Fl_Device.o: ../FL/Fl_RGB_Image.H
-Fl_Device.o: ../FL/fl_types.h
-Fl_Device.o: ../FL/fl_utf8.h
-Fl_Device.o: ../FL/Fl_Widget.H
-Fl_Device.o: ../FL/Fl_Widget_Surface.H
-Fl_Device.o: ../FL/Fl_Window.H
-Fl_Device.o: ../FL/platform_types.h
-Fl_Dial.o: ../FL/Enumerations.H
-Fl_Dial.o: ../FL/Fl.H
-Fl_Dial.o: ../FL/fl_attr.h
-Fl_Dial.o: ../FL/Fl_Cairo.H
-Fl_Dial.o: ../FL/fl_casts.H
-Fl_Dial.o: ../FL/fl_config.h
-Fl_Dial.o: ../FL/Fl_Dial.H
-Fl_Dial.o: ../FL/fl_draw.H
-Fl_Dial.o: ../FL/Fl_Export.H
-Fl_Dial.o: ../FL/Fl_Fill_Dial.H
-Fl_Dial.o: ../FL/Fl_Line_Dial.H
-Fl_Dial.o: ../FL/fl_types.h
-Fl_Dial.o: ../FL/fl_utf8.h
-Fl_Dial.o: ../FL/Fl_Valuator.H
-Fl_Dial.o: ../FL/math.h
-Fl_Dial.o: ../FL/platform_types.h
-fl_diamond_box.o: ../FL/Enumerations.H
-fl_diamond_box.o: ../FL/Fl.H
-fl_diamond_box.o: ../FL/fl_attr.h
-fl_diamond_box.o: ../FL/Fl_Cairo.H
-fl_diamond_box.o: ../FL/fl_casts.H
-fl_diamond_box.o: ../FL/fl_config.h
-fl_diamond_box.o: ../FL/fl_draw.H
-fl_diamond_box.o: ../FL/Fl_Export.H
-fl_diamond_box.o: ../FL/fl_types.h
-fl_diamond_box.o: ../FL/fl_utf8.h
-fl_diamond_box.o: ../FL/platform_types.h
-Fl_display.o: ../FL/Enumerations.H
-Fl_display.o: ../FL/Fl.H
-Fl_display.o: ../FL/fl_attr.h
-Fl_display.o: ../FL/Fl_Bitmap.H
-Fl_display.o: ../FL/Fl_Cairo.H
-Fl_display.o: ../FL/fl_casts.H
-Fl_display.o: ../FL/fl_config.h
-Fl_display.o: ../FL/Fl_Device.H
-Fl_display.o: ../FL/fl_draw.H
-Fl_display.o: ../FL/Fl_Export.H
-Fl_display.o: ../FL/Fl_Graphics_Driver.H
-Fl_display.o: ../FL/Fl_Group.H
-Fl_display.o: ../FL/Fl_Image.H
-Fl_display.o: ../FL/Fl_Pixmap.H
-Fl_display.o: ../FL/Fl_Plugin.H
-Fl_display.o: ../FL/Fl_Preferences.H
-Fl_display.o: ../FL/Fl_Rect.H
-Fl_display.o: ../FL/Fl_RGB_Image.H
-Fl_display.o: ../FL/Fl_Scrollbar.H
-Fl_display.o: ../FL/Fl_Slider.H
-Fl_display.o: ../FL/Fl_Text_Buffer.H
-Fl_display.o: ../FL/Fl_Text_Display.H
-Fl_display.o: ../FL/Fl_Text_Editor.H
-Fl_display.o: ../FL/fl_types.h
-Fl_display.o: ../FL/fl_utf8.h
-Fl_display.o: ../FL/Fl_Valuator.H
-Fl_display.o: ../FL/Fl_Widget.H
-Fl_display.o: ../FL/platform_types.h
-Fl_display.o: Fl_Screen_Driver.H
-fl_dnd_x.o: ../config.h
-fl_dnd_x.o: ../FL/Enumerations.H
-fl_dnd_x.o: ../FL/Fl.H
-fl_dnd_x.o: ../FL/fl_attr.h
-fl_dnd_x.o: ../FL/Fl_Bitmap.H
-fl_dnd_x.o: ../FL/Fl_Cairo.H
-fl_dnd_x.o: ../FL/fl_casts.H
-fl_dnd_x.o: ../FL/fl_config.h
-fl_dnd_x.o: ../FL/Fl_Device.H
-fl_dnd_x.o: ../FL/Fl_Double_Window.H
-fl_dnd_x.o: ../FL/fl_draw.H
-fl_dnd_x.o: ../FL/Fl_Export.H
-fl_dnd_x.o: ../FL/Fl_Graphics_Driver.H
-fl_dnd_x.o: ../FL/Fl_Group.H
-fl_dnd_x.o: ../FL/Fl_Image.H
-fl_dnd_x.o: ../FL/Fl_Overlay_Window.H
-fl_dnd_x.o: ../FL/Fl_Pixmap.H
-fl_dnd_x.o: ../FL/Fl_Plugin.H
-fl_dnd_x.o: ../FL/Fl_Preferences.H
-fl_dnd_x.o: ../FL/Fl_Rect.H
-fl_dnd_x.o: ../FL/Fl_RGB_Image.H
-fl_dnd_x.o: ../FL/Fl_Scrollbar.H
-fl_dnd_x.o: ../FL/Fl_Slider.H
-fl_dnd_x.o: ../FL/fl_string_functions.h
-fl_dnd_x.o: ../FL/Fl_Text_Buffer.H
-fl_dnd_x.o: ../FL/Fl_Text_Display.H
-fl_dnd_x.o: ../FL/Fl_Text_Editor.H
-fl_dnd_x.o: ../FL/fl_types.h
-fl_dnd_x.o: ../FL/fl_utf8.h
-fl_dnd_x.o: ../FL/Fl_Valuator.H
-fl_dnd_x.o: ../FL/Fl_Widget.H
-fl_dnd_x.o: ../FL/Fl_Window.H
-fl_dnd_x.o: ../FL/platform.H
-fl_dnd_x.o: ../FL/platform_types.h
-fl_dnd_x.o: ../FL/x11.H
-fl_dnd_x.o: drivers/Unix/Fl_Unix_Screen_Driver.H
-fl_dnd_x.o: drivers/X11/Fl_X11_Screen_Driver.H
-fl_dnd_x.o: flstring.h
-fl_dnd_x.o: Fl_Screen_Driver.H
-fl_dnd_x.o: Fl_Window_Driver.H
-Fl_Double_Window.o: ../FL/Enumerations.H
-Fl_Double_Window.o: ../FL/Fl.H
-Fl_Double_Window.o: ../FL/fl_attr.h
-Fl_Double_Window.o: ../FL/Fl_Bitmap.H
-Fl_Double_Window.o: ../FL/Fl_Cairo.H
-Fl_Double_Window.o: ../FL/fl_casts.H
-Fl_Double_Window.o: ../FL/fl_config.h
-Fl_Double_Window.o: ../FL/Fl_Double_Window.H
-Fl_Double_Window.o: ../FL/fl_draw.H
-Fl_Double_Window.o: ../FL/Fl_Export.H
-Fl_Double_Window.o: ../FL/Fl_Group.H
-Fl_Double_Window.o: ../FL/Fl_Image.H
-Fl_Double_Window.o: ../FL/Fl_Overlay_Window.H
-Fl_Double_Window.o: ../FL/fl_types.h
-Fl_Double_Window.o: ../FL/fl_utf8.h
-Fl_Double_Window.o: ../FL/Fl_Widget.H
-Fl_Double_Window.o: ../FL/Fl_Window.H
-Fl_Double_Window.o: ../FL/platform.H
-Fl_Double_Window.o: ../FL/platform_types.h
-Fl_Double_Window.o: ../FL/x11.H
-Fl_Double_Window.o: Fl_Window_Driver.H
-fl_draw.o: ../config.h
-fl_draw.o: ../FL/Enumerations.H
-fl_draw.o: ../FL/Fl.H
-fl_draw.o: ../FL/fl_attr.h
-fl_draw.o: ../FL/Fl_Cairo.H
-fl_draw.o: ../FL/fl_casts.H
-fl_draw.o: ../FL/fl_config.h
-fl_draw.o: ../FL/fl_draw.H
-fl_draw.o: ../FL/Fl_Export.H
-fl_draw.o: ../FL/Fl_Image.H
-fl_draw.o: ../FL/fl_string_functions.h
-fl_draw.o: ../FL/fl_types.h
-fl_draw.o: ../FL/fl_utf8.h
-fl_draw.o: ../FL/Fl_Widget.H
-fl_draw.o: ../FL/platform.H
-fl_draw.o: ../FL/platform_types.h
-fl_draw.o: ../FL/x11.H
-fl_draw.o: flstring.h
-fl_draw.o: fl_oxy.h
-fl_draw_arrow.o: ../FL/Enumerations.H
-fl_draw_arrow.o: ../FL/Fl.H
-fl_draw_arrow.o: ../FL/fl_attr.h
-fl_draw_arrow.o: ../FL/Fl_Cairo.H
-fl_draw_arrow.o: ../FL/fl_casts.H
-fl_draw_arrow.o: ../FL/fl_config.h
-fl_draw_arrow.o: ../FL/fl_draw.H
-fl_draw_arrow.o: ../FL/Fl_Export.H
-fl_draw_arrow.o: ../FL/fl_types.h
-fl_draw_arrow.o: ../FL/fl_utf8.h
-fl_draw_arrow.o: ../FL/platform_types.h
-fl_draw_arrow.o: fl_oxy.h
-fl_draw_pixmap.o: ../config.h
-fl_draw_pixmap.o: ../FL/Enumerations.H
-fl_draw_pixmap.o: ../FL/filename.H
-fl_draw_pixmap.o: ../FL/Fl.H
-fl_draw_pixmap.o: ../FL/fl_attr.h
-fl_draw_pixmap.o: ../FL/Fl_Cairo.H
-fl_draw_pixmap.o: ../FL/fl_casts.H
-fl_draw_pixmap.o: ../FL/fl_config.h
-fl_draw_pixmap.o: ../FL/fl_draw.H
-fl_draw_pixmap.o: ../FL/Fl_Export.H
-fl_draw_pixmap.o: ../FL/Fl_Preferences.H
-fl_draw_pixmap.o: ../FL/fl_string_functions.h
-fl_draw_pixmap.o: ../FL/fl_types.h
-fl_draw_pixmap.o: ../FL/fl_utf8.h
-fl_draw_pixmap.o: ../FL/platform.H
-fl_draw_pixmap.o: ../FL/platform_types.h
-fl_draw_pixmap.o: ../FL/x11.H
-fl_draw_pixmap.o: flstring.h
-fl_draw_pixmap.o: Fl_System_Driver.H
-fl_encoding_latin1.o: ../config.h
-fl_encoding_latin1.o: ../FL/Enumerations.H
-fl_encoding_latin1.o: ../FL/filename.H
-fl_encoding_latin1.o: ../FL/Fl.H
-fl_encoding_latin1.o: ../FL/fl_attr.h
-fl_encoding_latin1.o: ../FL/Fl_Cairo.H
-fl_encoding_latin1.o: ../FL/fl_casts.H
-fl_encoding_latin1.o: ../FL/fl_config.h
-fl_encoding_latin1.o: ../FL/fl_draw.H
-fl_encoding_latin1.o: ../FL/Fl_Export.H
-fl_encoding_latin1.o: ../FL/Fl_Preferences.H
-fl_encoding_latin1.o: ../FL/fl_string_functions.h
-fl_encoding_latin1.o: ../FL/fl_types.h
-fl_encoding_latin1.o: ../FL/fl_utf8.h
-fl_encoding_latin1.o: ../FL/platform_types.h
-fl_encoding_latin1.o: flstring.h
-fl_encoding_latin1.o: Fl_System_Driver.H
-fl_encoding_mac_roman.o: ../config.h
-fl_encoding_mac_roman.o: ../FL/Enumerations.H
-fl_encoding_mac_roman.o: ../FL/filename.H
-fl_encoding_mac_roman.o: ../FL/Fl.H
-fl_encoding_mac_roman.o: ../FL/fl_attr.h
-fl_encoding_mac_roman.o: ../FL/Fl_Cairo.H
-fl_encoding_mac_roman.o: ../FL/fl_casts.H
-fl_encoding_mac_roman.o: ../FL/fl_config.h
-fl_encoding_mac_roman.o: ../FL/fl_draw.H
-fl_encoding_mac_roman.o: ../FL/Fl_Export.H
-fl_encoding_mac_roman.o: ../FL/Fl_Preferences.H
-fl_encoding_mac_roman.o: ../FL/fl_string_functions.h
-fl_encoding_mac_roman.o: ../FL/fl_types.h
-fl_encoding_mac_roman.o: ../FL/fl_utf8.h
-fl_encoding_mac_roman.o: ../FL/platform_types.h
-fl_encoding_mac_roman.o: flstring.h
-fl_encoding_mac_roman.o: Fl_System_Driver.H
-fl_engraved_label.o: ../FL/Enumerations.H
-fl_engraved_label.o: ../FL/Fl.H
-fl_engraved_label.o: ../FL/fl_attr.h
-fl_engraved_label.o: ../FL/Fl_Cairo.H
-fl_engraved_label.o: ../FL/fl_casts.H
-fl_engraved_label.o: ../FL/fl_config.h
-fl_engraved_label.o: ../FL/fl_draw.H
-fl_engraved_label.o: ../FL/Fl_Export.H
-fl_engraved_label.o: ../FL/fl_types.h
-fl_engraved_label.o: ../FL/fl_utf8.h
-fl_engraved_label.o: ../FL/Fl_Widget.H
-fl_engraved_label.o: ../FL/platform_types.h
-Fl_File_Browser.o: ../config.h
-Fl_File_Browser.o: ../FL/Enumerations.H
-Fl_File_Browser.o: ../FL/filename.H
-Fl_File_Browser.o: ../FL/Fl.H
-Fl_File_Browser.o: ../FL/fl_attr.h
-Fl_File_Browser.o: ../FL/Fl_Browser.H
-Fl_File_Browser.o: ../FL/Fl_Cairo.H
-Fl_File_Browser.o: ../FL/fl_casts.H
-Fl_File_Browser.o: ../FL/fl_config.h
-Fl_File_Browser.o: ../FL/fl_draw.H
-Fl_File_Browser.o: ../FL/Fl_Export.H
-Fl_File_Browser.o: ../FL/Fl_File_Browser.H
-Fl_File_Browser.o: ../FL/Fl_File_Icon.H
-Fl_File_Browser.o: ../FL/Fl_Image.H
-Fl_File_Browser.o: ../FL/Fl_Preferences.H
-Fl_File_Browser.o: ../FL/fl_string_functions.h
-Fl_File_Browser.o: ../FL/fl_types.h
-Fl_File_Browser.o: ../FL/fl_utf8.h
-Fl_File_Browser.o: ../FL/Fl_Widget.H
-Fl_File_Browser.o: ../FL/platform_types.h
-Fl_File_Browser.o: flstring.h
-Fl_File_Browser.o: Fl_System_Driver.H
-Fl_File_Chooser.o: ../FL/Enumerations.H
-Fl_File_Chooser.o: ../FL/filename.H
-Fl_File_Chooser.o: ../FL/Fl.H
-Fl_File_Chooser.o: ../FL/fl_ask.H
-Fl_File_Chooser.o: ../FL/fl_attr.h
-Fl_File_Chooser.o: ../FL/Fl_Bitmap.H
-Fl_File_Chooser.o: ../FL/Fl_Box.H
-Fl_File_Chooser.o: ../FL/Fl_Browser.H
-Fl_File_Chooser.o: ../FL/Fl_Button.H
-Fl_File_Chooser.o: ../FL/Fl_Cairo.H
-Fl_File_Chooser.o: ../FL/fl_casts.H
-Fl_File_Chooser.o: ../FL/Fl_Check_Button.H
-Fl_File_Chooser.o: ../FL/Fl_Choice.H
-Fl_File_Chooser.o: ../FL/fl_config.h
-Fl_File_Chooser.o: ../FL/Fl_Double_Window.H
-Fl_File_Chooser.o: ../FL/fl_draw.H
-Fl_File_Chooser.o: ../FL/Fl_Export.H
-Fl_File_Chooser.o: ../FL/Fl_File_Browser.H
-Fl_File_Chooser.o: ../FL/Fl_File_Chooser.H
-Fl_File_Chooser.o: ../FL/Fl_File_Icon.H
-Fl_File_Chooser.o: ../FL/Fl_File_Input.H
-Fl_File_Chooser.o: ../FL/Fl_Group.H
-Fl_File_Chooser.o: ../FL/Fl_Image.H
-Fl_File_Chooser.o: ../FL/Fl_Input.H
-Fl_File_Chooser.o: ../FL/Fl_Input_.H
-Fl_File_Chooser.o: ../FL/Fl_Light_Button.H
-Fl_File_Chooser.o: ../FL/Fl_Menu_.H
-Fl_File_Chooser.o: ../FL/Fl_Menu_Button.H
-Fl_File_Chooser.o: ../FL/Fl_Menu_Item.H
-Fl_File_Chooser.o: ../FL/Fl_Multi_Label.H
-Fl_File_Chooser.o: ../FL/Fl_Preferences.H
-Fl_File_Chooser.o: ../FL/Fl_Return_Button.H
-Fl_File_Chooser.o: ../FL/Fl_Tile.H
-Fl_File_Chooser.o: ../FL/fl_types.h
-Fl_File_Chooser.o: ../FL/fl_utf8.h
-Fl_File_Chooser.o: ../FL/Fl_Widget.H
-Fl_File_Chooser.o: ../FL/Fl_Window.H
-Fl_File_Chooser.o: ../FL/platform_types.h
-Fl_File_Chooser2.o: ../config.h
-Fl_File_Chooser2.o: ../FL/Enumerations.H
-Fl_File_Chooser2.o: ../FL/filename.H
-Fl_File_Chooser2.o: ../FL/Fl.H
-Fl_File_Chooser2.o: ../FL/fl_ask.H
-Fl_File_Chooser2.o: ../FL/fl_attr.h
-Fl_File_Chooser2.o: ../FL/Fl_Box.H
-Fl_File_Chooser2.o: ../FL/Fl_Browser.H
-Fl_File_Chooser2.o: ../FL/Fl_Button.H
-Fl_File_Chooser2.o: ../FL/Fl_Cairo.H
-Fl_File_Chooser2.o: ../FL/fl_casts.H
-Fl_File_Chooser2.o: ../FL/Fl_Check_Button.H
-Fl_File_Chooser2.o: ../FL/Fl_Choice.H
-Fl_File_Chooser2.o: ../FL/fl_config.h
-Fl_File_Chooser2.o: ../FL/Fl_Double_Window.H
-Fl_File_Chooser2.o: ../FL/fl_draw.H
-Fl_File_Chooser2.o: ../FL/Fl_Export.H
-Fl_File_Chooser2.o: ../FL/Fl_File_Browser.H
-Fl_File_Chooser2.o: ../FL/Fl_File_Chooser.H
-Fl_File_Chooser2.o: ../FL/Fl_File_Icon.H
-Fl_File_Chooser2.o: ../FL/Fl_File_Input.H
-Fl_File_Chooser2.o: ../FL/Fl_Group.H
-Fl_File_Chooser2.o: ../FL/Fl_Image.H
-Fl_File_Chooser2.o: ../FL/Fl_Input.H
-Fl_File_Chooser2.o: ../FL/Fl_Input_.H
-Fl_File_Chooser2.o: ../FL/Fl_Light_Button.H
-Fl_File_Chooser2.o: ../FL/Fl_Menu_.H
-Fl_File_Chooser2.o: ../FL/Fl_Menu_Button.H
-Fl_File_Chooser2.o: ../FL/Fl_Menu_Item.H
-Fl_File_Chooser2.o: ../FL/Fl_Multi_Label.H
-Fl_File_Chooser2.o: ../FL/Fl_Preferences.H
-Fl_File_Chooser2.o: ../FL/Fl_Return_Button.H
-Fl_File_Chooser2.o: ../FL/Fl_Shared_Image.H
-Fl_File_Chooser2.o: ../FL/fl_string_functions.h
-Fl_File_Chooser2.o: ../FL/Fl_Tile.H
-Fl_File_Chooser2.o: ../FL/fl_types.h
-Fl_File_Chooser2.o: ../FL/fl_utf8.h
-Fl_File_Chooser2.o: ../FL/Fl_Widget.H
-Fl_File_Chooser2.o: ../FL/Fl_Window.H
-Fl_File_Chooser2.o: ../FL/platform.H
-Fl_File_Chooser2.o: ../FL/platform_types.h
-Fl_File_Chooser2.o: ../FL/x11.H
-Fl_File_Chooser2.o: flstring.h
-Fl_File_Chooser2.o: Fl_System_Driver.H
-fl_file_dir.o: ../config.h
-fl_file_dir.o: ../FL/Enumerations.H
-fl_file_dir.o: ../FL/filename.H
-fl_file_dir.o: ../FL/Fl.H
-fl_file_dir.o: ../FL/fl_ask.H
-fl_file_dir.o: ../FL/fl_attr.h
-fl_file_dir.o: ../FL/Fl_Box.H
-fl_file_dir.o: ../FL/Fl_Browser.H
-fl_file_dir.o: ../FL/Fl_Button.H
-fl_file_dir.o: ../FL/Fl_Cairo.H
-fl_file_dir.o: ../FL/fl_casts.H
-fl_file_dir.o: ../FL/Fl_Check_Button.H
-fl_file_dir.o: ../FL/Fl_Choice.H
-fl_file_dir.o: ../FL/fl_config.h
-fl_file_dir.o: ../FL/Fl_Double_Window.H
-fl_file_dir.o: ../FL/Fl_Export.H
-fl_file_dir.o: ../FL/Fl_File_Browser.H
-fl_file_dir.o: ../FL/Fl_File_Chooser.H
-fl_file_dir.o: ../FL/Fl_File_Icon.H
-fl_file_dir.o: ../FL/Fl_File_Input.H
-fl_file_dir.o: ../FL/Fl_Group.H
-fl_file_dir.o: ../FL/Fl_Image.H
-fl_file_dir.o: ../FL/Fl_Input.H
-fl_file_dir.o: ../FL/Fl_Input_.H
-fl_file_dir.o: ../FL/Fl_Light_Button.H
-fl_file_dir.o: ../FL/Fl_Menu_.H
-fl_file_dir.o: ../FL/Fl_Menu_Button.H
-fl_file_dir.o: ../FL/Fl_Menu_Item.H
-fl_file_dir.o: ../FL/Fl_Multi_Label.H
-fl_file_dir.o: ../FL/Fl_Preferences.H
-fl_file_dir.o: ../FL/Fl_Return_Button.H
-fl_file_dir.o: ../FL/fl_string_functions.h
-fl_file_dir.o: ../FL/Fl_Tile.H
-fl_file_dir.o: ../FL/fl_types.h
-fl_file_dir.o: ../FL/fl_utf8.h
-fl_file_dir.o: ../FL/Fl_Widget.H
-fl_file_dir.o: ../FL/Fl_Window.H
-fl_file_dir.o: ../FL/platform_types.h
-fl_file_dir.o: flstring.h
-Fl_File_Icon.o: ../config.h
-Fl_File_Icon.o: ../FL/Enumerations.H
-Fl_File_Icon.o: ../FL/filename.H
-Fl_File_Icon.o: ../FL/Fl.H
-Fl_File_Icon.o: ../FL/fl_attr.h
-Fl_File_Icon.o: ../FL/Fl_Cairo.H
-Fl_File_Icon.o: ../FL/fl_casts.H
-Fl_File_Icon.o: ../FL/fl_config.h
-Fl_File_Icon.o: ../FL/fl_draw.H
-Fl_File_Icon.o: ../FL/Fl_Export.H
-Fl_File_Icon.o: ../FL/Fl_File_Icon.H
-Fl_File_Icon.o: ../FL/Fl_Preferences.H
-Fl_File_Icon.o: ../FL/fl_string_functions.h
-Fl_File_Icon.o: ../FL/fl_types.h
-Fl_File_Icon.o: ../FL/fl_utf8.h
-Fl_File_Icon.o: ../FL/Fl_Widget.H
-Fl_File_Icon.o: ../FL/platform_types.h
-Fl_File_Icon.o: flstring.h
-Fl_File_Icon.o: Fl_System_Driver.H
-Fl_File_Icon2.o: ../config.h
-Fl_File_Icon2.o: ../FL/filename.H
-Fl_File_Icon2.o: ../FL/Fl.H
-Fl_File_Icon2.o: ../FL/fl_config.h
-Fl_File_Icon2.o: ../FL/fl_draw.H
-Fl_File_Icon2.o: ../FL/Fl_Export.H
-Fl_File_Icon2.o: ../FL/Fl_File_Icon.H
-Fl_File_Icon2.o: ../FL/Fl_Image.H
-Fl_File_Icon2.o: ../FL/Fl_Shared_Image.H
-Fl_File_Icon2.o: ../FL/fl_string_functions.h
-Fl_File_Icon2.o: ../FL/fl_utf8.h
-Fl_File_Icon2.o: ../FL/Fl_Widget.H
-Fl_File_Icon2.o: ../FL/math.h
-Fl_File_Icon2.o: ../FL/platform_types.h
-Fl_File_Icon2.o: flstring.h
-Fl_File_Input.o: ../config.h
-Fl_File_Input.o: ../FL/Enumerations.H
-Fl_File_Input.o: ../FL/filename.H
-Fl_File_Input.o: ../FL/Fl.H
-Fl_File_Input.o: ../FL/fl_attr.h
-Fl_File_Input.o: ../FL/Fl_Bitmap.H
-Fl_File_Input.o: ../FL/Fl_Cairo.H
-Fl_File_Input.o: ../FL/fl_casts.H
-Fl_File_Input.o: ../FL/fl_config.h
-Fl_File_Input.o: ../FL/fl_draw.H
-Fl_File_Input.o: ../FL/Fl_Export.H
-Fl_File_Input.o: ../FL/Fl_File_Input.H
-Fl_File_Input.o: ../FL/Fl_Group.H
-Fl_File_Input.o: ../FL/Fl_Image.H
-Fl_File_Input.o: ../FL/Fl_Input.H
-Fl_File_Input.o: ../FL/Fl_Input_.H
-Fl_File_Input.o: ../FL/Fl_Preferences.H
-Fl_File_Input.o: ../FL/fl_string_functions.h
-Fl_File_Input.o: ../FL/fl_types.h
-Fl_File_Input.o: ../FL/fl_utf8.h
-Fl_File_Input.o: ../FL/Fl_Widget.H
-Fl_File_Input.o: ../FL/Fl_Window.H
-Fl_File_Input.o: ../FL/platform_types.h
-Fl_File_Input.o: flstring.h
-Fl_File_Input.o: Fl_System_Driver.H
-Fl_Flex.o: ../FL/Fl_Flex.H
-Fl_Flex.o: ../FL/Fl_Group.H
-fl_font.o: ../config.h
-fl_font.o: ../FL/Enumerations.H
-fl_font.o: ../FL/Fl.H
-fl_font.o: ../FL/fl_attr.h
-fl_font.o: ../FL/Fl_Bitmap.H
-fl_font.o: ../FL/Fl_Cairo.H
-fl_font.o: ../FL/fl_casts.H
-fl_font.o: ../FL/fl_config.h
-fl_font.o: ../FL/Fl_Device.H
-fl_font.o: ../FL/fl_draw.H
-fl_font.o: ../FL/Fl_Export.H
-fl_font.o: ../FL/Fl_Graphics_Driver.H
-fl_font.o: ../FL/Fl_Group.H
-fl_font.o: ../FL/Fl_Image.H
-fl_font.o: ../FL/Fl_Pixmap.H
-fl_font.o: ../FL/Fl_Plugin.H
-fl_font.o: ../FL/Fl_Preferences.H
-fl_font.o: ../FL/Fl_Rect.H
-fl_font.o: ../FL/Fl_RGB_Image.H
-fl_font.o: ../FL/Fl_Scrollbar.H
-fl_font.o: ../FL/Fl_Slider.H
-fl_font.o: ../FL/fl_string_functions.h
-fl_font.o: ../FL/Fl_Text_Buffer.H
-fl_font.o: ../FL/Fl_Text_Display.H
-fl_font.o: ../FL/Fl_Text_Editor.H
-fl_font.o: ../FL/fl_types.h
-fl_font.o: ../FL/fl_utf8.h
-fl_font.o: ../FL/Fl_Valuator.H
-fl_font.o: ../FL/Fl_Widget.H
-fl_font.o: ../FL/platform_types.h
-fl_font.o: flstring.h
-fl_font.o: Fl_Screen_Driver.H
-Fl_get_key.o: ../config.h
-Fl_get_key.o: ../FL/Enumerations.H
-Fl_get_key.o: ../FL/Fl.H
-Fl_get_key.o: ../FL/fl_attr.h
-Fl_get_key.o: ../FL/Fl_Bitmap.H
-Fl_get_key.o: ../FL/Fl_Cairo.H
-Fl_get_key.o: ../FL/fl_casts.H
-Fl_get_key.o: ../FL/fl_config.h
-Fl_get_key.o: ../FL/Fl_Device.H
-Fl_get_key.o: ../FL/fl_draw.H
-Fl_get_key.o: ../FL/Fl_Export.H
-Fl_get_key.o: ../FL/Fl_Graphics_Driver.H
-Fl_get_key.o: ../FL/Fl_Group.H
-Fl_get_key.o: ../FL/Fl_Image.H
-Fl_get_key.o: ../FL/Fl_Pixmap.H
-Fl_get_key.o: ../FL/Fl_Plugin.H
-Fl_get_key.o: ../FL/Fl_Preferences.H
-Fl_get_key.o: ../FL/Fl_Rect.H
-Fl_get_key.o: ../FL/Fl_RGB_Image.H
-Fl_get_key.o: ../FL/Fl_Scrollbar.H
-Fl_get_key.o: ../FL/Fl_Slider.H
-Fl_get_key.o: ../FL/Fl_Text_Buffer.H
-Fl_get_key.o: ../FL/Fl_Text_Display.H
-Fl_get_key.o: ../FL/Fl_Text_Editor.H
-Fl_get_key.o: ../FL/fl_types.h
-Fl_get_key.o: ../FL/fl_utf8.h
-Fl_get_key.o: ../FL/Fl_Valuator.H
-Fl_get_key.o: ../FL/Fl_Widget.H
-Fl_get_key.o: ../FL/platform.H
-Fl_get_key.o: ../FL/platform_types.h
-Fl_get_key.o: ../FL/x11.H
-Fl_get_key.o: drivers/Unix/Fl_Unix_Screen_Driver.H
-Fl_get_key.o: drivers/X11/Fl_X11_Screen_Driver.H
-Fl_get_key.o: Fl_Screen_Driver.H
-Fl_get_system_colors.o: ../config.h
-Fl_get_system_colors.o: ../FL/Enumerations.H
-Fl_get_system_colors.o: ../FL/filename.H
-Fl_get_system_colors.o: ../FL/Fl.H
-Fl_get_system_colors.o: ../FL/fl_attr.h
-Fl_get_system_colors.o: ../FL/Fl_Bitmap.H
-Fl_get_system_colors.o: ../FL/Fl_Cairo.H
-Fl_get_system_colors.o: ../FL/fl_casts.H
-Fl_get_system_colors.o: ../FL/fl_config.h
-Fl_get_system_colors.o: ../FL/Fl_Device.H
-Fl_get_system_colors.o: ../FL/fl_draw.H
-Fl_get_system_colors.o: ../FL/Fl_Export.H
-Fl_get_system_colors.o: ../FL/Fl_Graphics_Driver.H
-Fl_get_system_colors.o: ../FL/Fl_Group.H
-Fl_get_system_colors.o: ../FL/Fl_Image.H
-Fl_get_system_colors.o: ../FL/Fl_Pixmap.H
-Fl_get_system_colors.o: ../FL/Fl_Plugin.H
-Fl_get_system_colors.o: ../FL/Fl_Preferences.H
-Fl_get_system_colors.o: ../FL/Fl_Rect.H
-Fl_get_system_colors.o: ../FL/Fl_RGB_Image.H
-Fl_get_system_colors.o: ../FL/Fl_Scrollbar.H
-Fl_get_system_colors.o: ../FL/Fl_Slider.H
-Fl_get_system_colors.o: ../FL/fl_string_functions.h
-Fl_get_system_colors.o: ../FL/Fl_Text_Buffer.H
-Fl_get_system_colors.o: ../FL/Fl_Text_Display.H
-Fl_get_system_colors.o: ../FL/Fl_Text_Editor.H
-Fl_get_system_colors.o: ../FL/Fl_Tiled_Image.H
-Fl_get_system_colors.o: ../FL/fl_types.h
-Fl_get_system_colors.o: ../FL/fl_utf8.h
-Fl_get_system_colors.o: ../FL/Fl_Valuator.H
-Fl_get_system_colors.o: ../FL/Fl_Widget.H
-Fl_get_system_colors.o: ../FL/math.h
-Fl_get_system_colors.o: ../FL/platform.H
-Fl_get_system_colors.o: ../FL/platform_types.h
-Fl_get_system_colors.o: ../FL/x11.H
-Fl_get_system_colors.o: flstring.h
-Fl_get_system_colors.o: Fl_Screen_Driver.H
-Fl_get_system_colors.o: Fl_System_Driver.H
-Fl_get_system_colors.o: tile.xpm
-Fl_GIF_Image.o: ../config.h
-Fl_GIF_Image.o: ../FL/Enumerations.H
-Fl_GIF_Image.o: ../FL/Fl.H
-Fl_GIF_Image.o: ../FL/fl_attr.h
-Fl_GIF_Image.o: ../FL/Fl_Cairo.H
-Fl_GIF_Image.o: ../FL/fl_casts.H
-Fl_GIF_Image.o: ../FL/fl_config.h
-Fl_GIF_Image.o: ../FL/Fl_Export.H
-Fl_GIF_Image.o: ../FL/Fl_GIF_Image.H
-Fl_GIF_Image.o: ../FL/Fl_Image.H
-Fl_GIF_Image.o: ../FL/Fl_Pixmap.H
-Fl_GIF_Image.o: ../FL/fl_string_functions.h
-Fl_GIF_Image.o: ../FL/fl_types.h
-Fl_GIF_Image.o: ../FL/fl_utf8.h
-Fl_GIF_Image.o: ../FL/platform_types.h
-Fl_GIF_Image.o: flstring.h
-Fl_GIF_Image.o: Fl_Image_Reader.h
-fl_gleam.o: ../FL/Enumerations.H
-fl_gleam.o: ../FL/Fl.H
-fl_gleam.o: ../FL/fl_attr.h
-fl_gleam.o: ../FL/Fl_Cairo.H
-fl_gleam.o: ../FL/fl_casts.H
-fl_gleam.o: ../FL/fl_config.h
-fl_gleam.o: ../FL/fl_draw.H
-fl_gleam.o: ../FL/Fl_Export.H
-fl_gleam.o: ../FL/fl_types.h
-fl_gleam.o: ../FL/fl_utf8.h
-fl_gleam.o: ../FL/platform_types.h
-Fl_Gl_Choice.o: ../config.h
-Fl_Gl_Choice.o: ../FL/Enumerations.H
-Fl_Gl_Choice.o: ../FL/Fl.H
-Fl_Gl_Choice.o: ../FL/fl_attr.h
-Fl_Gl_Choice.o: ../FL/Fl_Cairo.H
-Fl_Gl_Choice.o: ../FL/fl_casts.H
-Fl_Gl_Choice.o: ../FL/fl_config.h
-Fl_Gl_Choice.o: ../FL/Fl_Export.H
-Fl_Gl_Choice.o: ../FL/Fl_Gl_Window.H
-Fl_Gl_Choice.o: ../FL/fl_types.h
-Fl_Gl_Choice.o: ../FL/fl_utf8.h
-Fl_Gl_Choice.o: ../FL/Fl_Window.H
-Fl_Gl_Choice.o: ../FL/gl.h
-Fl_Gl_Choice.o: ../FL/gl_draw.H
-Fl_Gl_Choice.o: ../FL/platform_types.h
-Fl_Gl_Choice.o: Fl_Gl_Choice.H
-Fl_Gl_Choice.o: Fl_Gl_Window_Driver.H
-Fl_Gl_Device_Plugin.o: ../config.h
-Fl_Gl_Device_Plugin.o: ../FL/Enumerations.H
-Fl_Gl_Device_Plugin.o: ../FL/fl_attr.h
-Fl_Gl_Device_Plugin.o: ../FL/fl_config.h
-Fl_Gl_Device_Plugin.o: ../FL/Fl_Device.H
-Fl_Gl_Device_Plugin.o: ../FL/Fl_Export.H
-Fl_Gl_Device_Plugin.o: ../FL/Fl_Gl_Window.H
-Fl_Gl_Device_Plugin.o: ../FL/Fl_Image.H
-Fl_Gl_Device_Plugin.o: ../FL/Fl_Plugin.H
-Fl_Gl_Device_Plugin.o: ../FL/Fl_Preferences.H
-Fl_Gl_Device_Plugin.o: ../FL/Fl_RGB_Image.H
-Fl_Gl_Device_Plugin.o: ../FL/fl_types.h
-Fl_Gl_Device_Plugin.o: ../FL/Fl_Window.H
-Fl_Gl_Device_Plugin.o: ../FL/gl.h
-Fl_Gl_Device_Plugin.o: ../FL/platform_types.h
-Fl_Gl_Device_Plugin.o: Fl_Gl_Window_Driver.H
-Fl_Gl_Overlay.o: ../config.h
-Fl_Gl_Overlay.o: ../FL/Enumerations.H
-Fl_Gl_Overlay.o: ../FL/Fl.H
-Fl_Gl_Overlay.o: ../FL/fl_attr.h
-Fl_Gl_Overlay.o: ../FL/Fl_Cairo.H
-Fl_Gl_Overlay.o: ../FL/fl_casts.H
-Fl_Gl_Overlay.o: ../FL/fl_config.h
-Fl_Gl_Overlay.o: ../FL/Fl_Export.H
-Fl_Gl_Overlay.o: ../FL/Fl_Gl_Window.H
-Fl_Gl_Overlay.o: ../FL/fl_types.h
-Fl_Gl_Overlay.o: ../FL/fl_utf8.h
-Fl_Gl_Overlay.o: ../FL/Fl_Window.H
-Fl_Gl_Overlay.o: ../FL/gl.h
-Fl_Gl_Overlay.o: ../FL/platform_types.h
-Fl_Gl_Overlay.o: Fl_Gl_Window_Driver.H
-Fl_Gl_Window.o: ../config.h
-Fl_Gl_Window.o: ../FL/Enumerations.H
-Fl_Gl_Window.o: ../FL/Fl.H
-Fl_Gl_Window.o: ../FL/fl_attr.h
-Fl_Gl_Window.o: ../FL/Fl_Bitmap.H
-Fl_Gl_Window.o: ../FL/Fl_Cairo.H
-Fl_Gl_Window.o: ../FL/fl_casts.H
-Fl_Gl_Window.o: ../FL/fl_config.h
-Fl_Gl_Window.o: ../FL/Fl_Device.H
-Fl_Gl_Window.o: ../FL/Fl_Double_Window.H
-Fl_Gl_Window.o: ../FL/fl_draw.H
-Fl_Gl_Window.o: ../FL/Fl_Export.H
-Fl_Gl_Window.o: ../FL/Fl_Gl_Window.H
-Fl_Gl_Window.o: ../FL/Fl_Graphics_Driver.H
-Fl_Gl_Window.o: ../FL/Fl_Group.H
-Fl_Gl_Window.o: ../FL/Fl_Image.H
-Fl_Gl_Window.o: ../FL/Fl_Overlay_Window.H
-Fl_Gl_Window.o: ../FL/Fl_Pixmap.H
-Fl_Gl_Window.o: ../FL/Fl_Plugin.H
-Fl_Gl_Window.o: ../FL/Fl_Preferences.H
-Fl_Gl_Window.o: ../FL/Fl_RGB_Image.H
-Fl_Gl_Window.o: ../FL/fl_types.h
-Fl_Gl_Window.o: ../FL/fl_utf8.h
-Fl_Gl_Window.o: ../FL/Fl_Widget.H
-Fl_Gl_Window.o: ../FL/Fl_Window.H
-Fl_Gl_Window.o: ../FL/gl.h
-Fl_Gl_Window.o: ../FL/platform_types.h
-Fl_Gl_Window.o: drivers/OpenGL/Fl_OpenGL_Display_Device.H
-Fl_Gl_Window.o: drivers/OpenGL/Fl_OpenGL_Graphics_Driver.H
-Fl_Gl_Window.o: Fl_Gl_Window_Driver.H
-Fl_Gl_Window.o: Fl_Window_Driver.H
-Fl_grab.o: ../FL/Enumerations.H
-Fl_grab.o: ../FL/Fl.H
-Fl_grab.o: ../FL/fl_attr.h
-Fl_grab.o: ../FL/Fl_Bitmap.H
-Fl_grab.o: ../FL/Fl_Cairo.H
-Fl_grab.o: ../FL/fl_casts.H
-Fl_grab.o: ../FL/fl_config.h
-Fl_grab.o: ../FL/Fl_Device.H
-Fl_grab.o: ../FL/fl_draw.H
-Fl_grab.o: ../FL/Fl_Export.H
-Fl_grab.o: ../FL/Fl_Graphics_Driver.H
-Fl_grab.o: ../FL/Fl_Group.H
-Fl_grab.o: ../FL/Fl_Image.H
-Fl_grab.o: ../FL/Fl_Pixmap.H
-Fl_grab.o: ../FL/Fl_Plugin.H
-Fl_grab.o: ../FL/Fl_Preferences.H
-Fl_grab.o: ../FL/Fl_Rect.H
-Fl_grab.o: ../FL/Fl_RGB_Image.H
-Fl_grab.o: ../FL/Fl_Scrollbar.H
-Fl_grab.o: ../FL/Fl_Slider.H
-Fl_grab.o: ../FL/Fl_Text_Buffer.H
-Fl_grab.o: ../FL/Fl_Text_Display.H
-Fl_grab.o: ../FL/Fl_Text_Editor.H
-Fl_grab.o: ../FL/fl_types.h
-Fl_grab.o: ../FL/fl_utf8.h
-Fl_grab.o: ../FL/Fl_Valuator.H
-Fl_grab.o: ../FL/Fl_Widget.H
-Fl_grab.o: ../FL/platform_types.h
-Fl_grab.o: Fl_Screen_Driver.H
-Fl_Graphics_Driver.o: ../config.h
-Fl_Graphics_Driver.o: ../FL/Enumerations.H
-Fl_Graphics_Driver.o: ../FL/Fl.H
-Fl_Graphics_Driver.o: ../FL/fl_attr.h
-Fl_Graphics_Driver.o: ../FL/Fl_Bitmap.H
-Fl_Graphics_Driver.o: ../FL/Fl_Cairo.H
-Fl_Graphics_Driver.o: ../FL/fl_casts.H
-Fl_Graphics_Driver.o: ../FL/fl_config.h
-Fl_Graphics_Driver.o: ../FL/Fl_Device.H
-Fl_Graphics_Driver.o: ../FL/fl_draw.H
-Fl_Graphics_Driver.o: ../FL/Fl_Export.H
-Fl_Graphics_Driver.o: ../FL/Fl_Graphics_Driver.H
-Fl_Graphics_Driver.o: ../FL/Fl_Group.H
-Fl_Graphics_Driver.o: ../FL/Fl_Image.H
-Fl_Graphics_Driver.o: ../FL/Fl_Image_Surface.H
-Fl_Graphics_Driver.o: ../FL/Fl_Pixmap.H
-Fl_Graphics_Driver.o: ../FL/Fl_Plugin.H
-Fl_Graphics_Driver.o: ../FL/Fl_Preferences.H
-Fl_Graphics_Driver.o: ../FL/Fl_Rect.H
-Fl_Graphics_Driver.o: ../FL/Fl_RGB_Image.H
-Fl_Graphics_Driver.o: ../FL/Fl_Scrollbar.H
-Fl_Graphics_Driver.o: ../FL/Fl_Shared_Image.H
-Fl_Graphics_Driver.o: ../FL/Fl_Slider.H
-Fl_Graphics_Driver.o: ../FL/Fl_Text_Buffer.H
-Fl_Graphics_Driver.o: ../FL/Fl_Text_Display.H
-Fl_Graphics_Driver.o: ../FL/Fl_Text_Editor.H
-Fl_Graphics_Driver.o: ../FL/fl_types.h
-Fl_Graphics_Driver.o: ../FL/fl_utf8.h
-Fl_Graphics_Driver.o: ../FL/Fl_Valuator.H
-Fl_Graphics_Driver.o: ../FL/Fl_Widget.H
-Fl_Graphics_Driver.o: ../FL/Fl_Widget_Surface.H
-Fl_Graphics_Driver.o: ../FL/Fl_Window.H
-Fl_Graphics_Driver.o: ../FL/math.h
-Fl_Graphics_Driver.o: ../FL/platform.H
-Fl_Graphics_Driver.o: ../FL/platform_types.h
-Fl_Graphics_Driver.o: ../FL/x11.H
-Fl_Graphics_Driver.o: Fl_Screen_Driver.H
-Fl_Grid.o: ../FL/fl_draw.H
-Fl_Grid.o: ../FL/Fl_Grid.H
-Fl_Grid.o: ../FL/Fl_Group.H
-Fl_Grid.o: ../FL/Fl_Rect.H
-Fl_Grid.o: ../FL/Fl_Widget.H
-Fl_Group.o: ../FL/Enumerations.H
-Fl_Group.o: ../FL/Fl.H
-Fl_Group.o: ../FL/fl_attr.h
-Fl_Group.o: ../FL/Fl_Bitmap.H
-Fl_Group.o: ../FL/Fl_Cairo.H
-Fl_Group.o: ../FL/fl_casts.H
-Fl_Group.o: ../FL/fl_config.h
-Fl_Group.o: ../FL/Fl_Double_Window.H
-Fl_Group.o: ../FL/fl_draw.H
-Fl_Group.o: ../FL/Fl_Export.H
-Fl_Group.o: ../FL/Fl_Group.H
-Fl_Group.o: ../FL/Fl_Image.H
-Fl_Group.o: ../FL/Fl_Overlay_Window.H
-Fl_Group.o: ../FL/Fl_Rect.H
-Fl_Group.o: ../FL/fl_types.h
-Fl_Group.o: ../FL/fl_utf8.h
-Fl_Group.o: ../FL/Fl_Widget.H
-Fl_Group.o: ../FL/Fl_Window.H
-Fl_Group.o: ../FL/platform_types.h
-Fl_Group.o: Fl_Window_Driver.H
-fl_gtk.o: ../FL/Enumerations.H
-fl_gtk.o: ../FL/Fl.H
-fl_gtk.o: ../FL/fl_attr.h
-fl_gtk.o: ../FL/Fl_Cairo.H
-fl_gtk.o: ../FL/fl_casts.H
-fl_gtk.o: ../FL/fl_config.h
-fl_gtk.o: ../FL/fl_draw.H
-fl_gtk.o: ../FL/Fl_Export.H
-fl_gtk.o: ../FL/fl_types.h
-fl_gtk.o: ../FL/fl_utf8.h
-fl_gtk.o: ../FL/platform_types.h
-Fl_Help_Dialog.o: ../config.h
-Fl_Help_Dialog.o: ../FL/Enumerations.H
-Fl_Help_Dialog.o: ../FL/filename.H
-Fl_Help_Dialog.o: ../FL/Fl.H
-Fl_Help_Dialog.o: ../FL/fl_ask.H
-Fl_Help_Dialog.o: ../FL/fl_attr.h
-Fl_Help_Dialog.o: ../FL/Fl_Bitmap.H
-Fl_Help_Dialog.o: ../FL/Fl_Box.H
-Fl_Help_Dialog.o: ../FL/Fl_Button.H
-Fl_Help_Dialog.o: ../FL/Fl_Cairo.H
-Fl_Help_Dialog.o: ../FL/fl_casts.H
-Fl_Help_Dialog.o: ../FL/fl_config.h
-Fl_Help_Dialog.o: ../FL/Fl_Device.H
-Fl_Help_Dialog.o: ../FL/Fl_Double_Window.H
-Fl_Help_Dialog.o: ../FL/fl_draw.H
-Fl_Help_Dialog.o: ../FL/Fl_Export.H
-Fl_Help_Dialog.o: ../FL/Fl_Graphics_Driver.H
-Fl_Help_Dialog.o: ../FL/Fl_Group.H
-Fl_Help_Dialog.o: ../FL/Fl_Help_Dialog.H
-Fl_Help_Dialog.o: ../FL/Fl_Help_View.H
-Fl_Help_Dialog.o: ../FL/Fl_Image.H
-Fl_Help_Dialog.o: ../FL/Fl_Input.H
-Fl_Help_Dialog.o: ../FL/Fl_Input_.H
-Fl_Help_Dialog.o: ../FL/Fl_Pixmap.H
-Fl_Help_Dialog.o: ../FL/Fl_Plugin.H
-Fl_Help_Dialog.o: ../FL/Fl_Preferences.H
-Fl_Help_Dialog.o: ../FL/Fl_Rect.H
-Fl_Help_Dialog.o: ../FL/Fl_RGB_Image.H
-Fl_Help_Dialog.o: ../FL/Fl_Scrollbar.H
-Fl_Help_Dialog.o: ../FL/Fl_Shared_Image.H
-Fl_Help_Dialog.o: ../FL/Fl_Slider.H
-Fl_Help_Dialog.o: ../FL/fl_string_functions.h
-Fl_Help_Dialog.o: ../FL/fl_types.h
-Fl_Help_Dialog.o: ../FL/fl_utf8.h
-Fl_Help_Dialog.o: ../FL/Fl_Valuator.H
-Fl_Help_Dialog.o: ../FL/Fl_Widget.H
-Fl_Help_Dialog.o: ../FL/Fl_Window.H
-Fl_Help_Dialog.o: ../FL/platform_types.h
-Fl_Help_Dialog.o: flstring.h
-Fl_Help_View.o: ../config.h
-Fl_Help_View.o: ../FL/Enumerations.H
-Fl_Help_View.o: ../FL/filename.H
-Fl_Help_View.o: ../FL/Fl.H
-Fl_Help_View.o: ../FL/fl_attr.h
-Fl_Help_View.o: ../FL/Fl_Bitmap.H
-Fl_Help_View.o: ../FL/Fl_Cairo.H
-Fl_Help_View.o: ../FL/fl_casts.H
-Fl_Help_View.o: ../FL/fl_config.h
-Fl_Help_View.o: ../FL/Fl_Device.H
-Fl_Help_View.o: ../FL/fl_draw.H
-Fl_Help_View.o: ../FL/Fl_Export.H
-Fl_Help_View.o: ../FL/Fl_Graphics_Driver.H
-Fl_Help_View.o: ../FL/Fl_Group.H
-Fl_Help_View.o: ../FL/Fl_Help_View.H
-Fl_Help_View.o: ../FL/Fl_Image.H
-Fl_Help_View.o: ../FL/Fl_Menu_Item.H
-Fl_Help_View.o: ../FL/Fl_Multi_Label.H
-Fl_Help_View.o: ../FL/Fl_Pixmap.H
-Fl_Help_View.o: ../FL/Fl_Plugin.H
-Fl_Help_View.o: ../FL/Fl_Preferences.H
-Fl_Help_View.o: ../FL/Fl_Rect.H
-Fl_Help_View.o: ../FL/Fl_RGB_Image.H
-Fl_Help_View.o: ../FL/Fl_Scrollbar.H
-Fl_Help_View.o: ../FL/Fl_Shared_Image.H
-Fl_Help_View.o: ../FL/Fl_Slider.H
-Fl_Help_View.o: ../FL/fl_string_functions.h
-Fl_Help_View.o: ../FL/fl_types.h
-Fl_Help_View.o: ../FL/fl_utf8.h
-Fl_Help_View.o: ../FL/Fl_Valuator.H
-Fl_Help_View.o: ../FL/Fl_Widget.H
-Fl_Help_View.o: ../FL/Fl_Window.H
-Fl_Help_View.o: ../FL/platform_types.h
-Fl_Help_View.o: flstring.h
-Fl_Help_View.o: Fl_Int_Vector.H
-Fl_Help_View.o: Fl_String.H
-Fl_ICO_Image.o: ../config.h
-Fl_ICO_Image.o: ../FL/Enumerations.H
-Fl_ICO_Image.o: ../FL/Fl.H
-Fl_ICO_Image.o: ../FL/fl_attr.h
-Fl_ICO_Image.o: ../FL/Fl_BMP_Image.H
-Fl_ICO_Image.o: ../FL/Fl_Cairo.H
-Fl_ICO_Image.o: ../FL/fl_casts.H
-Fl_ICO_Image.o: ../FL/fl_config.h
-Fl_ICO_Image.o: ../FL/Fl_Export.H
-Fl_ICO_Image.o: ../FL/Fl_ICO_Image.H
-Fl_ICO_Image.o: ../FL/Fl_Image.H
-Fl_ICO_Image.o: ../FL/Fl_PNG_Image.H
-Fl_ICO_Image.o: ../FL/fl_types.h
-Fl_ICO_Image.o: ../FL/fl_utf8.h
-Fl_ICO_Image.o: ../FL/platform_types.h
-Fl_ICO_Image.o: Fl_Image_Reader.h
-Fl_Image.o: ../config.h
-Fl_Image.o: ../FL/Enumerations.H
-Fl_Image.o: ../FL/Fl.H
-Fl_Image.o: ../FL/fl_attr.h
-Fl_Image.o: ../FL/Fl_Cairo.H
-Fl_Image.o: ../FL/fl_casts.H
-Fl_Image.o: ../FL/fl_config.h
-Fl_Image.o: ../FL/fl_draw.H
-Fl_Image.o: ../FL/Fl_Export.H
-Fl_Image.o: ../FL/Fl_Image.H
-Fl_Image.o: ../FL/Fl_Menu_Item.H
-Fl_Image.o: ../FL/Fl_Multi_Label.H
-Fl_Image.o: ../FL/fl_string_functions.h
-Fl_Image.o: ../FL/fl_types.h
-Fl_Image.o: ../FL/fl_utf8.h
-Fl_Image.o: ../FL/Fl_Widget.H
-Fl_Image.o: ../FL/platform_types.h
-Fl_Image.o: flstring.h
-fl_images_core.o: ../config.h
-fl_images_core.o: ../FL/Enumerations.H
-fl_images_core.o: ../FL/Fl.H
-fl_images_core.o: ../FL/Fl_Anim_GIF_Image.H
-fl_images_core.o: ../FL/fl_attr.h
-fl_images_core.o: ../FL/Fl_BMP_Image.H
-fl_images_core.o: ../FL/fl_config.h
-fl_images_core.o: ../FL/Fl_Export.H
-fl_images_core.o: ../FL/Fl_GIF_Image.H
-fl_images_core.o: ../FL/Fl_ICO_Image.H
-fl_images_core.o: ../FL/Fl_Image.H
-fl_images_core.o: ../FL/Fl_JPEG_Image.H
-fl_images_core.o: ../FL/Fl_Pixmap.H
-fl_images_core.o: ../FL/Fl_PNG_Image.H
-fl_images_core.o: ../FL/Fl_PNM_Image.H
-fl_images_core.o: ../FL/Fl_Shared_Image.H
-fl_images_core.o: ../FL/fl_string_functions.h
-fl_images_core.o: ../FL/Fl_SVG_Image.H
-fl_images_core.o: ../FL/fl_types.h
-fl_images_core.o: ../FL/fl_utf8.h
-fl_images_core.o: ../FL/Fl_Widget.H
-fl_images_core.o: ../FL/platform_types.h
-fl_images_core.o: flstring.h
-Fl_Image_Reader.o: ../FL/Fl_Export.H
-Fl_Image_Reader.o: ../FL/fl_string_functions.h
-Fl_Image_Reader.o: ../FL/fl_utf8.h
-Fl_Image_Reader.o: Fl_Image_Reader.h
-Fl_Image_Surface.o: ../FL/Enumerations.H
-Fl_Image_Surface.o: ../FL/Fl.H
-Fl_Image_Surface.o: ../FL/fl_attr.h
-Fl_Image_Surface.o: ../FL/Fl_Bitmap.H
-Fl_Image_Surface.o: ../FL/Fl_Cairo.H
-Fl_Image_Surface.o: ../FL/fl_casts.H
-Fl_Image_Surface.o: ../FL/fl_config.h
-Fl_Image_Surface.o: ../FL/Fl_Device.H
-Fl_Image_Surface.o: ../FL/fl_draw.H
-Fl_Image_Surface.o: ../FL/Fl_Export.H
-Fl_Image_Surface.o: ../FL/Fl_Group.H
-Fl_Image_Surface.o: ../FL/Fl_Image.H
-Fl_Image_Surface.o: ../FL/Fl_Image_Surface.H
-Fl_Image_Surface.o: ../FL/Fl_Plugin.H
-Fl_Image_Surface.o: ../FL/Fl_Preferences.H
-Fl_Image_Surface.o: ../FL/Fl_Shared_Image.H
-Fl_Image_Surface.o: ../FL/fl_types.h
-Fl_Image_Surface.o: ../FL/fl_utf8.h
-Fl_Image_Surface.o: ../FL/Fl_Widget.H
-Fl_Image_Surface.o: ../FL/Fl_Widget_Surface.H
-Fl_Image_Surface.o: ../FL/Fl_Window.H
-Fl_Image_Surface.o: ../FL/platform_types.h
-Fl_Input.o: ../config.h
-Fl_Input.o: ../FL/Enumerations.H
-Fl_Input.o: ../FL/filename.H
-Fl_Input.o: ../FL/Fl.H
-Fl_Input.o: ../FL/fl_ask.H
-Fl_Input.o: ../FL/fl_attr.h
-Fl_Input.o: ../FL/Fl_Bitmap.H
-Fl_Input.o: ../FL/Fl_Cairo.H
-Fl_Input.o: ../FL/fl_casts.H
-Fl_Input.o: ../FL/fl_config.h
-Fl_Input.o: ../FL/Fl_Device.H
-Fl_Input.o: ../FL/fl_draw.H
-Fl_Input.o: ../FL/Fl_Export.H
-Fl_Input.o: ../FL/Fl_Float_Input.H
-Fl_Input.o: ../FL/Fl_Graphics_Driver.H
-Fl_Input.o: ../FL/Fl_Group.H
-Fl_Input.o: ../FL/Fl_Image.H
-Fl_Input.o: ../FL/Fl_Input.H
-Fl_Input.o: ../FL/Fl_Input_.H
-Fl_Input.o: ../FL/Fl_Int_Input.H
-Fl_Input.o: ../FL/Fl_Menu_Item.H
-Fl_Input.o: ../FL/Fl_Multiline_Input.H
-Fl_Input.o: ../FL/Fl_Multiline_Output.H
-Fl_Input.o: ../FL/Fl_Multi_Label.H
-Fl_Input.o: ../FL/Fl_Output.H
-Fl_Input.o: ../FL/Fl_Pixmap.H
-Fl_Input.o: ../FL/Fl_Plugin.H
-Fl_Input.o: ../FL/Fl_Preferences.H
-Fl_Input.o: ../FL/Fl_Rect.H
-Fl_Input.o: ../FL/Fl_RGB_Image.H
-Fl_Input.o: ../FL/Fl_Scrollbar.H
-Fl_Input.o: ../FL/Fl_Secret_Input.H
-Fl_Input.o: ../FL/Fl_Slider.H
-Fl_Input.o: ../FL/fl_string_functions.h
-Fl_Input.o: ../FL/Fl_Text_Buffer.H
-Fl_Input.o: ../FL/Fl_Text_Display.H
-Fl_Input.o: ../FL/Fl_Text_Editor.H
-Fl_Input.o: ../FL/fl_types.h
-Fl_Input.o: ../FL/fl_utf8.h
-Fl_Input.o: ../FL/Fl_Valuator.H
-Fl_Input.o: ../FL/Fl_Widget.H
-Fl_Input.o: ../FL/Fl_Window.H
-Fl_Input.o: ../FL/platform.H
-Fl_Input.o: ../FL/platform_types.h
-Fl_Input.o: ../FL/x11.H
-Fl_Input.o: flstring.h
-Fl_Input.o: Fl_Screen_Driver.H
-Fl_Input.o: Fl_System_Driver.H
-Fl_Input_.o: ../config.h
-Fl_Input_.o: ../FL/Enumerations.H
-Fl_Input_.o: ../FL/Fl.H
-Fl_Input_.o: ../FL/fl_ask.H
-Fl_Input_.o: ../FL/fl_attr.h
-Fl_Input_.o: ../FL/Fl_Bitmap.H
-Fl_Input_.o: ../FL/Fl_Cairo.H
-Fl_Input_.o: ../FL/fl_casts.H
-Fl_Input_.o: ../FL/fl_config.h
-Fl_Input_.o: ../FL/Fl_Device.H
-Fl_Input_.o: ../FL/fl_draw.H
-Fl_Input_.o: ../FL/Fl_Export.H
-Fl_Input_.o: ../FL/Fl_Graphics_Driver.H
-Fl_Input_.o: ../FL/Fl_Group.H
-Fl_Input_.o: ../FL/Fl_Image.H
-Fl_Input_.o: ../FL/Fl_Input_.H
-Fl_Input_.o: ../FL/Fl_Pixmap.H
-Fl_Input_.o: ../FL/Fl_Plugin.H
-Fl_Input_.o: ../FL/Fl_Preferences.H
-Fl_Input_.o: ../FL/Fl_Rect.H
-Fl_Input_.o: ../FL/Fl_RGB_Image.H
-Fl_Input_.o: ../FL/Fl_Scrollbar.H
-Fl_Input_.o: ../FL/Fl_Slider.H
-Fl_Input_.o: ../FL/fl_string_functions.h
-Fl_Input_.o: ../FL/Fl_Text_Buffer.H
-Fl_Input_.o: ../FL/Fl_Text_Display.H
-Fl_Input_.o: ../FL/Fl_Text_Editor.H
-Fl_Input_.o: ../FL/fl_types.h
-Fl_Input_.o: ../FL/fl_utf8.h
-Fl_Input_.o: ../FL/Fl_Valuator.H
-Fl_Input_.o: ../FL/Fl_Widget.H
-Fl_Input_.o: ../FL/Fl_Window.H
-Fl_Input_.o: ../FL/platform_types.h
-Fl_Input_.o: flstring.h
-Fl_Input_.o: Fl_Screen_Driver.H
-Fl_Input_Choice.o: ../FL/Enumerations.H
-Fl_Input_Choice.o: ../FL/Fl.H
-Fl_Input_Choice.o: ../FL/fl_attr.h
-Fl_Input_Choice.o: ../FL/Fl_Cairo.H
-Fl_Input_Choice.o: ../FL/fl_casts.H
-Fl_Input_Choice.o: ../FL/fl_config.h
-Fl_Input_Choice.o: ../FL/fl_draw.H
-Fl_Input_Choice.o: ../FL/Fl_Export.H
-Fl_Input_Choice.o: ../FL/Fl_Group.H
-Fl_Input_Choice.o: ../FL/Fl_Image.H
-Fl_Input_Choice.o: ../FL/Fl_Input.H
-Fl_Input_Choice.o: ../FL/Fl_Input_.H
-Fl_Input_Choice.o: ../FL/Fl_Input_Choice.H
-Fl_Input_Choice.o: ../FL/Fl_Menu_.H
-Fl_Input_Choice.o: ../FL/Fl_Menu_Button.H
-Fl_Input_Choice.o: ../FL/Fl_Menu_Item.H
-Fl_Input_Choice.o: ../FL/Fl_Multi_Label.H
-Fl_Input_Choice.o: ../FL/fl_types.h
-Fl_Input_Choice.o: ../FL/fl_utf8.h
-Fl_Input_Choice.o: ../FL/Fl_Widget.H
-Fl_Input_Choice.o: ../FL/platform_types.h
-Fl_Int_Vector.o: ../FL/Fl_Export.H
-Fl_Int_Vector.o: Fl_Int_Vector.H
-Fl_JPEG_Image.o: ../config.h
-Fl_JPEG_Image.o: ../FL/Enumerations.H
-Fl_JPEG_Image.o: ../FL/Fl.H
-Fl_JPEG_Image.o: ../FL/fl_attr.h
-Fl_JPEG_Image.o: ../FL/Fl_Cairo.H
-Fl_JPEG_Image.o: ../FL/fl_casts.H
-Fl_JPEG_Image.o: ../FL/fl_config.h
-Fl_JPEG_Image.o: ../FL/Fl_Export.H
-Fl_JPEG_Image.o: ../FL/Fl_Image.H
-Fl_JPEG_Image.o: ../FL/Fl_JPEG_Image.H
-Fl_JPEG_Image.o: ../FL/Fl_Shared_Image.H
-Fl_JPEG_Image.o: ../FL/fl_types.h
-Fl_JPEG_Image.o: ../FL/fl_utf8.h
-Fl_JPEG_Image.o: ../FL/platform_types.h
-fl_labeltype.o: ../FL/Enumerations.H
-fl_labeltype.o: ../FL/Fl.H
-fl_labeltype.o: ../FL/fl_attr.h
-fl_labeltype.o: ../FL/Fl_Cairo.H
-fl_labeltype.o: ../FL/fl_casts.H
-fl_labeltype.o: ../FL/fl_config.h
-fl_labeltype.o: ../FL/fl_draw.H
-fl_labeltype.o: ../FL/Fl_Export.H
-fl_labeltype.o: ../FL/Fl_Group.H
-fl_labeltype.o: ../FL/Fl_Image.H
-fl_labeltype.o: ../FL/Fl_Input_.H
-fl_labeltype.o: ../FL/fl_types.h
-fl_labeltype.o: ../FL/fl_utf8.h
-fl_labeltype.o: ../FL/Fl_Widget.H
-fl_labeltype.o: ../FL/platform_types.h
-Fl_Light_Button.o: ../config.h
-Fl_Light_Button.o: ../FL/Enumerations.H
-Fl_Light_Button.o: ../FL/Fl.H
-Fl_Light_Button.o: ../FL/fl_attr.h
-Fl_Light_Button.o: ../FL/Fl_Button.H
-Fl_Light_Button.o: ../FL/Fl_Cairo.H
-Fl_Light_Button.o: ../FL/fl_casts.H
-Fl_Light_Button.o: ../FL/fl_config.h
-Fl_Light_Button.o: ../FL/fl_draw.H
-Fl_Light_Button.o: ../FL/Fl_Export.H
-Fl_Light_Button.o: ../FL/Fl_Light_Button.H
-Fl_Light_Button.o: ../FL/Fl_Radio_Light_Button.H
-Fl_Light_Button.o: ../FL/fl_string_functions.h
-Fl_Light_Button.o: ../FL/fl_types.h
-Fl_Light_Button.o: ../FL/fl_utf8.h
-Fl_Light_Button.o: ../FL/platform_types.h
-Fl_Light_Button.o: flstring.h
-Fl_lock.o: ../config.h
-Fl_lock.o: ../FL/Enumerations.H
-Fl_lock.o: ../FL/filename.H
-Fl_lock.o: ../FL/Fl.H
-Fl_lock.o: ../FL/fl_attr.h
-Fl_lock.o: ../FL/Fl_Cairo.H
-Fl_lock.o: ../FL/fl_casts.H
-Fl_lock.o: ../FL/fl_config.h
-Fl_lock.o: ../FL/Fl_Export.H
-Fl_lock.o: ../FL/Fl_Preferences.H
-Fl_lock.o: ../FL/fl_types.h
-Fl_lock.o: ../FL/fl_utf8.h
-Fl_lock.o: ../FL/platform_types.h
-Fl_lock.o: Fl_System_Driver.H
-Fl_Menu.o: ../config.h
-Fl_Menu.o: ../FL/Enumerations.H
-Fl_Menu.o: ../FL/Fl.H
-Fl_Menu.o: ../FL/fl_attr.h
-Fl_Menu.o: ../FL/Fl_Bitmap.H
-Fl_Menu.o: ../FL/Fl_Cairo.H
-Fl_Menu.o: ../FL/fl_casts.H
-Fl_Menu.o: ../FL/fl_config.h
-Fl_Menu.o: ../FL/Fl_Device.H
-Fl_Menu.o: ../FL/Fl_Double_Window.H
-Fl_Menu.o: ../FL/fl_draw.H
-Fl_Menu.o: ../FL/Fl_Export.H
-Fl_Menu.o: ../FL/Fl_Graphics_Driver.H
-Fl_Menu.o: ../FL/Fl_Group.H
-Fl_Menu.o: ../FL/Fl_Image.H
-Fl_Menu.o: ../FL/Fl_Menu_.H
-Fl_Menu.o: ../FL/Fl_Menu_Item.H
-Fl_Menu.o: ../FL/Fl_Menu_Window.H
-Fl_Menu.o: ../FL/Fl_Multi_Label.H
-Fl_Menu.o: ../FL/Fl_Overlay_Window.H
-Fl_Menu.o: ../FL/Fl_Pixmap.H
-Fl_Menu.o: ../FL/Fl_Plugin.H
-Fl_Menu.o: ../FL/Fl_Preferences.H
-Fl_Menu.o: ../FL/Fl_Rect.H
-Fl_Menu.o: ../FL/Fl_RGB_Image.H
-Fl_Menu.o: ../FL/Fl_Scrollbar.H
-Fl_Menu.o: ../FL/Fl_Single_Window.H
-Fl_Menu.o: ../FL/Fl_Slider.H
-Fl_Menu.o: ../FL/fl_string_functions.h
-Fl_Menu.o: ../FL/Fl_Text_Buffer.H
-Fl_Menu.o: ../FL/Fl_Text_Display.H
-Fl_Menu.o: ../FL/Fl_Text_Editor.H
-Fl_Menu.o: ../FL/fl_types.h
-Fl_Menu.o: ../FL/fl_utf8.h
-Fl_Menu.o: ../FL/Fl_Valuator.H
-Fl_Menu.o: ../FL/Fl_Widget.H
-Fl_Menu.o: ../FL/Fl_Window.H
-Fl_Menu.o: ../FL/platform_types.h
-Fl_Menu.o: flstring.h
-Fl_Menu.o: Fl_Screen_Driver.H
-Fl_Menu.o: Fl_Window_Driver.H
-Fl_Menu_.o: ../config.h
-Fl_Menu_.o: ../FL/Enumerations.H
-Fl_Menu_.o: ../FL/Fl.H
-Fl_Menu_.o: ../FL/fl_attr.h
-Fl_Menu_.o: ../FL/Fl_Cairo.H
-Fl_Menu_.o: ../FL/fl_casts.H
-Fl_Menu_.o: ../FL/fl_config.h
-Fl_Menu_.o: ../FL/Fl_Export.H
-Fl_Menu_.o: ../FL/Fl_Image.H
-Fl_Menu_.o: ../FL/Fl_Menu_.H
-Fl_Menu_.o: ../FL/Fl_Menu_Item.H
-Fl_Menu_.o: ../FL/Fl_Multi_Label.H
-Fl_Menu_.o: ../FL/fl_string_functions.h
-Fl_Menu_.o: ../FL/fl_types.h
-Fl_Menu_.o: ../FL/fl_utf8.h
-Fl_Menu_.o: ../FL/Fl_Widget.H
-Fl_Menu_.o: ../FL/platform_types.h
-Fl_Menu_.o: flstring.h
-Fl_Menu_add.o: ../config.h
-Fl_Menu_add.o: ../FL/Enumerations.H
-Fl_Menu_add.o: ../FL/Fl.H
-Fl_Menu_add.o: ../FL/fl_attr.h
-Fl_Menu_add.o: ../FL/fl_config.h
-Fl_Menu_add.o: ../FL/Fl_Export.H
-Fl_Menu_add.o: ../FL/Fl_Image.H
-Fl_Menu_add.o: ../FL/Fl_Menu_.H
-Fl_Menu_add.o: ../FL/Fl_Menu_Item.H
-Fl_Menu_add.o: ../FL/Fl_Multi_Label.H
-Fl_Menu_add.o: ../FL/fl_string_functions.h
-Fl_Menu_add.o: ../FL/fl_types.h
-Fl_Menu_add.o: ../FL/Fl_Widget.H
-Fl_Menu_add.o: ../FL/platform_types.h
-Fl_Menu_add.o: flstring.h
-Fl_Menu_Bar.o: ../FL/Enumerations.H
-Fl_Menu_Bar.o: ../FL/Fl.H
-Fl_Menu_Bar.o: ../FL/fl_attr.h
-Fl_Menu_Bar.o: ../FL/Fl_Cairo.H
-Fl_Menu_Bar.o: ../FL/fl_casts.H
-Fl_Menu_Bar.o: ../FL/fl_config.h
-Fl_Menu_Bar.o: ../FL/fl_draw.H
-Fl_Menu_Bar.o: ../FL/Fl_Export.H
-Fl_Menu_Bar.o: ../FL/Fl_Image.H
-Fl_Menu_Bar.o: ../FL/Fl_Menu_.H
-Fl_Menu_Bar.o: ../FL/Fl_Menu_Bar.H
-Fl_Menu_Bar.o: ../FL/Fl_Menu_Item.H
-Fl_Menu_Bar.o: ../FL/Fl_Multi_Label.H
-Fl_Menu_Bar.o: ../FL/fl_types.h
-Fl_Menu_Bar.o: ../FL/fl_utf8.h
-Fl_Menu_Bar.o: ../FL/Fl_Widget.H
-Fl_Menu_Bar.o: ../FL/platform_types.h
-Fl_Menu_Button.o: ../FL/Enumerations.H
-Fl_Menu_Button.o: ../FL/Fl.H
-Fl_Menu_Button.o: ../FL/fl_attr.h
-Fl_Menu_Button.o: ../FL/Fl_Cairo.H
-Fl_Menu_Button.o: ../FL/fl_casts.H
-Fl_Menu_Button.o: ../FL/fl_config.h
-Fl_Menu_Button.o: ../FL/fl_draw.H
-Fl_Menu_Button.o: ../FL/Fl_Export.H
-Fl_Menu_Button.o: ../FL/Fl_Image.H
-Fl_Menu_Button.o: ../FL/Fl_Menu_.H
-Fl_Menu_Button.o: ../FL/Fl_Menu_Button.H
-Fl_Menu_Button.o: ../FL/Fl_Menu_Item.H
-Fl_Menu_Button.o: ../FL/Fl_Multi_Label.H
-Fl_Menu_Button.o: ../FL/Fl_Rect.H
-Fl_Menu_Button.o: ../FL/fl_types.h
-Fl_Menu_Button.o: ../FL/fl_utf8.h
-Fl_Menu_Button.o: ../FL/Fl_Widget.H
-Fl_Menu_Button.o: ../FL/platform_types.h
-Fl_Menu_global.o: ../FL/Enumerations.H
-Fl_Menu_global.o: ../FL/Fl.H
-Fl_Menu_global.o: ../FL/fl_attr.h
-Fl_Menu_global.o: ../FL/Fl_Cairo.H
-Fl_Menu_global.o: ../FL/fl_casts.H
-Fl_Menu_global.o: ../FL/fl_config.h
-Fl_Menu_global.o: ../FL/Fl_Export.H
-Fl_Menu_global.o: ../FL/Fl_Image.H
-Fl_Menu_global.o: ../FL/Fl_Menu_.H
-Fl_Menu_global.o: ../FL/Fl_Menu_Item.H
-Fl_Menu_global.o: ../FL/Fl_Multi_Label.H
-Fl_Menu_global.o: ../FL/fl_types.h
-Fl_Menu_global.o: ../FL/fl_utf8.h
-Fl_Menu_global.o: ../FL/Fl_Widget.H
-Fl_Menu_global.o: ../FL/platform_types.h
-Fl_Menu_Window.o: ../FL/Enumerations.H
-Fl_Menu_Window.o: ../FL/Fl.H
-Fl_Menu_Window.o: ../FL/fl_attr.h
-Fl_Menu_Window.o: ../FL/Fl_Bitmap.H
-Fl_Menu_Window.o: ../FL/Fl_Cairo.H
-Fl_Menu_Window.o: ../FL/fl_casts.H
-Fl_Menu_Window.o: ../FL/fl_config.h
-Fl_Menu_Window.o: ../FL/Fl_Double_Window.H
-Fl_Menu_Window.o: ../FL/Fl_Export.H
-Fl_Menu_Window.o: ../FL/Fl_Group.H
-Fl_Menu_Window.o: ../FL/Fl_Image.H
-Fl_Menu_Window.o: ../FL/Fl_Menu_Window.H
-Fl_Menu_Window.o: ../FL/Fl_Overlay_Window.H
-Fl_Menu_Window.o: ../FL/Fl_Single_Window.H
-Fl_Menu_Window.o: ../FL/fl_types.h
-Fl_Menu_Window.o: ../FL/fl_utf8.h
-Fl_Menu_Window.o: ../FL/Fl_Widget.H
-Fl_Menu_Window.o: ../FL/Fl_Window.H
-Fl_Menu_Window.o: ../FL/platform_types.h
-Fl_Menu_Window.o: Fl_Window_Driver.H
-Fl_Message.o: ../config.h
-Fl_Message.o: ../FL/Enumerations.H
-Fl_Message.o: ../FL/Fl.H
-Fl_Message.o: ../FL/fl_ask.H
-Fl_Message.o: ../FL/fl_attr.h
-Fl_Message.o: ../FL/Fl_Bitmap.H
-Fl_Message.o: ../FL/Fl_Box.H
-Fl_Message.o: ../FL/Fl_Button.H
-Fl_Message.o: ../FL/Fl_Cairo.H
-Fl_Message.o: ../FL/fl_casts.H
-Fl_Message.o: ../FL/fl_config.h
-Fl_Message.o: ../FL/fl_draw.H
-Fl_Message.o: ../FL/Fl_Export.H
-Fl_Message.o: ../FL/Fl_Group.H
-Fl_Message.o: ../FL/Fl_Image.H
-Fl_Message.o: ../FL/Fl_Input.H
-Fl_Message.o: ../FL/Fl_Input_.H
-Fl_Message.o: ../FL/Fl_Return_Button.H
-Fl_Message.o: ../FL/Fl_Secret_Input.H
-Fl_Message.o: ../FL/fl_string_functions.h
-Fl_Message.o: ../FL/fl_types.h
-Fl_Message.o: ../FL/fl_utf8.h
-Fl_Message.o: ../FL/Fl_Widget.H
-Fl_Message.o: ../FL/Fl_Window.H
-Fl_Message.o: ../FL/platform_types.h
-Fl_Message.o: flstring.h
-Fl_Message.o: Fl_Message.h
-Fl_Multi_Label.o: ../FL/Enumerations.H
-Fl_Multi_Label.o: ../FL/Fl.H
-Fl_Multi_Label.o: ../FL/fl_attr.h
-Fl_Multi_Label.o: ../FL/Fl_Cairo.H
-Fl_Multi_Label.o: ../FL/fl_casts.H
-Fl_Multi_Label.o: ../FL/fl_config.h
-Fl_Multi_Label.o: ../FL/Fl_Export.H
-Fl_Multi_Label.o: ../FL/Fl_Image.H
-Fl_Multi_Label.o: ../FL/Fl_Menu_Item.H
-Fl_Multi_Label.o: ../FL/Fl_Multi_Label.H
-Fl_Multi_Label.o: ../FL/fl_types.h
-Fl_Multi_Label.o: ../FL/fl_utf8.h
-Fl_Multi_Label.o: ../FL/Fl_Widget.H
-Fl_Multi_Label.o: ../FL/platform_types.h
-Fl_Native_File_Chooser.o: ../FL/Enumerations.H
-Fl_Native_File_Chooser.o: ../FL/filename.H
-Fl_Native_File_Chooser.o: ../FL/Fl.H
-Fl_Native_File_Chooser.o: ../FL/fl_ask.H
-Fl_Native_File_Chooser.o: ../FL/fl_attr.h
-Fl_Native_File_Chooser.o: ../FL/Fl_Box.H
-Fl_Native_File_Chooser.o: ../FL/Fl_Browser.H
-Fl_Native_File_Chooser.o: ../FL/Fl_Button.H
-Fl_Native_File_Chooser.o: ../FL/Fl_Cairo.H
-Fl_Native_File_Chooser.o: ../FL/fl_casts.H
-Fl_Native_File_Chooser.o: ../FL/Fl_Check_Button.H
-Fl_Native_File_Chooser.o: ../FL/Fl_Choice.H
-Fl_Native_File_Chooser.o: ../FL/fl_config.h
-Fl_Native_File_Chooser.o: ../FL/Fl_Double_Window.H
-Fl_Native_File_Chooser.o: ../FL/Fl_Export.H
-Fl_Native_File_Chooser.o: ../FL/Fl_File_Browser.H
-Fl_Native_File_Chooser.o: ../FL/Fl_File_Chooser.H
-Fl_Native_File_Chooser.o: ../FL/Fl_File_Icon.H
-Fl_Native_File_Chooser.o: ../FL/Fl_File_Input.H
-Fl_Native_File_Chooser.o: ../FL/Fl_Group.H
-Fl_Native_File_Chooser.o: ../FL/Fl_Image.H
-Fl_Native_File_Chooser.o: ../FL/Fl_Input.H
-Fl_Native_File_Chooser.o: ../FL/Fl_Input_.H
-Fl_Native_File_Chooser.o: ../FL/Fl_Light_Button.H
-Fl_Native_File_Chooser.o: ../FL/Fl_Menu_.H
-Fl_Native_File_Chooser.o: ../FL/Fl_Menu_Button.H
-Fl_Native_File_Chooser.o: ../FL/Fl_Menu_Item.H
-Fl_Native_File_Chooser.o: ../FL/Fl_Multi_Label.H
-Fl_Native_File_Chooser.o: ../FL/Fl_Native_File_Chooser.H
-Fl_Native_File_Chooser.o: ../FL/Fl_Preferences.H
-Fl_Native_File_Chooser.o: ../FL/Fl_Return_Button.H
-Fl_Native_File_Chooser.o: ../FL/Fl_Tile.H
-Fl_Native_File_Chooser.o: ../FL/fl_types.h
-Fl_Native_File_Chooser.o: ../FL/fl_utf8.h
-Fl_Native_File_Chooser.o: ../FL/Fl_Widget.H
-Fl_Native_File_Chooser.o: ../FL/Fl_Window.H
-Fl_Native_File_Chooser.o: ../FL/platform_types.h
-Fl_Native_File_Chooser_FLTK.o: ../FL/Enumerations.H
-Fl_Native_File_Chooser_FLTK.o: ../FL/filename.H
-Fl_Native_File_Chooser_FLTK.o: ../FL/Fl.H
-Fl_Native_File_Chooser_FLTK.o: ../FL/fl_ask.H
-Fl_Native_File_Chooser_FLTK.o: ../FL/fl_attr.h
-Fl_Native_File_Chooser_FLTK.o: ../FL/Fl_Box.H
-Fl_Native_File_Chooser_FLTK.o: ../FL/Fl_Browser.H
-Fl_Native_File_Chooser_FLTK.o: ../FL/Fl_Button.H
-Fl_Native_File_Chooser_FLTK.o: ../FL/Fl_Cairo.H
-Fl_Native_File_Chooser_FLTK.o: ../FL/fl_casts.H
-Fl_Native_File_Chooser_FLTK.o: ../FL/Fl_Check_Button.H
-Fl_Native_File_Chooser_FLTK.o: ../FL/Fl_Choice.H
-Fl_Native_File_Chooser_FLTK.o: ../FL/fl_config.h
-Fl_Native_File_Chooser_FLTK.o: ../FL/Fl_Double_Window.H
-Fl_Native_File_Chooser_FLTK.o: ../FL/Fl_Export.H
-Fl_Native_File_Chooser_FLTK.o: ../FL/Fl_File_Browser.H
-Fl_Native_File_Chooser_FLTK.o: ../FL/Fl_File_Chooser.H
-Fl_Native_File_Chooser_FLTK.o: ../FL/Fl_File_Icon.H
-Fl_Native_File_Chooser_FLTK.o: ../FL/Fl_File_Input.H
-Fl_Native_File_Chooser_FLTK.o: ../FL/Fl_Group.H
-Fl_Native_File_Chooser_FLTK.o: ../FL/Fl_Image.H
-Fl_Native_File_Chooser_FLTK.o: ../FL/Fl_Input.H
-Fl_Native_File_Chooser_FLTK.o: ../FL/Fl_Input_.H
-Fl_Native_File_Chooser_FLTK.o: ../FL/Fl_Light_Button.H
-Fl_Native_File_Chooser_FLTK.o: ../FL/Fl_Menu_.H
-Fl_Native_File_Chooser_FLTK.o: ../FL/Fl_Menu_Button.H
-Fl_Native_File_Chooser_FLTK.o: ../FL/Fl_Menu_Item.H
-Fl_Native_File_Chooser_FLTK.o: ../FL/Fl_Multi_Label.H
-Fl_Native_File_Chooser_FLTK.o: ../FL/Fl_Native_File_Chooser.H
-Fl_Native_File_Chooser_FLTK.o: ../FL/Fl_Preferences.H
-Fl_Native_File_Chooser_FLTK.o: ../FL/Fl_Return_Button.H
-Fl_Native_File_Chooser_FLTK.o: ../FL/Fl_Tile.H
-Fl_Native_File_Chooser_FLTK.o: ../FL/fl_types.h
-Fl_Native_File_Chooser_FLTK.o: ../FL/fl_utf8.h
-Fl_Native_File_Chooser_FLTK.o: ../FL/Fl_Widget.H
-Fl_Native_File_Chooser_FLTK.o: ../FL/Fl_Window.H
-Fl_Native_File_Chooser_FLTK.o: ../FL/platform_types.h
-Fl_Native_File_Chooser_GTK.o: ../config.h
-Fl_Native_File_Chooser_GTK.o: ../FL/Enumerations.H
-Fl_Native_File_Chooser_GTK.o: ../FL/filename.H
-Fl_Native_File_Chooser_GTK.o: ../FL/Fl.H
-Fl_Native_File_Chooser_GTK.o: ../FL/fl_ask.H
-Fl_Native_File_Chooser_GTK.o: ../FL/fl_attr.h
-Fl_Native_File_Chooser_GTK.o: ../FL/Fl_Bitmap.H
-Fl_Native_File_Chooser_GTK.o: ../FL/Fl_Box.H
-Fl_Native_File_Chooser_GTK.o: ../FL/Fl_Browser.H
-Fl_Native_File_Chooser_GTK.o: ../FL/Fl_Button.H
-Fl_Native_File_Chooser_GTK.o: ../FL/Fl_Cairo.H
-Fl_Native_File_Chooser_GTK.o: ../FL/fl_casts.H
-Fl_Native_File_Chooser_GTK.o: ../FL/Fl_Check_Button.H
-Fl_Native_File_Chooser_GTK.o: ../FL/Fl_Choice.H
-Fl_Native_File_Chooser_GTK.o: ../FL/fl_config.h
-Fl_Native_File_Chooser_GTK.o: ../FL/Fl_Device.H
-Fl_Native_File_Chooser_GTK.o: ../FL/Fl_Double_Window.H
-Fl_Native_File_Chooser_GTK.o: ../FL/fl_draw.H
-Fl_Native_File_Chooser_GTK.o: ../FL/Fl_Export.H
-Fl_Native_File_Chooser_GTK.o: ../FL/Fl_File_Browser.H
-Fl_Native_File_Chooser_GTK.o: ../FL/Fl_File_Chooser.H
-Fl_Native_File_Chooser_GTK.o: ../FL/Fl_File_Icon.H
-Fl_Native_File_Chooser_GTK.o: ../FL/Fl_File_Input.H
-Fl_Native_File_Chooser_GTK.o: ../FL/Fl_Graphics_Driver.H
-Fl_Native_File_Chooser_GTK.o: ../FL/Fl_Group.H
-Fl_Native_File_Chooser_GTK.o: ../FL/Fl_Image.H
-Fl_Native_File_Chooser_GTK.o: ../FL/Fl_Image_Surface.H
-Fl_Native_File_Chooser_GTK.o: ../FL/Fl_Input.H
-Fl_Native_File_Chooser_GTK.o: ../FL/Fl_Input_.H
-Fl_Native_File_Chooser_GTK.o: ../FL/Fl_Light_Button.H
-Fl_Native_File_Chooser_GTK.o: ../FL/Fl_Menu_.H
-Fl_Native_File_Chooser_GTK.o: ../FL/Fl_Menu_Button.H
-Fl_Native_File_Chooser_GTK.o: ../FL/Fl_Menu_Item.H
-Fl_Native_File_Chooser_GTK.o: ../FL/Fl_Multi_Label.H
-Fl_Native_File_Chooser_GTK.o: ../FL/Fl_Native_File_Chooser.H
-Fl_Native_File_Chooser_GTK.o: ../FL/Fl_Overlay_Window.H
-Fl_Native_File_Chooser_GTK.o: ../FL/Fl_Pixmap.H
-Fl_Native_File_Chooser_GTK.o: ../FL/Fl_Plugin.H
-Fl_Native_File_Chooser_GTK.o: ../FL/Fl_Preferences.H
-Fl_Native_File_Chooser_GTK.o: ../FL/Fl_Rect.H
-Fl_Native_File_Chooser_GTK.o: ../FL/Fl_Return_Button.H
-Fl_Native_File_Chooser_GTK.o: ../FL/Fl_RGB_Image.H
-Fl_Native_File_Chooser_GTK.o: ../FL/Fl_Scrollbar.H
-Fl_Native_File_Chooser_GTK.o: ../FL/Fl_Shared_Image.H
-Fl_Native_File_Chooser_GTK.o: ../FL/Fl_Slider.H
-Fl_Native_File_Chooser_GTK.o: ../FL/fl_string_functions.h
-Fl_Native_File_Chooser_GTK.o: ../FL/Fl_Text_Buffer.H
-Fl_Native_File_Chooser_GTK.o: ../FL/Fl_Text_Display.H
-Fl_Native_File_Chooser_GTK.o: ../FL/Fl_Text_Editor.H
-Fl_Native_File_Chooser_GTK.o: ../FL/Fl_Tile.H
-Fl_Native_File_Chooser_GTK.o: ../FL/fl_types.h
-Fl_Native_File_Chooser_GTK.o: ../FL/fl_utf8.h
-Fl_Native_File_Chooser_GTK.o: ../FL/Fl_Valuator.H
-Fl_Native_File_Chooser_GTK.o: ../FL/Fl_Widget.H
-Fl_Native_File_Chooser_GTK.o: ../FL/Fl_Widget_Surface.H
-Fl_Native_File_Chooser_GTK.o: ../FL/Fl_Window.H
-Fl_Native_File_Chooser_GTK.o: ../FL/platform.H
-Fl_Native_File_Chooser_GTK.o: ../FL/platform_types.h
-Fl_Native_File_Chooser_GTK.o: ../FL/x11.H
-Fl_Native_File_Chooser_GTK.o: drivers/Posix/Fl_Posix_System_Driver.H
-Fl_Native_File_Chooser_GTK.o: drivers/Unix/Fl_Unix_Screen_Driver.H
-Fl_Native_File_Chooser_GTK.o: Fl_Native_File_Chooser_Kdialog.H
-Fl_Native_File_Chooser_GTK.o: Fl_Native_File_Chooser_Zenity.H
-Fl_Native_File_Chooser_GTK.o: Fl_Screen_Driver.H
-Fl_Native_File_Chooser_GTK.o: Fl_String.H
-Fl_Native_File_Chooser_GTK.o: Fl_System_Driver.H
-Fl_Native_File_Chooser_GTK.o: Fl_Window_Driver.H
-Fl_Native_File_Chooser_Kdialog.o: ../config.h
-Fl_Native_File_Chooser_Kdialog.o: ../FL/Enumerations.H
-Fl_Native_File_Chooser_Kdialog.o: ../FL/filename.H
-Fl_Native_File_Chooser_Kdialog.o: ../FL/Fl.H
-Fl_Native_File_Chooser_Kdialog.o: ../FL/fl_ask.H
-Fl_Native_File_Chooser_Kdialog.o: ../FL/fl_attr.h
-Fl_Native_File_Chooser_Kdialog.o: ../FL/Fl_Bitmap.H
-Fl_Native_File_Chooser_Kdialog.o: ../FL/Fl_Box.H
-Fl_Native_File_Chooser_Kdialog.o: ../FL/Fl_Browser.H
-Fl_Native_File_Chooser_Kdialog.o: ../FL/Fl_Button.H
-Fl_Native_File_Chooser_Kdialog.o: ../FL/Fl_Cairo.H
-Fl_Native_File_Chooser_Kdialog.o: ../FL/fl_casts.H
-Fl_Native_File_Chooser_Kdialog.o: ../FL/Fl_Check_Button.H
-Fl_Native_File_Chooser_Kdialog.o: ../FL/Fl_Choice.H
-Fl_Native_File_Chooser_Kdialog.o: ../FL/fl_config.h
-Fl_Native_File_Chooser_Kdialog.o: ../FL/Fl_Device.H
-Fl_Native_File_Chooser_Kdialog.o: ../FL/Fl_Double_Window.H
-Fl_Native_File_Chooser_Kdialog.o: ../FL/fl_draw.H
-Fl_Native_File_Chooser_Kdialog.o: ../FL/Fl_Export.H
-Fl_Native_File_Chooser_Kdialog.o: ../FL/Fl_File_Browser.H
-Fl_Native_File_Chooser_Kdialog.o: ../FL/Fl_File_Chooser.H
-Fl_Native_File_Chooser_Kdialog.o: ../FL/Fl_File_Icon.H
-Fl_Native_File_Chooser_Kdialog.o: ../FL/Fl_File_Input.H
-Fl_Native_File_Chooser_Kdialog.o: ../FL/Fl_Graphics_Driver.H
-Fl_Native_File_Chooser_Kdialog.o: ../FL/Fl_Group.H
-Fl_Native_File_Chooser_Kdialog.o: ../FL/Fl_Image.H
-Fl_Native_File_Chooser_Kdialog.o: ../FL/Fl_Input.H
-Fl_Native_File_Chooser_Kdialog.o: ../FL/Fl_Input_.H
-Fl_Native_File_Chooser_Kdialog.o: ../FL/Fl_Light_Button.H
-Fl_Native_File_Chooser_Kdialog.o: ../FL/Fl_Menu_.H
-Fl_Native_File_Chooser_Kdialog.o: ../FL/Fl_Menu_Button.H
-Fl_Native_File_Chooser_Kdialog.o: ../FL/Fl_Menu_Item.H
-Fl_Native_File_Chooser_Kdialog.o: ../FL/Fl_Multi_Label.H
-Fl_Native_File_Chooser_Kdialog.o: ../FL/Fl_Native_File_Chooser.H
-Fl_Native_File_Chooser_Kdialog.o: ../FL/Fl_Overlay_Window.H
-Fl_Native_File_Chooser_Kdialog.o: ../FL/Fl_Pixmap.H
-Fl_Native_File_Chooser_Kdialog.o: ../FL/Fl_Plugin.H
-Fl_Native_File_Chooser_Kdialog.o: ../FL/Fl_Preferences.H
-Fl_Native_File_Chooser_Kdialog.o: ../FL/Fl_Rect.H
-Fl_Native_File_Chooser_Kdialog.o: ../FL/Fl_Return_Button.H
-Fl_Native_File_Chooser_Kdialog.o: ../FL/Fl_RGB_Image.H
-Fl_Native_File_Chooser_Kdialog.o: ../FL/Fl_Scrollbar.H
-Fl_Native_File_Chooser_Kdialog.o: ../FL/Fl_Slider.H
-Fl_Native_File_Chooser_Kdialog.o: ../FL/Fl_Text_Buffer.H
-Fl_Native_File_Chooser_Kdialog.o: ../FL/Fl_Text_Display.H
-Fl_Native_File_Chooser_Kdialog.o: ../FL/Fl_Text_Editor.H
-Fl_Native_File_Chooser_Kdialog.o: ../FL/Fl_Tile.H
-Fl_Native_File_Chooser_Kdialog.o: ../FL/fl_types.h
-Fl_Native_File_Chooser_Kdialog.o: ../FL/fl_utf8.h
-Fl_Native_File_Chooser_Kdialog.o: ../FL/Fl_Valuator.H
-Fl_Native_File_Chooser_Kdialog.o: ../FL/Fl_Widget.H
-Fl_Native_File_Chooser_Kdialog.o: ../FL/Fl_Window.H
-Fl_Native_File_Chooser_Kdialog.o: ../FL/platform_types.h
-Fl_Native_File_Chooser_Kdialog.o: drivers/Unix/Fl_Unix_Screen_Driver.H
-Fl_Native_File_Chooser_Kdialog.o: Fl_Native_File_Chooser_Kdialog.H
-Fl_Native_File_Chooser_Kdialog.o: Fl_Screen_Driver.H
-Fl_Native_File_Chooser_Kdialog.o: Fl_String.H
-Fl_Native_File_Chooser_Kdialog.o: Fl_System_Driver.H
-Fl_Native_File_Chooser_Kdialog.o: Fl_Window_Driver.H
-Fl_Native_File_Chooser_Zenity.o: ../config.h
-Fl_Native_File_Chooser_Zenity.o: ../FL/Enumerations.H
-Fl_Native_File_Chooser_Zenity.o: ../FL/filename.H
-Fl_Native_File_Chooser_Zenity.o: ../FL/Fl.H
-Fl_Native_File_Chooser_Zenity.o: ../FL/fl_ask.H
-Fl_Native_File_Chooser_Zenity.o: ../FL/fl_attr.h
-Fl_Native_File_Chooser_Zenity.o: ../FL/Fl_Box.H
-Fl_Native_File_Chooser_Zenity.o: ../FL/Fl_Browser.H
-Fl_Native_File_Chooser_Zenity.o: ../FL/Fl_Button.H
-Fl_Native_File_Chooser_Zenity.o: ../FL/Fl_Cairo.H
-Fl_Native_File_Chooser_Zenity.o: ../FL/fl_casts.H
-Fl_Native_File_Chooser_Zenity.o: ../FL/Fl_Check_Button.H
-Fl_Native_File_Chooser_Zenity.o: ../FL/Fl_Choice.H
-Fl_Native_File_Chooser_Zenity.o: ../FL/fl_config.h
-Fl_Native_File_Chooser_Zenity.o: ../FL/Fl_Double_Window.H
-Fl_Native_File_Chooser_Zenity.o: ../FL/Fl_Export.H
-Fl_Native_File_Chooser_Zenity.o: ../FL/Fl_File_Browser.H
-Fl_Native_File_Chooser_Zenity.o: ../FL/Fl_File_Chooser.H
-Fl_Native_File_Chooser_Zenity.o: ../FL/Fl_File_Icon.H
-Fl_Native_File_Chooser_Zenity.o: ../FL/Fl_File_Input.H
-Fl_Native_File_Chooser_Zenity.o: ../FL/Fl_Group.H
-Fl_Native_File_Chooser_Zenity.o: ../FL/Fl_Image.H
-Fl_Native_File_Chooser_Zenity.o: ../FL/Fl_Input.H
-Fl_Native_File_Chooser_Zenity.o: ../FL/Fl_Input_.H
-Fl_Native_File_Chooser_Zenity.o: ../FL/Fl_Light_Button.H
-Fl_Native_File_Chooser_Zenity.o: ../FL/Fl_Menu_.H
-Fl_Native_File_Chooser_Zenity.o: ../FL/Fl_Menu_Button.H
-Fl_Native_File_Chooser_Zenity.o: ../FL/Fl_Menu_Item.H
-Fl_Native_File_Chooser_Zenity.o: ../FL/Fl_Multi_Label.H
-Fl_Native_File_Chooser_Zenity.o: ../FL/Fl_Native_File_Chooser.H
-Fl_Native_File_Chooser_Zenity.o: ../FL/Fl_Preferences.H
-Fl_Native_File_Chooser_Zenity.o: ../FL/Fl_Return_Button.H
-Fl_Native_File_Chooser_Zenity.o: ../FL/Fl_Tile.H
-Fl_Native_File_Chooser_Zenity.o: ../FL/fl_types.h
-Fl_Native_File_Chooser_Zenity.o: ../FL/fl_utf8.h
-Fl_Native_File_Chooser_Zenity.o: ../FL/Fl_Widget.H
-Fl_Native_File_Chooser_Zenity.o: ../FL/Fl_Window.H
-Fl_Native_File_Chooser_Zenity.o: ../FL/platform_types.h
-Fl_Native_File_Chooser_Zenity.o: Fl_Native_File_Chooser_Kdialog.H
-Fl_Native_File_Chooser_Zenity.o: Fl_Native_File_Chooser_Zenity.H
-Fl_Native_File_Chooser_Zenity.o: Fl_String.H
-fl_open_uri.o: ../config.h
-fl_open_uri.o: ../FL/Enumerations.H
-fl_open_uri.o: ../FL/filename.H
-fl_open_uri.o: ../FL/Fl.H
-fl_open_uri.o: ../FL/fl_attr.h
-fl_open_uri.o: ../FL/Fl_Cairo.H
-fl_open_uri.o: ../FL/fl_casts.H
-fl_open_uri.o: ../FL/fl_config.h
-fl_open_uri.o: ../FL/Fl_Export.H
-fl_open_uri.o: ../FL/Fl_Preferences.H
-fl_open_uri.o: ../FL/fl_string_functions.h
-fl_open_uri.o: ../FL/fl_types.h
-fl_open_uri.o: ../FL/fl_utf8.h
-fl_open_uri.o: ../FL/platform_types.h
-fl_open_uri.o: flstring.h
-fl_open_uri.o: Fl_System_Driver.H
-fl_oval_box.o: ../FL/Enumerations.H
-fl_oval_box.o: ../FL/Fl.H
-fl_oval_box.o: ../FL/fl_attr.h
-fl_oval_box.o: ../FL/Fl_Cairo.H
-fl_oval_box.o: ../FL/fl_casts.H
-fl_oval_box.o: ../FL/fl_config.h
-fl_oval_box.o: ../FL/fl_draw.H
-fl_oval_box.o: ../FL/Fl_Export.H
-fl_oval_box.o: ../FL/fl_types.h
-fl_oval_box.o: ../FL/fl_utf8.h
-fl_oval_box.o: ../FL/platform_types.h
-fl_overlay.o: ../FL/Enumerations.H
-fl_overlay.o: ../FL/Fl.H
-fl_overlay.o: ../FL/fl_attr.h
-fl_overlay.o: ../FL/Fl_Bitmap.H
-fl_overlay.o: ../FL/Fl_Cairo.H
-fl_overlay.o: ../FL/fl_casts.H
-fl_overlay.o: ../FL/fl_config.h
-fl_overlay.o: ../FL/Fl_Device.H
-fl_overlay.o: ../FL/fl_draw.H
-fl_overlay.o: ../FL/Fl_Export.H
-fl_overlay.o: ../FL/Fl_Graphics_Driver.H
-fl_overlay.o: ../FL/Fl_Group.H
-fl_overlay.o: ../FL/Fl_Image.H
-fl_overlay.o: ../FL/Fl_Pixmap.H
-fl_overlay.o: ../FL/Fl_Plugin.H
-fl_overlay.o: ../FL/Fl_Preferences.H
-fl_overlay.o: ../FL/Fl_Rect.H
-fl_overlay.o: ../FL/Fl_RGB_Image.H
-fl_overlay.o: ../FL/Fl_Scrollbar.H
-fl_overlay.o: ../FL/Fl_Slider.H
-fl_overlay.o: ../FL/Fl_Text_Buffer.H
-fl_overlay.o: ../FL/Fl_Text_Display.H
-fl_overlay.o: ../FL/Fl_Text_Editor.H
-fl_overlay.o: ../FL/fl_types.h
-fl_overlay.o: ../FL/fl_utf8.h
-fl_overlay.o: ../FL/Fl_Valuator.H
-fl_overlay.o: ../FL/Fl_Widget.H
-fl_overlay.o: ../FL/platform.H
-fl_overlay.o: ../FL/platform_types.h
-fl_overlay.o: ../FL/x11.H
-fl_overlay.o: Fl_Screen_Driver.H
-Fl_Overlay_Window.o: ../FL/Enumerations.H
-Fl_Overlay_Window.o: ../FL/Fl.H
-Fl_Overlay_Window.o: ../FL/fl_attr.h
-Fl_Overlay_Window.o: ../FL/Fl_Bitmap.H
-Fl_Overlay_Window.o: ../FL/Fl_Cairo.H
-Fl_Overlay_Window.o: ../FL/fl_casts.H
-Fl_Overlay_Window.o: ../FL/fl_config.h
-Fl_Overlay_Window.o: ../FL/Fl_Double_Window.H
-Fl_Overlay_Window.o: ../FL/Fl_Export.H
-Fl_Overlay_Window.o: ../FL/Fl_Group.H
-Fl_Overlay_Window.o: ../FL/Fl_Image.H
-Fl_Overlay_Window.o: ../FL/Fl_Overlay_Window.H
-Fl_Overlay_Window.o: ../FL/fl_types.h
-Fl_Overlay_Window.o: ../FL/fl_utf8.h
-Fl_Overlay_Window.o: ../FL/Fl_Widget.H
-Fl_Overlay_Window.o: ../FL/Fl_Window.H
-Fl_Overlay_Window.o: ../FL/platform_types.h
-Fl_Overlay_Window.o: Fl_Window_Driver.H
-Fl_own_colormap.o: ../FL/Enumerations.H
-Fl_own_colormap.o: ../FL/Fl.H
-Fl_own_colormap.o: ../FL/fl_attr.h
-Fl_own_colormap.o: ../FL/Fl_Bitmap.H
-Fl_own_colormap.o: ../FL/Fl_Cairo.H
-Fl_own_colormap.o: ../FL/fl_casts.H
-Fl_own_colormap.o: ../FL/fl_config.h
-Fl_own_colormap.o: ../FL/Fl_Device.H
-Fl_own_colormap.o: ../FL/fl_draw.H
-Fl_own_colormap.o: ../FL/Fl_Export.H
-Fl_own_colormap.o: ../FL/Fl_Graphics_Driver.H
-Fl_own_colormap.o: ../FL/Fl_Group.H
-Fl_own_colormap.o: ../FL/Fl_Image.H
-Fl_own_colormap.o: ../FL/Fl_Pixmap.H
-Fl_own_colormap.o: ../FL/Fl_Plugin.H
-Fl_own_colormap.o: ../FL/Fl_Preferences.H
-Fl_own_colormap.o: ../FL/Fl_Rect.H
-Fl_own_colormap.o: ../FL/Fl_RGB_Image.H
-Fl_own_colormap.o: ../FL/Fl_Scrollbar.H
-Fl_own_colormap.o: ../FL/Fl_Slider.H
-Fl_own_colormap.o: ../FL/Fl_Text_Buffer.H
-Fl_own_colormap.o: ../FL/Fl_Text_Display.H
-Fl_own_colormap.o: ../FL/Fl_Text_Editor.H
-Fl_own_colormap.o: ../FL/fl_types.h
-Fl_own_colormap.o: ../FL/fl_utf8.h
-Fl_own_colormap.o: ../FL/Fl_Valuator.H
-Fl_own_colormap.o: ../FL/Fl_Widget.H
-Fl_own_colormap.o: ../FL/platform_types.h
-Fl_own_colormap.o: Fl_Screen_Driver.H
-fl_oxy.o: ../FL/Enumerations.H
-fl_oxy.o: ../FL/Fl.H
-fl_oxy.o: ../FL/fl_attr.h
-fl_oxy.o: ../FL/Fl_Cairo.H
-fl_oxy.o: ../FL/fl_casts.H
-fl_oxy.o: ../FL/fl_config.h
-fl_oxy.o: ../FL/fl_draw.H
-fl_oxy.o: ../FL/Fl_Export.H
-fl_oxy.o: ../FL/Fl_Rect.H
-fl_oxy.o: ../FL/fl_types.h
-fl_oxy.o: ../FL/fl_utf8.h
-fl_oxy.o: ../FL/Fl_Widget.H
-fl_oxy.o: ../FL/platform_types.h
-fl_oxy.o: fl_oxy.h
-Fl_Pack.o: ../FL/Enumerations.H
-Fl_Pack.o: ../FL/Fl.H
-Fl_Pack.o: ../FL/fl_attr.h
-Fl_Pack.o: ../FL/Fl_Cairo.H
-Fl_Pack.o: ../FL/fl_casts.H
-Fl_Pack.o: ../FL/fl_config.h
-Fl_Pack.o: ../FL/fl_draw.H
-Fl_Pack.o: ../FL/Fl_Export.H
-Fl_Pack.o: ../FL/Fl_Group.H
-Fl_Pack.o: ../FL/Fl_Pack.H
-Fl_Pack.o: ../FL/fl_types.h
-Fl_Pack.o: ../FL/fl_utf8.h
-Fl_Pack.o: ../FL/platform_types.h
-Fl_Paged_Device.o: ../FL/Enumerations.H
-Fl_Paged_Device.o: ../FL/Fl.H
-Fl_Paged_Device.o: ../FL/fl_attr.h
-Fl_Paged_Device.o: ../FL/Fl_Bitmap.H
-Fl_Paged_Device.o: ../FL/Fl_Cairo.H
-Fl_Paged_Device.o: ../FL/fl_casts.H
-Fl_Paged_Device.o: ../FL/fl_config.h
-Fl_Paged_Device.o: ../FL/Fl_Device.H
-Fl_Paged_Device.o: ../FL/fl_draw.H
-Fl_Paged_Device.o: ../FL/Fl_Export.H
-Fl_Paged_Device.o: ../FL/Fl_Group.H
-Fl_Paged_Device.o: ../FL/Fl_Image.H
-Fl_Paged_Device.o: ../FL/Fl_Paged_Device.H
-Fl_Paged_Device.o: ../FL/Fl_Plugin.H
-Fl_Paged_Device.o: ../FL/Fl_Preferences.H
-Fl_Paged_Device.o: ../FL/fl_types.h
-Fl_Paged_Device.o: ../FL/fl_utf8.h
-Fl_Paged_Device.o: ../FL/Fl_Widget.H
-Fl_Paged_Device.o: ../FL/Fl_Widget_Surface.H
-Fl_Paged_Device.o: ../FL/Fl_Window.H
-Fl_Paged_Device.o: ../FL/platform_types.h
-Fl_Pixmap.o: ../config.h
-Fl_Pixmap.o: ../FL/Enumerations.H
-Fl_Pixmap.o: ../FL/Fl.H
-Fl_Pixmap.o: ../FL/fl_attr.h
-Fl_Pixmap.o: ../FL/Fl_Cairo.H
-Fl_Pixmap.o: ../FL/fl_casts.H
-Fl_Pixmap.o: ../FL/fl_config.h
-Fl_Pixmap.o: ../FL/fl_draw.H
-Fl_Pixmap.o: ../FL/Fl_Export.H
-Fl_Pixmap.o: ../FL/Fl_Image.H
-Fl_Pixmap.o: ../FL/Fl_Menu_Item.H
-Fl_Pixmap.o: ../FL/Fl_Multi_Label.H
-Fl_Pixmap.o: ../FL/Fl_Pixmap.H
-Fl_Pixmap.o: ../FL/fl_string_functions.h
-Fl_Pixmap.o: ../FL/fl_types.h
-Fl_Pixmap.o: ../FL/fl_utf8.h
-Fl_Pixmap.o: ../FL/Fl_Widget.H
-Fl_Pixmap.o: ../FL/platform.H
-Fl_Pixmap.o: ../FL/platform_types.h
-Fl_Pixmap.o: ../FL/x11.H
-Fl_Pixmap.o: flstring.h
-fl_plastic.o: ../config.h
-fl_plastic.o: ../FL/Enumerations.H
-fl_plastic.o: ../FL/Fl.H
-fl_plastic.o: ../FL/fl_attr.h
-fl_plastic.o: ../FL/Fl_Cairo.H
-fl_plastic.o: ../FL/fl_casts.H
-fl_plastic.o: ../FL/fl_config.h
-fl_plastic.o: ../FL/fl_draw.H
-fl_plastic.o: ../FL/Fl_Export.H
-fl_plastic.o: ../FL/fl_string_functions.h
-fl_plastic.o: ../FL/fl_types.h
-fl_plastic.o: ../FL/fl_utf8.h
-fl_plastic.o: ../FL/platform_types.h
-fl_plastic.o: flstring.h
-Fl_PNG_Image.o: ../config.h
-Fl_PNG_Image.o: ../FL/Enumerations.H
-Fl_PNG_Image.o: ../FL/filename.H
-Fl_PNG_Image.o: ../FL/Fl.H
-Fl_PNG_Image.o: ../FL/fl_attr.h
-Fl_PNG_Image.o: ../FL/Fl_Cairo.H
-Fl_PNG_Image.o: ../FL/fl_casts.H
-Fl_PNG_Image.o: ../FL/fl_config.h
-Fl_PNG_Image.o: ../FL/Fl_Export.H
-Fl_PNG_Image.o: ../FL/Fl_Image.H
-Fl_PNG_Image.o: ../FL/Fl_PNG_Image.H
-Fl_PNG_Image.o: ../FL/Fl_Preferences.H
-Fl_PNG_Image.o: ../FL/Fl_Shared_Image.H
-Fl_PNG_Image.o: ../FL/fl_types.h
-Fl_PNG_Image.o: ../FL/fl_utf8.h
-Fl_PNG_Image.o: ../FL/platform_types.h
-Fl_PNG_Image.o: Fl_System_Driver.H
-Fl_PNM_Image.o: ../config.h
-Fl_PNM_Image.o: ../FL/Enumerations.H
-Fl_PNM_Image.o: ../FL/Fl.H
-Fl_PNM_Image.o: ../FL/fl_attr.h
-Fl_PNM_Image.o: ../FL/Fl_Cairo.H
-Fl_PNM_Image.o: ../FL/fl_casts.H
-Fl_PNM_Image.o: ../FL/fl_config.h
-Fl_PNM_Image.o: ../FL/Fl_Export.H
-Fl_PNM_Image.o: ../FL/Fl_Image.H
-Fl_PNM_Image.o: ../FL/Fl_PNM_Image.H
-Fl_PNM_Image.o: ../FL/fl_string_functions.h
-Fl_PNM_Image.o: ../FL/fl_types.h
-Fl_PNM_Image.o: ../FL/fl_utf8.h
-Fl_PNM_Image.o: ../FL/platform_types.h
-Fl_PNM_Image.o: flstring.h
-Fl_Positioner.o: ../FL/Enumerations.H
-Fl_Positioner.o: ../FL/Fl.H
-Fl_Positioner.o: ../FL/fl_attr.h
-Fl_Positioner.o: ../FL/Fl_Cairo.H
-Fl_Positioner.o: ../FL/fl_casts.H
-Fl_Positioner.o: ../FL/fl_config.h
-Fl_Positioner.o: ../FL/fl_draw.H
-Fl_Positioner.o: ../FL/Fl_Export.H
-Fl_Positioner.o: ../FL/Fl_Positioner.H
-Fl_Positioner.o: ../FL/fl_types.h
-Fl_Positioner.o: ../FL/fl_utf8.h
-Fl_Positioner.o: ../FL/Fl_Widget.H
-Fl_Positioner.o: ../FL/platform_types.h
-Fl_Preferences.o: ../config.h
-Fl_Preferences.o: ../FL/Enumerations.H
-Fl_Preferences.o: ../FL/filename.H
-Fl_Preferences.o: ../FL/Fl.H
-Fl_Preferences.o: ../FL/fl_attr.h
-Fl_Preferences.o: ../FL/Fl_Cairo.H
-Fl_Preferences.o: ../FL/fl_casts.H
-Fl_Preferences.o: ../FL/fl_config.h
-Fl_Preferences.o: ../FL/Fl_Export.H
-Fl_Preferences.o: ../FL/Fl_Plugin.H
-Fl_Preferences.o: ../FL/Fl_Preferences.H
-Fl_Preferences.o: ../FL/fl_string_functions.h
-Fl_Preferences.o: ../FL/fl_types.h
-Fl_Preferences.o: ../FL/fl_utf8.h
-Fl_Preferences.o: ../FL/platform_types.h
-Fl_Preferences.o: flstring.h
-Fl_Preferences.o: Fl_System_Driver.H
-Fl_Printer.o: ../config.h
-Fl_Printer.o: ../FL/Enumerations.H
-Fl_Printer.o: ../FL/Fl.H
-Fl_Printer.o: ../FL/fl_attr.h
-Fl_Printer.o: ../FL/Fl_Bitmap.H
-Fl_Printer.o: ../FL/Fl_Cairo.H
-Fl_Printer.o: ../FL/fl_casts.H
-Fl_Printer.o: ../FL/fl_config.h
-Fl_Printer.o: ../FL/Fl_Device.H
-Fl_Printer.o: ../FL/Fl_Export.H
-Fl_Printer.o: ../FL/Fl_Group.H
-Fl_Printer.o: ../FL/Fl_Image.H
-Fl_Printer.o: ../FL/Fl_Paged_Device.H
-Fl_Printer.o: ../FL/Fl_Plugin.H
-Fl_Printer.o: ../FL/Fl_Preferences.H
-Fl_Printer.o: ../FL/Fl_Printer.H
-Fl_Printer.o: ../FL/fl_types.h
-Fl_Printer.o: ../FL/fl_utf8.h
-Fl_Printer.o: ../FL/Fl_Widget.H
-Fl_Printer.o: ../FL/Fl_Widget_Surface.H
-Fl_Printer.o: ../FL/Fl_Window.H
-Fl_Printer.o: ../FL/platform_types.h
-Fl_Progress.o: ../FL/Enumerations.H
-Fl_Progress.o: ../FL/Fl.H
-Fl_Progress.o: ../FL/fl_attr.h
-Fl_Progress.o: ../FL/Fl_Cairo.H
-Fl_Progress.o: ../FL/fl_casts.H
-Fl_Progress.o: ../FL/fl_config.h
-Fl_Progress.o: ../FL/fl_draw.H
-Fl_Progress.o: ../FL/Fl_Export.H
-Fl_Progress.o: ../FL/Fl_Progress.H
-Fl_Progress.o: ../FL/fl_types.h
-Fl_Progress.o: ../FL/fl_utf8.h
-Fl_Progress.o: ../FL/Fl_Widget.H
-Fl_Progress.o: ../FL/platform_types.h
-fl_read_image.o: ../FL/Enumerations.H
-fl_read_image.o: ../FL/Fl.H
-fl_read_image.o: ../FL/fl_attr.h
-fl_read_image.o: ../FL/Fl_Bitmap.H
-fl_read_image.o: ../FL/Fl_Cairo.H
-fl_read_image.o: ../FL/fl_casts.H
-fl_read_image.o: ../FL/fl_config.h
-fl_read_image.o: ../FL/Fl_Device.H
-fl_read_image.o: ../FL/fl_draw.H
-fl_read_image.o: ../FL/Fl_Export.H
-fl_read_image.o: ../FL/Fl_Graphics_Driver.H
-fl_read_image.o: ../FL/Fl_Group.H
-fl_read_image.o: ../FL/Fl_Image.H
-fl_read_image.o: ../FL/Fl_Pixmap.H
-fl_read_image.o: ../FL/Fl_Plugin.H
-fl_read_image.o: ../FL/Fl_Preferences.H
-fl_read_image.o: ../FL/Fl_Rect.H
-fl_read_image.o: ../FL/Fl_RGB_Image.H
-fl_read_image.o: ../FL/Fl_Scrollbar.H
-fl_read_image.o: ../FL/Fl_Slider.H
-fl_read_image.o: ../FL/Fl_Text_Buffer.H
-fl_read_image.o: ../FL/Fl_Text_Display.H
-fl_read_image.o: ../FL/Fl_Text_Editor.H
-fl_read_image.o: ../FL/fl_types.h
-fl_read_image.o: ../FL/fl_utf8.h
-fl_read_image.o: ../FL/Fl_Valuator.H
-fl_read_image.o: ../FL/Fl_Widget.H
-fl_read_image.o: ../FL/platform.H
-fl_read_image.o: ../FL/platform_types.h
-fl_read_image.o: ../FL/x11.H
-fl_read_image.o: Fl_Screen_Driver.H
-fl_rect.o: ../FL/Enumerations.H
-fl_rect.o: ../FL/Fl.H
-fl_rect.o: ../FL/fl_attr.h
-fl_rect.o: ../FL/Fl_Bitmap.H
-fl_rect.o: ../FL/fl_config.h
-fl_rect.o: ../FL/Fl_Device.H
-fl_rect.o: ../FL/Fl_Export.H
-fl_rect.o: ../FL/Fl_Graphics_Driver.H
-fl_rect.o: ../FL/Fl_Image.H
-fl_rect.o: ../FL/Fl_Pixmap.H
-fl_rect.o: ../FL/Fl_Plugin.H
-fl_rect.o: ../FL/Fl_Preferences.H
-fl_rect.o: ../FL/Fl_RGB_Image.H
-fl_rect.o: ../FL/fl_types.h
-fl_rect.o: ../FL/Fl_Widget.H
-fl_rect.o: ../FL/platform.H
-fl_rect.o: ../FL/platform_types.h
-fl_rect.o: ../FL/x11.H
-Fl_Repeat_Button.o: ../FL/Enumerations.H
-Fl_Repeat_Button.o: ../FL/Fl.H
-Fl_Repeat_Button.o: ../FL/fl_attr.h
-Fl_Repeat_Button.o: ../FL/Fl_Button.H
-Fl_Repeat_Button.o: ../FL/Fl_Cairo.H
-Fl_Repeat_Button.o: ../FL/fl_casts.H
-Fl_Repeat_Button.o: ../FL/fl_config.h
-Fl_Repeat_Button.o: ../FL/Fl_Export.H
-Fl_Repeat_Button.o: ../FL/Fl_Repeat_Button.H
-Fl_Repeat_Button.o: ../FL/fl_types.h
-Fl_Repeat_Button.o: ../FL/fl_utf8.h
-Fl_Repeat_Button.o: ../FL/platform_types.h
-Fl_Return_Button.o: ../FL/Enumerations.H
-Fl_Return_Button.o: ../FL/Fl.H
-Fl_Return_Button.o: ../FL/fl_attr.h
-Fl_Return_Button.o: ../FL/Fl_Button.H
-Fl_Return_Button.o: ../FL/Fl_Cairo.H
-Fl_Return_Button.o: ../FL/fl_casts.H
-Fl_Return_Button.o: ../FL/fl_config.h
-Fl_Return_Button.o: ../FL/fl_draw.H
-Fl_Return_Button.o: ../FL/Fl_Export.H
-Fl_Return_Button.o: ../FL/Fl_Return_Button.H
-Fl_Return_Button.o: ../FL/fl_types.h
-Fl_Return_Button.o: ../FL/fl_utf8.h
-Fl_Return_Button.o: ../FL/platform_types.h
-Fl_Roller.o: ../FL/Enumerations.H
-Fl_Roller.o: ../FL/Fl.H
-Fl_Roller.o: ../FL/fl_attr.h
-Fl_Roller.o: ../FL/Fl_Cairo.H
-Fl_Roller.o: ../FL/fl_casts.H
-Fl_Roller.o: ../FL/fl_config.h
-Fl_Roller.o: ../FL/fl_draw.H
-Fl_Roller.o: ../FL/Fl_Export.H
-Fl_Roller.o: ../FL/Fl_Roller.H
-Fl_Roller.o: ../FL/fl_types.h
-Fl_Roller.o: ../FL/fl_utf8.h
-Fl_Roller.o: ../FL/Fl_Valuator.H
-Fl_Roller.o: ../FL/platform_types.h
-fl_rounded_box.o: ../FL/Enumerations.H
-fl_rounded_box.o: ../FL/Fl.H
-fl_rounded_box.o: ../FL/fl_attr.h
-fl_rounded_box.o: ../FL/Fl_Cairo.H
-fl_rounded_box.o: ../FL/fl_casts.H
-fl_rounded_box.o: ../FL/fl_config.h
-fl_rounded_box.o: ../FL/fl_draw.H
-fl_rounded_box.o: ../FL/Fl_Export.H
-fl_rounded_box.o: ../FL/fl_types.h
-fl_rounded_box.o: ../FL/fl_utf8.h
-fl_rounded_box.o: ../FL/platform_types.h
-fl_round_box.o: ../FL/Enumerations.H
-fl_round_box.o: ../FL/Fl.H
-fl_round_box.o: ../FL/fl_attr.h
-fl_round_box.o: ../FL/Fl_Cairo.H
-fl_round_box.o: ../FL/fl_casts.H
-fl_round_box.o: ../FL/fl_config.h
-fl_round_box.o: ../FL/fl_draw.H
-fl_round_box.o: ../FL/Fl_Export.H
-fl_round_box.o: ../FL/fl_types.h
-fl_round_box.o: ../FL/fl_utf8.h
-fl_round_box.o: ../FL/platform_types.h
-Fl_Round_Button.o: ../FL/Enumerations.H
-Fl_Round_Button.o: ../FL/Fl.H
-Fl_Round_Button.o: ../FL/fl_attr.h
-Fl_Round_Button.o: ../FL/Fl_Button.H
-Fl_Round_Button.o: ../FL/Fl_Cairo.H
-Fl_Round_Button.o: ../FL/fl_casts.H
-Fl_Round_Button.o: ../FL/fl_config.h
-Fl_Round_Button.o: ../FL/Fl_Export.H
-Fl_Round_Button.o: ../FL/Fl_Light_Button.H
-Fl_Round_Button.o: ../FL/Fl_Radio_Round_Button.H
-Fl_Round_Button.o: ../FL/Fl_Round_Button.H
-Fl_Round_Button.o: ../FL/fl_types.h
-Fl_Round_Button.o: ../FL/fl_utf8.h
-Fl_Round_Button.o: ../FL/platform_types.h
-Fl_Scheme.o: ../FL/Enumerations.H
-Fl_Scheme.o: ../FL/Fl.H
-Fl_Scheme.o: ../FL/fl_attr.h
-Fl_Scheme.o: ../FL/Fl_Bitmap.H
-Fl_Scheme.o: ../FL/Fl_Cairo.H
-Fl_Scheme.o: ../FL/fl_casts.H
-Fl_Scheme.o: ../FL/fl_config.h
-Fl_Scheme.o: ../FL/Fl_Export.H
-Fl_Scheme.o: ../FL/Fl_Group.H
-Fl_Scheme.o: ../FL/Fl_Image.H
-Fl_Scheme.o: ../FL/Fl_Scheme.H
-Fl_Scheme.o: ../FL/fl_string_functions.h
-Fl_Scheme.o: ../FL/fl_types.h
-Fl_Scheme.o: ../FL/fl_utf8.h
-Fl_Scheme.o: ../FL/Fl_Widget.H
-Fl_Scheme.o: ../FL/Fl_Window.H
-Fl_Scheme.o: ../FL/platform_types.h
-Fl_Scheme_Choice.o: ../FL/Enumerations.H
-Fl_Scheme_Choice.o: ../FL/Fl.H
-Fl_Scheme_Choice.o: ../FL/fl_attr.h
-Fl_Scheme_Choice.o: ../FL/Fl_Bitmap.H
-Fl_Scheme_Choice.o: ../FL/Fl_Cairo.H
-Fl_Scheme_Choice.o: ../FL/fl_casts.H
-Fl_Scheme_Choice.o: ../FL/Fl_Choice.H
-Fl_Scheme_Choice.o: ../FL/fl_config.h
-Fl_Scheme_Choice.o: ../FL/Fl_Export.H
-Fl_Scheme_Choice.o: ../FL/Fl_Group.H
-Fl_Scheme_Choice.o: ../FL/Fl_Image.H
-Fl_Scheme_Choice.o: ../FL/Fl_Menu_.H
-Fl_Scheme_Choice.o: ../FL/Fl_Menu_Item.H
-Fl_Scheme_Choice.o: ../FL/Fl_Multi_Label.H
-Fl_Scheme_Choice.o: ../FL/Fl_Scheme.H
-Fl_Scheme_Choice.o: ../FL/Fl_Scheme_Choice.H
-Fl_Scheme_Choice.o: ../FL/fl_types.h
-Fl_Scheme_Choice.o: ../FL/fl_utf8.h
-Fl_Scheme_Choice.o: ../FL/Fl_Widget.H
-Fl_Scheme_Choice.o: ../FL/Fl_Window.H
-Fl_Scheme_Choice.o: ../FL/platform_types.h
-Fl_Screen_Driver.o: ../FL/Enumerations.H
-Fl_Screen_Driver.o: ../FL/Fl.H
-Fl_Screen_Driver.o: ../FL/fl_attr.h
-Fl_Screen_Driver.o: ../FL/Fl_Bitmap.H
-Fl_Screen_Driver.o: ../FL/Fl_Box.H
-Fl_Screen_Driver.o: ../FL/Fl_Cairo.H
-Fl_Screen_Driver.o: ../FL/fl_casts.H
-Fl_Screen_Driver.o: ../FL/fl_config.h
-Fl_Screen_Driver.o: ../FL/Fl_Device.H
-Fl_Screen_Driver.o: ../FL/Fl_Double_Window.H
-Fl_Screen_Driver.o: ../FL/fl_draw.H
-Fl_Screen_Driver.o: ../FL/Fl_Export.H
-Fl_Screen_Driver.o: ../FL/Fl_Graphics_Driver.H
-Fl_Screen_Driver.o: ../FL/Fl_Group.H
-Fl_Screen_Driver.o: ../FL/Fl_Image.H
-Fl_Screen_Driver.o: ../FL/Fl_Image_Surface.H
-Fl_Screen_Driver.o: ../FL/Fl_Input.H
-Fl_Screen_Driver.o: ../FL/Fl_Input_.H
-Fl_Screen_Driver.o: ../FL/Fl_Overlay_Window.H
-Fl_Screen_Driver.o: ../FL/Fl_Pixmap.H
-Fl_Screen_Driver.o: ../FL/Fl_Plugin.H
-Fl_Screen_Driver.o: ../FL/Fl_Preferences.H
-Fl_Screen_Driver.o: ../FL/Fl_Rect.H
-Fl_Screen_Driver.o: ../FL/Fl_RGB_Image.H
-Fl_Screen_Driver.o: ../FL/Fl_Scrollbar.H
-Fl_Screen_Driver.o: ../FL/Fl_Shared_Image.H
-Fl_Screen_Driver.o: ../FL/Fl_Slider.H
-Fl_Screen_Driver.o: ../FL/Fl_Text_Buffer.H
-Fl_Screen_Driver.o: ../FL/Fl_Text_Display.H
-Fl_Screen_Driver.o: ../FL/Fl_Text_Editor.H
-Fl_Screen_Driver.o: ../FL/Fl_Tooltip.H
-Fl_Screen_Driver.o: ../FL/fl_types.h
-Fl_Screen_Driver.o: ../FL/fl_utf8.h
-Fl_Screen_Driver.o: ../FL/Fl_Valuator.H
-Fl_Screen_Driver.o: ../FL/Fl_Widget.H
-Fl_Screen_Driver.o: ../FL/Fl_Widget_Surface.H
-Fl_Screen_Driver.o: ../FL/Fl_Window.H
-Fl_Screen_Driver.o: ../FL/platform.H
-Fl_Screen_Driver.o: ../FL/platform_types.h
-Fl_Screen_Driver.o: ../FL/x11.H
-Fl_Screen_Driver.o: Fl_Screen_Driver.H
-Fl_Screen_Driver.o: Fl_Window_Driver.H
-Fl_Scroll.o: ../FL/Enumerations.H
-Fl_Scroll.o: ../FL/Fl.H
-Fl_Scroll.o: ../FL/fl_attr.h
-Fl_Scroll.o: ../FL/Fl_Cairo.H
-Fl_Scroll.o: ../FL/fl_casts.H
-Fl_Scroll.o: ../FL/fl_config.h
-Fl_Scroll.o: ../FL/fl_draw.H
-Fl_Scroll.o: ../FL/Fl_Export.H
-Fl_Scroll.o: ../FL/Fl_Group.H
-Fl_Scroll.o: ../FL/Fl_Image.H
-Fl_Scroll.o: ../FL/Fl_Scroll.H
-Fl_Scroll.o: ../FL/Fl_Scrollbar.H
-Fl_Scroll.o: ../FL/Fl_Slider.H
-Fl_Scroll.o: ../FL/Fl_Tiled_Image.H
-Fl_Scroll.o: ../FL/fl_types.h
-Fl_Scroll.o: ../FL/fl_utf8.h
-Fl_Scroll.o: ../FL/Fl_Valuator.H
-Fl_Scroll.o: ../FL/Fl_Widget.H
-Fl_Scroll.o: ../FL/platform_types.h
-Fl_Scrollbar.o: ../config.h
-Fl_Scrollbar.o: ../FL/Enumerations.H
-Fl_Scrollbar.o: ../FL/Fl.H
-Fl_Scrollbar.o: ../FL/fl_attr.h
-Fl_Scrollbar.o: ../FL/Fl_Cairo.H
-Fl_Scrollbar.o: ../FL/fl_casts.H
-Fl_Scrollbar.o: ../FL/fl_config.h
-Fl_Scrollbar.o: ../FL/fl_draw.H
-Fl_Scrollbar.o: ../FL/Fl_Export.H
-Fl_Scrollbar.o: ../FL/Fl_Scrollbar.H
-Fl_Scrollbar.o: ../FL/Fl_Slider.H
-Fl_Scrollbar.o: ../FL/fl_string_functions.h
-Fl_Scrollbar.o: ../FL/fl_types.h
-Fl_Scrollbar.o: ../FL/fl_utf8.h
-Fl_Scrollbar.o: ../FL/Fl_Valuator.H
-Fl_Scrollbar.o: ../FL/platform_types.h
-Fl_Scrollbar.o: flstring.h
-fl_scroll_area.o: ../FL/Enumerations.H
-fl_scroll_area.o: ../FL/Fl.H
-fl_scroll_area.o: ../FL/fl_attr.h
-fl_scroll_area.o: ../FL/Fl_Bitmap.H
-fl_scroll_area.o: ../FL/Fl_Cairo.H
-fl_scroll_area.o: ../FL/fl_casts.H
-fl_scroll_area.o: ../FL/fl_config.h
-fl_scroll_area.o: ../FL/Fl_Double_Window.H
-fl_scroll_area.o: ../FL/fl_draw.H
-fl_scroll_area.o: ../FL/Fl_Export.H
-fl_scroll_area.o: ../FL/Fl_Group.H
-fl_scroll_area.o: ../FL/Fl_Image.H
-fl_scroll_area.o: ../FL/Fl_Overlay_Window.H
-fl_scroll_area.o: ../FL/fl_types.h
-fl_scroll_area.o: ../FL/fl_utf8.h
-fl_scroll_area.o: ../FL/Fl_Widget.H
-fl_scroll_area.o: ../FL/Fl_Window.H
-fl_scroll_area.o: ../FL/platform_types.h
-fl_scroll_area.o: Fl_Window_Driver.H
-fl_set_font.o: ../config.h
-fl_set_font.o: ../FL/Enumerations.H
-fl_set_font.o: ../FL/Fl.H
-fl_set_font.o: ../FL/fl_attr.h
-fl_set_font.o: ../FL/Fl_Bitmap.H
-fl_set_font.o: ../FL/Fl_Cairo.H
-fl_set_font.o: ../FL/fl_casts.H
-fl_set_font.o: ../FL/fl_config.h
-fl_set_font.o: ../FL/Fl_Device.H
-fl_set_font.o: ../FL/fl_draw.H
-fl_set_font.o: ../FL/Fl_Export.H
-fl_set_font.o: ../FL/Fl_Graphics_Driver.H
-fl_set_font.o: ../FL/Fl_Group.H
-fl_set_font.o: ../FL/Fl_Image.H
-fl_set_font.o: ../FL/Fl_Pixmap.H
-fl_set_font.o: ../FL/Fl_Plugin.H
-fl_set_font.o: ../FL/Fl_Preferences.H
-fl_set_font.o: ../FL/Fl_Rect.H
-fl_set_font.o: ../FL/Fl_RGB_Image.H
-fl_set_font.o: ../FL/Fl_Scrollbar.H
-fl_set_font.o: ../FL/Fl_Slider.H
-fl_set_font.o: ../FL/fl_string_functions.h
-fl_set_font.o: ../FL/Fl_Text_Buffer.H
-fl_set_font.o: ../FL/Fl_Text_Display.H
-fl_set_font.o: ../FL/Fl_Text_Editor.H
-fl_set_font.o: ../FL/fl_types.h
-fl_set_font.o: ../FL/fl_utf8.h
-fl_set_font.o: ../FL/Fl_Valuator.H
-fl_set_font.o: ../FL/Fl_Widget.H
-fl_set_font.o: ../FL/platform.H
-fl_set_font.o: ../FL/platform_types.h
-fl_set_font.o: ../FL/x11.H
-fl_set_font.o: flstring.h
-fl_set_font.o: Fl_Screen_Driver.H
-fl_shadow_box.o: ../FL/Enumerations.H
-fl_shadow_box.o: ../FL/Fl.H
-fl_shadow_box.o: ../FL/fl_attr.h
-fl_shadow_box.o: ../FL/Fl_Cairo.H
-fl_shadow_box.o: ../FL/fl_casts.H
-fl_shadow_box.o: ../FL/fl_config.h
-fl_shadow_box.o: ../FL/fl_draw.H
-fl_shadow_box.o: ../FL/Fl_Export.H
-fl_shadow_box.o: ../FL/fl_types.h
-fl_shadow_box.o: ../FL/fl_utf8.h
-fl_shadow_box.o: ../FL/platform_types.h
-Fl_Shared_Image.o: ../config.h
-Fl_Shared_Image.o: ../FL/Enumerations.H
-Fl_Shared_Image.o: ../FL/Fl.H
-Fl_Shared_Image.o: ../FL/fl_attr.h
-Fl_Shared_Image.o: ../FL/Fl_Bitmap.H
-Fl_Shared_Image.o: ../FL/Fl_Cairo.H
-Fl_Shared_Image.o: ../FL/fl_casts.H
-Fl_Shared_Image.o: ../FL/fl_config.h
-Fl_Shared_Image.o: ../FL/fl_draw.H
-Fl_Shared_Image.o: ../FL/Fl_Export.H
-Fl_Shared_Image.o: ../FL/Fl_Image.H
-Fl_Shared_Image.o: ../FL/Fl_Pixmap.H
-Fl_Shared_Image.o: ../FL/Fl_Preferences.H
-Fl_Shared_Image.o: ../FL/Fl_Shared_Image.H
-Fl_Shared_Image.o: ../FL/fl_string_functions.h
-Fl_Shared_Image.o: ../FL/fl_types.h
-Fl_Shared_Image.o: ../FL/fl_utf8.h
-Fl_Shared_Image.o: ../FL/Fl_Widget.H
-Fl_Shared_Image.o: ../FL/Fl_XBM_Image.H
-Fl_Shared_Image.o: ../FL/Fl_XPM_Image.H
-Fl_Shared_Image.o: ../FL/platform_types.h
-Fl_Shared_Image.o: flstring.h
-fl_shortcut.o: ../config.h
-fl_shortcut.o: ../FL/Enumerations.H
-fl_shortcut.o: ../FL/filename.H
-fl_shortcut.o: ../FL/Fl.H
-fl_shortcut.o: ../FL/fl_attr.h
-fl_shortcut.o: ../FL/Fl_Bitmap.H
-fl_shortcut.o: ../FL/Fl_Button.H
-fl_shortcut.o: ../FL/Fl_Cairo.H
-fl_shortcut.o: ../FL/fl_casts.H
-fl_shortcut.o: ../FL/fl_config.h
-fl_shortcut.o: ../FL/Fl_Device.H
-fl_shortcut.o: ../FL/fl_draw.H
-fl_shortcut.o: ../FL/Fl_Export.H
-fl_shortcut.o: ../FL/Fl_Graphics_Driver.H
-fl_shortcut.o: ../FL/Fl_Group.H
-fl_shortcut.o: ../FL/Fl_Image.H
-fl_shortcut.o: ../FL/Fl_Pixmap.H
-fl_shortcut.o: ../FL/Fl_Plugin.H
-fl_shortcut.o: ../FL/Fl_Preferences.H
-fl_shortcut.o: ../FL/Fl_Rect.H
-fl_shortcut.o: ../FL/Fl_RGB_Image.H
-fl_shortcut.o: ../FL/Fl_Scrollbar.H
-fl_shortcut.o: ../FL/Fl_Slider.H
-fl_shortcut.o: ../FL/fl_string_functions.h
-fl_shortcut.o: ../FL/Fl_Text_Buffer.H
-fl_shortcut.o: ../FL/Fl_Text_Display.H
-fl_shortcut.o: ../FL/Fl_Text_Editor.H
-fl_shortcut.o: ../FL/fl_types.h
-fl_shortcut.o: ../FL/fl_utf8.h
-fl_shortcut.o: ../FL/Fl_Valuator.H
-fl_shortcut.o: ../FL/Fl_Widget.H
-fl_shortcut.o: ../FL/platform_types.h
-fl_shortcut.o: flstring.h
-fl_shortcut.o: Fl_Screen_Driver.H
-fl_shortcut.o: Fl_System_Driver.H
-Fl_Shortcut_Button.o: ../config.h
-Fl_Shortcut_Button.o: ../FL/Enumerations.H
-Fl_Shortcut_Button.o: ../FL/filename.H
-Fl_Shortcut_Button.o: ../FL/Fl.H
-Fl_Shortcut_Button.o: ../FL/fl_attr.h
-Fl_Shortcut_Button.o: ../FL/Fl_Button.H
-Fl_Shortcut_Button.o: ../FL/Fl_Cairo.H
-Fl_Shortcut_Button.o: ../FL/fl_casts.H
-Fl_Shortcut_Button.o: ../FL/fl_config.h
-Fl_Shortcut_Button.o: ../FL/fl_draw.H
-Fl_Shortcut_Button.o: ../FL/Fl_Export.H
-Fl_Shortcut_Button.o: ../FL/Fl_Preferences.H
-Fl_Shortcut_Button.o: ../FL/Fl_Shortcut_Button.H
-Fl_Shortcut_Button.o: ../FL/fl_string_functions.h
-Fl_Shortcut_Button.o: ../FL/fl_types.h
-Fl_Shortcut_Button.o: ../FL/fl_utf8.h
-Fl_Shortcut_Button.o: ../FL/Fl_Widget.H
-Fl_Shortcut_Button.o: ../FL/platform_types.h
-Fl_Shortcut_Button.o: flstring.h
-Fl_Shortcut_Button.o: Fl_System_Driver.H
-fl_show_colormap.o: ../config.h
-fl_show_colormap.o: ../FL/Enumerations.H
-fl_show_colormap.o: ../FL/Fl.H
-fl_show_colormap.o: ../FL/fl_attr.h
-fl_show_colormap.o: ../FL/Fl_Cairo.H
-fl_show_colormap.o: ../FL/fl_casts.H
-fl_show_colormap.o: ../FL/fl_config.h
-fl_show_colormap.o: ../FL/fl_draw.H
-fl_show_colormap.o: ../FL/Fl_Export.H
-fl_show_colormap.o: ../FL/fl_show_colormap.H
-fl_show_colormap.o: ../FL/Fl_Single_Window.H
-fl_show_colormap.o: ../FL/fl_types.h
-fl_show_colormap.o: ../FL/fl_utf8.h
-fl_show_colormap.o: ../FL/Fl_Window.H
-fl_show_colormap.o: ../FL/platform_types.h
-Fl_Single_Window.o: ../FL/Fl_Single_Window.H
-Fl_Single_Window.o: ../FL/Fl_Window.H
-Fl_Slider.o: ../config.h
-Fl_Slider.o: ../FL/Enumerations.H
-Fl_Slider.o: ../FL/Fl.H
-Fl_Slider.o: ../FL/fl_attr.h
-Fl_Slider.o: ../FL/Fl_Cairo.H
-Fl_Slider.o: ../FL/fl_casts.H
-Fl_Slider.o: ../FL/fl_config.h
-Fl_Slider.o: ../FL/fl_draw.H
-Fl_Slider.o: ../FL/Fl_Export.H
-Fl_Slider.o: ../FL/Fl_Fill_Slider.H
-Fl_Slider.o: ../FL/Fl_Hor_Fill_Slider.H
-Fl_Slider.o: ../FL/Fl_Hor_Nice_Slider.H
-Fl_Slider.o: ../FL/Fl_Hor_Slider.H
-Fl_Slider.o: ../FL/Fl_Nice_Slider.H
-Fl_Slider.o: ../FL/Fl_Slider.H
-Fl_Slider.o: ../FL/fl_string_functions.h
-Fl_Slider.o: ../FL/fl_types.h
-Fl_Slider.o: ../FL/fl_utf8.h
-Fl_Slider.o: ../FL/Fl_Valuator.H
-Fl_Slider.o: ../FL/platform_types.h
-Fl_Slider.o: flstring.h
-Fl_Spinner.o: ../FL/Enumerations.H
-Fl_Spinner.o: ../FL/Fl.H
-Fl_Spinner.o: ../FL/Fl_Button.H
-Fl_Spinner.o: ../FL/fl_draw.H
-Fl_Spinner.o: ../FL/Fl_Group.H
-Fl_Spinner.o: ../FL/Fl_Input.H
-Fl_Spinner.o: ../FL/Fl_Input_.H
-Fl_Spinner.o: ../FL/Fl_Rect.H
-Fl_Spinner.o: ../FL/Fl_Repeat_Button.H
-Fl_Spinner.o: ../FL/Fl_Spinner.H
-Fl_Spinner.o: ../FL/Fl_Widget.H
-Fl_String.o: ../FL/Fl_Export.H
-Fl_String.o: Fl_String.H
-fl_string_functions.o: ../FL/Enumerations.H
-fl_string_functions.o: ../FL/filename.H
-fl_string_functions.o: ../FL/Fl.H
-fl_string_functions.o: ../FL/fl_attr.h
-fl_string_functions.o: ../FL/Fl_Cairo.H
-fl_string_functions.o: ../FL/fl_casts.H
-fl_string_functions.o: ../FL/fl_config.h
-fl_string_functions.o: ../FL/Fl_Export.H
-fl_string_functions.o: ../FL/Fl_Preferences.H
-fl_string_functions.o: ../FL/fl_string_functions.h
-fl_string_functions.o: ../FL/fl_types.h
-fl_string_functions.o: ../FL/fl_utf8.h
-fl_string_functions.o: ../FL/platform_types.h
-fl_string_functions.o: Fl_System_Driver.H
-Fl_SVG_Image.o: ../config.h
-Fl_SVG_Image.o: ../FL/Enumerations.H
-Fl_SVG_Image.o: ../FL/filename.H
-Fl_SVG_Image.o: ../FL/Fl.H
-Fl_SVG_Image.o: ../FL/fl_attr.h
-Fl_SVG_Image.o: ../FL/Fl_Bitmap.H
-Fl_SVG_Image.o: ../FL/Fl_Cairo.H
-Fl_SVG_Image.o: ../FL/fl_casts.H
-Fl_SVG_Image.o: ../FL/fl_config.h
-Fl_SVG_Image.o: ../FL/Fl_Device.H
-Fl_SVG_Image.o: ../FL/fl_draw.H
-Fl_SVG_Image.o: ../FL/Fl_Export.H
-Fl_SVG_Image.o: ../FL/Fl_Graphics_Driver.H
-Fl_SVG_Image.o: ../FL/Fl_Group.H
-Fl_SVG_Image.o: ../FL/Fl_Image.H
-Fl_SVG_Image.o: ../FL/Fl_Pixmap.H
-Fl_SVG_Image.o: ../FL/Fl_Plugin.H
-Fl_SVG_Image.o: ../FL/Fl_Preferences.H
-Fl_SVG_Image.o: ../FL/Fl_Rect.H
-Fl_SVG_Image.o: ../FL/Fl_RGB_Image.H
-Fl_SVG_Image.o: ../FL/Fl_Scrollbar.H
-Fl_SVG_Image.o: ../FL/Fl_Shared_Image.H
-Fl_SVG_Image.o: ../FL/Fl_Slider.H
-Fl_SVG_Image.o: ../FL/fl_string_functions.h
-Fl_SVG_Image.o: ../FL/Fl_SVG_Image.H
-Fl_SVG_Image.o: ../FL/Fl_Text_Buffer.H
-Fl_SVG_Image.o: ../FL/Fl_Text_Display.H
-Fl_SVG_Image.o: ../FL/Fl_Text_Editor.H
-Fl_SVG_Image.o: ../FL/fl_types.h
-Fl_SVG_Image.o: ../FL/fl_utf8.h
-Fl_SVG_Image.o: ../FL/Fl_Valuator.H
-Fl_SVG_Image.o: ../FL/Fl_Widget.H
-Fl_SVG_Image.o: ../FL/platform_types.h
-Fl_SVG_Image.o: ../nanosvg/nanosvg.h
-Fl_SVG_Image.o: ../nanosvg/nanosvgrast.h
-Fl_SVG_Image.o: Fl_Screen_Driver.H
-Fl_SVG_Image.o: Fl_System_Driver.H
-fl_symbols.o: ../config.h
-fl_symbols.o: ../FL/Enumerations.H
-fl_symbols.o: ../FL/Fl.H
-fl_symbols.o: ../FL/fl_attr.h
-fl_symbols.o: ../FL/Fl_Cairo.H
-fl_symbols.o: ../FL/fl_casts.H
-fl_symbols.o: ../FL/fl_config.h
-fl_symbols.o: ../FL/fl_draw.H
-fl_symbols.o: ../FL/Fl_Export.H
-fl_symbols.o: ../FL/fl_string_functions.h
-fl_symbols.o: ../FL/fl_types.h
-fl_symbols.o: ../FL/fl_utf8.h
-fl_symbols.o: ../FL/math.h
-fl_symbols.o: ../FL/platform_types.h
-fl_symbols.o: flstring.h
-Fl_System_Driver.o: ../config.h
-Fl_System_Driver.o: ../FL/Enumerations.H
-Fl_System_Driver.o: ../FL/filename.H
-Fl_System_Driver.o: ../FL/Fl.H
-Fl_System_Driver.o: ../FL/fl_attr.h
-Fl_System_Driver.o: ../FL/Fl_Cairo.H
-Fl_System_Driver.o: ../FL/fl_casts.H
-Fl_System_Driver.o: ../FL/fl_config.h
-Fl_System_Driver.o: ../FL/Fl_Export.H
-Fl_System_Driver.o: ../FL/Fl_File_Icon.H
-Fl_System_Driver.o: ../FL/Fl_Preferences.H
-Fl_System_Driver.o: ../FL/fl_string_functions.h
-Fl_System_Driver.o: ../FL/fl_types.h
-Fl_System_Driver.o: ../FL/fl_utf8.h
-Fl_System_Driver.o: ../FL/platform_types.h
-Fl_System_Driver.o: flstring.h
-Fl_System_Driver.o: Fl_System_Driver.H
-Fl_System_Driver.o: Fl_Timeout.h
-Fl_Sys_Menu_Bar.o: ../config.h
-Fl_Sys_Menu_Bar.o: ../FL/Enumerations.H
-Fl_Sys_Menu_Bar.o: ../FL/filename.H
-Fl_Sys_Menu_Bar.o: ../FL/Fl.H
-Fl_Sys_Menu_Bar.o: ../FL/fl_attr.h
-Fl_Sys_Menu_Bar.o: ../FL/Fl_Cairo.H
-Fl_Sys_Menu_Bar.o: ../FL/fl_casts.H
-Fl_Sys_Menu_Bar.o: ../FL/fl_config.h
-Fl_Sys_Menu_Bar.o: ../FL/Fl_Export.H
-Fl_Sys_Menu_Bar.o: ../FL/Fl_Image.H
-Fl_Sys_Menu_Bar.o: ../FL/Fl_Menu_.H
-Fl_Sys_Menu_Bar.o: ../FL/Fl_Menu_Bar.H
-Fl_Sys_Menu_Bar.o: ../FL/Fl_Menu_Item.H
-Fl_Sys_Menu_Bar.o: ../FL/Fl_Multi_Label.H
-Fl_Sys_Menu_Bar.o: ../FL/Fl_Preferences.H
-Fl_Sys_Menu_Bar.o: ../FL/Fl_Sys_Menu_Bar.H
-Fl_Sys_Menu_Bar.o: ../FL/fl_types.h
-Fl_Sys_Menu_Bar.o: ../FL/fl_utf8.h
-Fl_Sys_Menu_Bar.o: ../FL/Fl_Widget.H
-Fl_Sys_Menu_Bar.o: ../FL/platform.H
-Fl_Sys_Menu_Bar.o: ../FL/platform_types.h
-Fl_Sys_Menu_Bar.o: ../FL/x11.H
-Fl_Sys_Menu_Bar.o: Fl_System_Driver.H
-Fl_Sys_Menu_Bar.o: Fl_Sys_Menu_Bar_Driver.H
-Fl_Table.o: ../FL/Enumerations.H
-Fl_Table.o: ../FL/Fl.H
-Fl_Table.o: ../FL/fl_attr.h
-Fl_Table.o: ../FL/Fl_Cairo.H
-Fl_Table.o: ../FL/fl_casts.H
-Fl_Table.o: ../FL/fl_config.h
-Fl_Table.o: ../FL/fl_draw.H
-Fl_Table.o: ../FL/Fl_Export.H
-Fl_Table.o: ../FL/Fl_Group.H
-Fl_Table.o: ../FL/Fl_Scroll.H
-Fl_Table.o: ../FL/Fl_Scrollbar.H
-Fl_Table.o: ../FL/Fl_Slider.H
-Fl_Table.o: ../FL/Fl_Table.H
-Fl_Table.o: ../FL/fl_types.h
-Fl_Table.o: ../FL/fl_utf8.h
-Fl_Table.o: ../FL/Fl_Valuator.H
-Fl_Table.o: ../FL/Fl_Widget.H
-Fl_Table.o: ../FL/platform_types.h
-Fl_Table.o: Fl_Int_Vector.H
-Fl_Table_Row.o: ../FL/Enumerations.H
-Fl_Table_Row.o: ../FL/Fl.H
-Fl_Table_Row.o: ../FL/fl_attr.h
-Fl_Table_Row.o: ../FL/Fl_Cairo.H
-Fl_Table_Row.o: ../FL/fl_casts.H
-Fl_Table_Row.o: ../FL/fl_config.h
-Fl_Table_Row.o: ../FL/fl_draw.H
-Fl_Table_Row.o: ../FL/Fl_Export.H
-Fl_Table_Row.o: ../FL/Fl_Group.H
-Fl_Table_Row.o: ../FL/Fl_Scroll.H
-Fl_Table_Row.o: ../FL/Fl_Scrollbar.H
-Fl_Table_Row.o: ../FL/Fl_Slider.H
-Fl_Table_Row.o: ../FL/Fl_Table.H
-Fl_Table_Row.o: ../FL/Fl_Table_Row.H
-Fl_Table_Row.o: ../FL/fl_types.h
-Fl_Table_Row.o: ../FL/fl_utf8.h
-Fl_Table_Row.o: ../FL/Fl_Valuator.H
-Fl_Table_Row.o: ../FL/Fl_Widget.H
-Fl_Table_Row.o: ../FL/platform_types.h
-Fl_Tabs.o: ../FL/Enumerations.H
-Fl_Tabs.o: ../FL/Fl.H
-Fl_Tabs.o: ../FL/fl_attr.h
-Fl_Tabs.o: ../FL/Fl_Bitmap.H
-Fl_Tabs.o: ../FL/Fl_Cairo.H
-Fl_Tabs.o: ../FL/fl_casts.H
-Fl_Tabs.o: ../FL/fl_config.h
-Fl_Tabs.o: ../FL/fl_draw.H
-Fl_Tabs.o: ../FL/Fl_Export.H
-Fl_Tabs.o: ../FL/Fl_Group.H
-Fl_Tabs.o: ../FL/Fl_Image.H
-Fl_Tabs.o: ../FL/Fl_Menu_Item.H
-Fl_Tabs.o: ../FL/Fl_Multi_Label.H
-Fl_Tabs.o: ../FL/Fl_Tabs.H
-Fl_Tabs.o: ../FL/Fl_Tooltip.H
-Fl_Tabs.o: ../FL/fl_types.h
-Fl_Tabs.o: ../FL/fl_utf8.h
-Fl_Tabs.o: ../FL/Fl_Widget.H
-Fl_Tabs.o: ../FL/Fl_Window.H
-Fl_Tabs.o: ../FL/platform_types.h
-Fl_Terminal.o: ../FL/Enumerations.H
-Fl_Terminal.o: ../FL/Fl.H
-Fl_Terminal.o: ../FL/fl_attr.h
-Fl_Terminal.o: ../FL/Fl_Bitmap.H
-Fl_Terminal.o: ../FL/Fl_Cairo.H
-Fl_Terminal.o: ../FL/fl_casts.H
-Fl_Terminal.o: ../FL/fl_config.h
-Fl_Terminal.o: ../FL/fl_draw.H
-Fl_Terminal.o: ../FL/Fl_Export.H
-Fl_Terminal.o: ../FL/Fl_Group.H
-Fl_Terminal.o: ../FL/Fl_Image.H
-Fl_Terminal.o: ../FL/Fl_Rect.H
-Fl_Terminal.o: ../FL/Fl_Scrollbar.H
-Fl_Terminal.o: ../FL/Fl_Slider.H
-Fl_Terminal.o: ../FL/fl_string_functions.h
-Fl_Terminal.o: ../FL/Fl_Terminal.H
-Fl_Terminal.o: ../FL/fl_types.h
-Fl_Terminal.o: ../FL/fl_utf8.h
-Fl_Terminal.o: ../FL/Fl_Valuator.H
-Fl_Terminal.o: ../FL/Fl_Widget.H
-Fl_Terminal.o: ../FL/Fl_Window.H
-Fl_Terminal.o: ../FL/platform_types.h
-Fl_Terminal.o: Fl_String.H
-Fl_Text_Buffer.o: ../config.h
-Fl_Text_Buffer.o: ../FL/Enumerations.H
-Fl_Text_Buffer.o: ../FL/Fl.H
-Fl_Text_Buffer.o: ../FL/fl_ask.H
-Fl_Text_Buffer.o: ../FL/fl_attr.h
-Fl_Text_Buffer.o: ../FL/Fl_Cairo.H
-Fl_Text_Buffer.o: ../FL/fl_casts.H
-Fl_Text_Buffer.o: ../FL/fl_config.h
-Fl_Text_Buffer.o: ../FL/Fl_Export.H
-Fl_Text_Buffer.o: ../FL/fl_string_functions.h
-Fl_Text_Buffer.o: ../FL/Fl_Text_Buffer.H
-Fl_Text_Buffer.o: ../FL/fl_types.h
-Fl_Text_Buffer.o: ../FL/fl_utf8.h
-Fl_Text_Buffer.o: ../FL/platform_types.h
-Fl_Text_Buffer.o: flstring.h
-Fl_Text_Display.o: ../config.h
-Fl_Text_Display.o: ../FL/Enumerations.H
-Fl_Text_Display.o: ../FL/Fl.H
-Fl_Text_Display.o: ../FL/fl_attr.h
-Fl_Text_Display.o: ../FL/Fl_Bitmap.H
-Fl_Text_Display.o: ../FL/Fl_Cairo.H
-Fl_Text_Display.o: ../FL/fl_casts.H
-Fl_Text_Display.o: ../FL/fl_config.h
-Fl_Text_Display.o: ../FL/Fl_Device.H
-Fl_Text_Display.o: ../FL/fl_draw.H
-Fl_Text_Display.o: ../FL/Fl_Export.H
-Fl_Text_Display.o: ../FL/Fl_Graphics_Driver.H
-Fl_Text_Display.o: ../FL/Fl_Group.H
-Fl_Text_Display.o: ../FL/Fl_Image.H
-Fl_Text_Display.o: ../FL/Fl_Input.H
-Fl_Text_Display.o: ../FL/Fl_Input_.H
-Fl_Text_Display.o: ../FL/Fl_Menu_Item.H
-Fl_Text_Display.o: ../FL/Fl_Multi_Label.H
-Fl_Text_Display.o: ../FL/Fl_Pixmap.H
-Fl_Text_Display.o: ../FL/Fl_Plugin.H
-Fl_Text_Display.o: ../FL/Fl_Preferences.H
-Fl_Text_Display.o: ../FL/Fl_Rect.H
-Fl_Text_Display.o: ../FL/Fl_RGB_Image.H
-Fl_Text_Display.o: ../FL/Fl_Scrollbar.H
-Fl_Text_Display.o: ../FL/Fl_Slider.H
-Fl_Text_Display.o: ../FL/fl_string_functions.h
-Fl_Text_Display.o: ../FL/Fl_Text_Buffer.H
-Fl_Text_Display.o: ../FL/Fl_Text_Display.H
-Fl_Text_Display.o: ../FL/Fl_Text_Editor.H
-Fl_Text_Display.o: ../FL/fl_types.h
-Fl_Text_Display.o: ../FL/fl_utf8.h
-Fl_Text_Display.o: ../FL/Fl_Valuator.H
-Fl_Text_Display.o: ../FL/Fl_Widget.H
-Fl_Text_Display.o: ../FL/Fl_Window.H
-Fl_Text_Display.o: ../FL/platform.H
-Fl_Text_Display.o: ../FL/platform_types.h
-Fl_Text_Display.o: ../FL/x11.H
-Fl_Text_Display.o: flstring.h
-Fl_Text_Display.o: Fl_Screen_Driver.H
-Fl_Text_Editor.o: ../config.h
-Fl_Text_Editor.o: ../FL/Enumerations.H
-Fl_Text_Editor.o: ../FL/Fl.H
-Fl_Text_Editor.o: ../FL/fl_ask.H
-Fl_Text_Editor.o: ../FL/fl_attr.h
-Fl_Text_Editor.o: ../FL/Fl_Bitmap.H
-Fl_Text_Editor.o: ../FL/Fl_Cairo.H
-Fl_Text_Editor.o: ../FL/fl_casts.H
-Fl_Text_Editor.o: ../FL/fl_config.h
-Fl_Text_Editor.o: ../FL/Fl_Device.H
-Fl_Text_Editor.o: ../FL/fl_draw.H
-Fl_Text_Editor.o: ../FL/Fl_Export.H
-Fl_Text_Editor.o: ../FL/Fl_Graphics_Driver.H
-Fl_Text_Editor.o: ../FL/Fl_Group.H
-Fl_Text_Editor.o: ../FL/Fl_Image.H
-Fl_Text_Editor.o: ../FL/Fl_Pixmap.H
-Fl_Text_Editor.o: ../FL/Fl_Plugin.H
-Fl_Text_Editor.o: ../FL/Fl_Preferences.H
-Fl_Text_Editor.o: ../FL/Fl_Rect.H
-Fl_Text_Editor.o: ../FL/Fl_RGB_Image.H
-Fl_Text_Editor.o: ../FL/Fl_Scrollbar.H
-Fl_Text_Editor.o: ../FL/Fl_Slider.H
-Fl_Text_Editor.o: ../FL/fl_string_functions.h
-Fl_Text_Editor.o: ../FL/Fl_Text_Buffer.H
-Fl_Text_Editor.o: ../FL/Fl_Text_Display.H
-Fl_Text_Editor.o: ../FL/Fl_Text_Editor.H
-Fl_Text_Editor.o: ../FL/fl_types.h
-Fl_Text_Editor.o: ../FL/fl_utf8.h
-Fl_Text_Editor.o: ../FL/Fl_Valuator.H
-Fl_Text_Editor.o: ../FL/Fl_Widget.H
-Fl_Text_Editor.o: ../FL/Fl_Window.H
-Fl_Text_Editor.o: ../FL/platform_types.h
-Fl_Text_Editor.o: flstring.h
-Fl_Text_Editor.o: Fl_Screen_Driver.H
-Fl_Tile.o: ../FL/Enumerations.H
-Fl_Tile.o: ../FL/Fl.H
-Fl_Tile.o: ../FL/fl_attr.h
-Fl_Tile.o: ../FL/Fl_Bitmap.H
-Fl_Tile.o: ../FL/Fl_Cairo.H
-Fl_Tile.o: ../FL/fl_casts.H
-Fl_Tile.o: ../FL/fl_config.h
-Fl_Tile.o: ../FL/Fl_Export.H
-Fl_Tile.o: ../FL/Fl_Group.H
-Fl_Tile.o: ../FL/Fl_Image.H
-Fl_Tile.o: ../FL/Fl_Rect.H
-Fl_Tile.o: ../FL/Fl_Tile.H
-Fl_Tile.o: ../FL/fl_types.h
-Fl_Tile.o: ../FL/fl_utf8.h
-Fl_Tile.o: ../FL/Fl_Widget.H
-Fl_Tile.o: ../FL/Fl_Window.H
-Fl_Tile.o: ../FL/platform_types.h
-Fl_Tiled_Image.o: ../FL/Enumerations.H
-Fl_Tiled_Image.o: ../FL/Fl.H
-Fl_Tiled_Image.o: ../FL/fl_attr.h
-Fl_Tiled_Image.o: ../FL/Fl_Bitmap.H
-Fl_Tiled_Image.o: ../FL/Fl_Cairo.H
-Fl_Tiled_Image.o: ../FL/fl_casts.H
-Fl_Tiled_Image.o: ../FL/fl_config.h
-Fl_Tiled_Image.o: ../FL/fl_draw.H
-Fl_Tiled_Image.o: ../FL/Fl_Export.H
-Fl_Tiled_Image.o: ../FL/Fl_Group.H
-Fl_Tiled_Image.o: ../FL/Fl_Image.H
-Fl_Tiled_Image.o: ../FL/Fl_Tiled_Image.H
-Fl_Tiled_Image.o: ../FL/fl_types.h
-Fl_Tiled_Image.o: ../FL/fl_utf8.h
-Fl_Tiled_Image.o: ../FL/Fl_Widget.H
-Fl_Tiled_Image.o: ../FL/Fl_Window.H
-Fl_Tiled_Image.o: ../FL/platform_types.h
-Fl_Timeout.o: ../config.h
-Fl_Timeout.o: ../FL/Enumerations.H
-Fl_Timeout.o: ../FL/filename.H
-Fl_Timeout.o: ../FL/Fl.H
-Fl_Timeout.o: ../FL/fl_attr.h
-Fl_Timeout.o: ../FL/Fl_Cairo.H
-Fl_Timeout.o: ../FL/fl_casts.H
-Fl_Timeout.o: ../FL/fl_config.h
-Fl_Timeout.o: ../FL/Fl_Export.H
-Fl_Timeout.o: ../FL/Fl_Preferences.H
-Fl_Timeout.o: ../FL/fl_types.h
-Fl_Timeout.o: ../FL/fl_utf8.h
-Fl_Timeout.o: ../FL/platform_types.h
-Fl_Timeout.o: Fl_System_Driver.H
-Fl_Timeout.o: Fl_Timeout.h
-Fl_Tooltip.o: ../FL/Enumerations.H
-Fl_Tooltip.o: ../FL/filename.H
-Fl_Tooltip.o: ../FL/Fl.H
-Fl_Tooltip.o: ../FL/fl_attr.h
-Fl_Tooltip.o: ../FL/Fl_Bitmap.H
-Fl_Tooltip.o: ../FL/Fl_Cairo.H
-Fl_Tooltip.o: ../FL/fl_casts.H
-Fl_Tooltip.o: ../FL/fl_config.h
-Fl_Tooltip.o: ../FL/Fl_Device.H
-Fl_Tooltip.o: ../FL/Fl_Double_Window.H
-Fl_Tooltip.o: ../FL/fl_draw.H
-Fl_Tooltip.o: ../FL/Fl_Export.H
-Fl_Tooltip.o: ../FL/Fl_Graphics_Driver.H
-Fl_Tooltip.o: ../FL/Fl_Group.H
-Fl_Tooltip.o: ../FL/Fl_Image.H
-Fl_Tooltip.o: ../FL/Fl_Menu_Window.H
-Fl_Tooltip.o: ../FL/Fl_Overlay_Window.H
-Fl_Tooltip.o: ../FL/Fl_Pixmap.H
-Fl_Tooltip.o: ../FL/Fl_Plugin.H
-Fl_Tooltip.o: ../FL/Fl_Preferences.H
-Fl_Tooltip.o: ../FL/Fl_Rect.H
-Fl_Tooltip.o: ../FL/Fl_RGB_Image.H
-Fl_Tooltip.o: ../FL/Fl_Scrollbar.H
-Fl_Tooltip.o: ../FL/Fl_Single_Window.H
-Fl_Tooltip.o: ../FL/Fl_Slider.H
-Fl_Tooltip.o: ../FL/fl_string_functions.h
-Fl_Tooltip.o: ../FL/Fl_Text_Buffer.H
-Fl_Tooltip.o: ../FL/Fl_Text_Display.H
-Fl_Tooltip.o: ../FL/Fl_Text_Editor.H
-Fl_Tooltip.o: ../FL/Fl_Tooltip.H
-Fl_Tooltip.o: ../FL/fl_types.h
-Fl_Tooltip.o: ../FL/fl_utf8.h
-Fl_Tooltip.o: ../FL/Fl_Valuator.H
-Fl_Tooltip.o: ../FL/Fl_Widget.H
-Fl_Tooltip.o: ../FL/Fl_Window.H
-Fl_Tooltip.o: ../FL/platform_types.h
-Fl_Tooltip.o: Fl_Screen_Driver.H
-Fl_Tooltip.o: Fl_System_Driver.H
-Fl_Tooltip.o: Fl_Window_Driver.H
-Fl_Tree.o: ../FL/Enumerations.H
-Fl_Tree.o: ../FL/Fl.H
-Fl_Tree.o: ../FL/fl_attr.h
-Fl_Tree.o: ../FL/Fl_Cairo.H
-Fl_Tree.o: ../FL/fl_casts.H
-Fl_Tree.o: ../FL/fl_config.h
-Fl_Tree.o: ../FL/fl_draw.H
-Fl_Tree.o: ../FL/Fl_Export.H
-Fl_Tree.o: ../FL/Fl_Group.H
-Fl_Tree.o: ../FL/Fl_Image.H
-Fl_Tree.o: ../FL/Fl_Preferences.H
-Fl_Tree.o: ../FL/Fl_Scrollbar.H
-Fl_Tree.o: ../FL/Fl_Slider.H
-Fl_Tree.o: ../FL/fl_string_functions.h
-Fl_Tree.o: ../FL/Fl_Tree.H
-Fl_Tree.o: ../FL/Fl_Tree_Item.H
-Fl_Tree.o: ../FL/Fl_Tree_Item_Array.H
-Fl_Tree.o: ../FL/Fl_Tree_Prefs.H
-Fl_Tree.o: ../FL/fl_types.h
-Fl_Tree.o: ../FL/fl_utf8.h
-Fl_Tree.o: ../FL/Fl_Valuator.H
-Fl_Tree.o: ../FL/Fl_Widget.H
-Fl_Tree.o: ../FL/platform_types.h
-Fl_Tree_Item.o: ../FL/Enumerations.H
-Fl_Tree_Item.o: ../FL/filename.H
-Fl_Tree_Item.o: ../FL/Fl.H
-Fl_Tree_Item.o: ../FL/fl_attr.h
-Fl_Tree_Item.o: ../FL/Fl_Cairo.H
-Fl_Tree_Item.o: ../FL/fl_casts.H
-Fl_Tree_Item.o: ../FL/fl_config.h
-Fl_Tree_Item.o: ../FL/fl_draw.H
-Fl_Tree_Item.o: ../FL/Fl_Export.H
-Fl_Tree_Item.o: ../FL/Fl_Group.H
-Fl_Tree_Item.o: ../FL/Fl_Image.H
-Fl_Tree_Item.o: ../FL/Fl_Preferences.H
-Fl_Tree_Item.o: ../FL/Fl_Scrollbar.H
-Fl_Tree_Item.o: ../FL/Fl_Slider.H
-Fl_Tree_Item.o: ../FL/fl_string_functions.h
-Fl_Tree_Item.o: ../FL/Fl_Tree.H
-Fl_Tree_Item.o: ../FL/Fl_Tree_Item.H
-Fl_Tree_Item.o: ../FL/Fl_Tree_Item_Array.H
-Fl_Tree_Item.o: ../FL/Fl_Tree_Prefs.H
-Fl_Tree_Item.o: ../FL/fl_types.h
-Fl_Tree_Item.o: ../FL/fl_utf8.h
-Fl_Tree_Item.o: ../FL/Fl_Valuator.H
-Fl_Tree_Item.o: ../FL/Fl_Widget.H
-Fl_Tree_Item.o: ../FL/platform_types.h
-Fl_Tree_Item.o: Fl_System_Driver.H
-Fl_Tree_Item_Array.o: ../FL/Enumerations.H
-Fl_Tree_Item_Array.o: ../FL/Fl.H
-Fl_Tree_Item_Array.o: ../FL/fl_attr.h
-Fl_Tree_Item_Array.o: ../FL/Fl_Cairo.H
-Fl_Tree_Item_Array.o: ../FL/fl_casts.H
-Fl_Tree_Item_Array.o: ../FL/fl_config.h
-Fl_Tree_Item_Array.o: ../FL/fl_draw.H
-Fl_Tree_Item_Array.o: ../FL/Fl_Export.H
-Fl_Tree_Item_Array.o: ../FL/Fl_Image.H
-Fl_Tree_Item_Array.o: ../FL/Fl_Tree_Item.H
-Fl_Tree_Item_Array.o: ../FL/Fl_Tree_Item_Array.H
-Fl_Tree_Item_Array.o: ../FL/Fl_Tree_Prefs.H
-Fl_Tree_Item_Array.o: ../FL/fl_types.h
-Fl_Tree_Item_Array.o: ../FL/fl_utf8.h
-Fl_Tree_Item_Array.o: ../FL/Fl_Widget.H
-Fl_Tree_Item_Array.o: ../FL/platform_types.h
-Fl_Tree_Prefs.o: ../config.h
-Fl_Tree_Prefs.o: ../FL/Enumerations.H
-Fl_Tree_Prefs.o: ../FL/filename.H
-Fl_Tree_Prefs.o: ../FL/Fl.H
-Fl_Tree_Prefs.o: ../FL/fl_attr.h
-Fl_Tree_Prefs.o: ../FL/Fl_Cairo.H
-Fl_Tree_Prefs.o: ../FL/fl_casts.H
-Fl_Tree_Prefs.o: ../FL/fl_config.h
-Fl_Tree_Prefs.o: ../FL/fl_draw.H
-Fl_Tree_Prefs.o: ../FL/Fl_Export.H
-Fl_Tree_Prefs.o: ../FL/Fl_Image.H
-Fl_Tree_Prefs.o: ../FL/Fl_Preferences.H
-Fl_Tree_Prefs.o: ../FL/Fl_Tree_Prefs.H
-Fl_Tree_Prefs.o: ../FL/fl_types.h
-Fl_Tree_Prefs.o: ../FL/fl_utf8.h
-Fl_Tree_Prefs.o: ../FL/Fl_Widget.H
-Fl_Tree_Prefs.o: ../FL/platform_types.h
-Fl_Tree_Prefs.o: Fl_System_Driver.H
-fl_utf8.o: ../FL/Enumerations.H
-fl_utf8.o: ../FL/filename.H
-fl_utf8.o: ../FL/Fl.H
-fl_utf8.o: ../FL/fl_attr.h
-fl_utf8.o: ../FL/Fl_Cairo.H
-fl_utf8.o: ../FL/fl_casts.H
-fl_utf8.o: ../FL/fl_config.h
-fl_utf8.o: ../FL/Fl_Export.H
-fl_utf8.o: ../FL/Fl_Preferences.H
-fl_utf8.o: ../FL/fl_types.h
-fl_utf8.o: ../FL/fl_utf8.h
-fl_utf8.o: ../FL/platform_types.h
-fl_utf8.o: Fl_System_Driver.H
-fl_utf8.o: utf8_internal.h
-fl_utf8.o: xutf8/mk_wcwidth.c
-Fl_Valuator.o: ../config.h
-Fl_Valuator.o: ../FL/Enumerations.H
-Fl_Valuator.o: ../FL/Fl.H
-Fl_Valuator.o: ../FL/fl_attr.h
-Fl_Valuator.o: ../FL/Fl_Cairo.H
-Fl_Valuator.o: ../FL/fl_casts.H
-Fl_Valuator.o: ../FL/fl_config.h
-Fl_Valuator.o: ../FL/Fl_Export.H
-Fl_Valuator.o: ../FL/fl_string_functions.h
-Fl_Valuator.o: ../FL/fl_types.h
-Fl_Valuator.o: ../FL/fl_utf8.h
-Fl_Valuator.o: ../FL/Fl_Valuator.H
-Fl_Valuator.o: ../FL/Fl_Widget.H
-Fl_Valuator.o: ../FL/math.h
-Fl_Valuator.o: ../FL/platform_types.h
-Fl_Valuator.o: flstring.h
-Fl_Value_Input.o: ../FL/Enumerations.H
-Fl_Value_Input.o: ../FL/Fl.H
-Fl_Value_Input.o: ../FL/fl_attr.h
-Fl_Value_Input.o: ../FL/Fl_Cairo.H
-Fl_Value_Input.o: ../FL/fl_casts.H
-Fl_Value_Input.o: ../FL/fl_config.h
-Fl_Value_Input.o: ../FL/Fl_Export.H
-Fl_Value_Input.o: ../FL/Fl_Group.H
-Fl_Value_Input.o: ../FL/Fl_Input.H
-Fl_Value_Input.o: ../FL/Fl_Input_.H
-Fl_Value_Input.o: ../FL/fl_types.h
-Fl_Value_Input.o: ../FL/fl_utf8.h
-Fl_Value_Input.o: ../FL/Fl_Valuator.H
-Fl_Value_Input.o: ../FL/Fl_Value_Input.H
-Fl_Value_Input.o: ../FL/math.h
-Fl_Value_Input.o: ../FL/platform_types.h
-Fl_Value_Output.o: ../FL/Enumerations.H
-Fl_Value_Output.o: ../FL/Fl.H
-Fl_Value_Output.o: ../FL/fl_attr.h
-Fl_Value_Output.o: ../FL/Fl_Cairo.H
-Fl_Value_Output.o: ../FL/fl_casts.H
-Fl_Value_Output.o: ../FL/fl_config.h
-Fl_Value_Output.o: ../FL/fl_draw.H
-Fl_Value_Output.o: ../FL/Fl_Export.H
-Fl_Value_Output.o: ../FL/fl_types.h
-Fl_Value_Output.o: ../FL/fl_utf8.h
-Fl_Value_Output.o: ../FL/Fl_Valuator.H
-Fl_Value_Output.o: ../FL/Fl_Value_Output.H
-Fl_Value_Output.o: ../FL/platform_types.h
-Fl_Value_Slider.o: ../FL/Enumerations.H
-Fl_Value_Slider.o: ../FL/Fl.H
-Fl_Value_Slider.o: ../FL/fl_attr.h
-Fl_Value_Slider.o: ../FL/Fl_Cairo.H
-Fl_Value_Slider.o: ../FL/fl_casts.H
-Fl_Value_Slider.o: ../FL/fl_config.h
-Fl_Value_Slider.o: ../FL/fl_draw.H
-Fl_Value_Slider.o: ../FL/Fl_Export.H
-Fl_Value_Slider.o: ../FL/Fl_Hor_Value_Slider.H
-Fl_Value_Slider.o: ../FL/Fl_Slider.H
-Fl_Value_Slider.o: ../FL/fl_types.h
-Fl_Value_Slider.o: ../FL/fl_utf8.h
-Fl_Value_Slider.o: ../FL/Fl_Valuator.H
-Fl_Value_Slider.o: ../FL/Fl_Value_Slider.H
-Fl_Value_Slider.o: ../FL/platform_types.h
-fl_vertex.o: ../FL/Enumerations.H
-fl_vertex.o: ../FL/Fl.H
-fl_vertex.o: ../FL/fl_attr.h
-fl_vertex.o: ../FL/Fl_Bitmap.H
-fl_vertex.o: ../FL/Fl_Cairo.H
-fl_vertex.o: ../FL/fl_casts.H
-fl_vertex.o: ../FL/fl_config.h
-fl_vertex.o: ../FL/Fl_Device.H
-fl_vertex.o: ../FL/Fl_Export.H
-fl_vertex.o: ../FL/Fl_Graphics_Driver.H
-fl_vertex.o: ../FL/Fl_Image.H
-fl_vertex.o: ../FL/Fl_Pixmap.H
-fl_vertex.o: ../FL/Fl_Plugin.H
-fl_vertex.o: ../FL/Fl_Preferences.H
-fl_vertex.o: ../FL/Fl_RGB_Image.H
-fl_vertex.o: ../FL/fl_types.h
-fl_vertex.o: ../FL/fl_utf8.h
-fl_vertex.o: ../FL/Fl_Widget.H
-fl_vertex.o: ../FL/math.h
-fl_vertex.o: ../FL/platform_types.h
-Fl_visual.o: ../FL/Enumerations.H
-Fl_visual.o: ../FL/Fl.H
-Fl_visual.o: ../FL/fl_attr.h
-Fl_visual.o: ../FL/Fl_Bitmap.H
-Fl_visual.o: ../FL/Fl_Cairo.H
-Fl_visual.o: ../FL/fl_casts.H
-Fl_visual.o: ../FL/fl_config.h
-Fl_visual.o: ../FL/Fl_Device.H
-Fl_visual.o: ../FL/fl_draw.H
-Fl_visual.o: ../FL/Fl_Export.H
-Fl_visual.o: ../FL/Fl_Graphics_Driver.H
-Fl_visual.o: ../FL/Fl_Group.H
-Fl_visual.o: ../FL/Fl_Image.H
-Fl_visual.o: ../FL/Fl_Pixmap.H
-Fl_visual.o: ../FL/Fl_Plugin.H
-Fl_visual.o: ../FL/Fl_Preferences.H
-Fl_visual.o: ../FL/Fl_Rect.H
-Fl_visual.o: ../FL/Fl_RGB_Image.H
-Fl_visual.o: ../FL/Fl_Scrollbar.H
-Fl_visual.o: ../FL/Fl_Slider.H
-Fl_visual.o: ../FL/Fl_Text_Buffer.H
-Fl_visual.o: ../FL/Fl_Text_Display.H
-Fl_visual.o: ../FL/Fl_Text_Editor.H
-Fl_visual.o: ../FL/fl_types.h
-Fl_visual.o: ../FL/fl_utf8.h
-Fl_visual.o: ../FL/Fl_Valuator.H
-Fl_visual.o: ../FL/Fl_Widget.H
-Fl_visual.o: ../FL/platform_types.h
-Fl_visual.o: Fl_Screen_Driver.H
-Fl_Widget.o: ../config.h
-Fl_Widget.o: ../FL/Enumerations.H
-Fl_Widget.o: ../FL/Fl.H
-Fl_Widget.o: ../FL/fl_attr.h
-Fl_Widget.o: ../FL/Fl_Cairo.H
-Fl_Widget.o: ../FL/fl_casts.H
-Fl_Widget.o: ../FL/fl_config.h
-Fl_Widget.o: ../FL/fl_draw.H
-Fl_Widget.o: ../FL/Fl_Export.H
-Fl_Widget.o: ../FL/Fl_Group.H
-Fl_Widget.o: ../FL/fl_string_functions.h
-Fl_Widget.o: ../FL/Fl_Tooltip.H
-Fl_Widget.o: ../FL/fl_types.h
-Fl_Widget.o: ../FL/fl_utf8.h
-Fl_Widget.o: ../FL/Fl_Widget.H
-Fl_Widget.o: ../FL/platform_types.h
-Fl_Widget.o: flstring.h
-Fl_Widget_Surface.o: ../FL/Enumerations.H
-Fl_Widget_Surface.o: ../FL/Fl.H
-Fl_Widget_Surface.o: ../FL/fl_attr.h
-Fl_Widget_Surface.o: ../FL/Fl_Bitmap.H
-Fl_Widget_Surface.o: ../FL/Fl_Cairo.H
-Fl_Widget_Surface.o: ../FL/fl_casts.H
-Fl_Widget_Surface.o: ../FL/fl_config.h
-Fl_Widget_Surface.o: ../FL/Fl_Device.H
-Fl_Widget_Surface.o: ../FL/Fl_Double_Window.H
-Fl_Widget_Surface.o: ../FL/fl_draw.H
-Fl_Widget_Surface.o: ../FL/Fl_Export.H
-Fl_Widget_Surface.o: ../FL/Fl_Graphics_Driver.H
-Fl_Widget_Surface.o: ../FL/Fl_Group.H
-Fl_Widget_Surface.o: ../FL/Fl_Image.H
-Fl_Widget_Surface.o: ../FL/Fl_Overlay_Window.H
-Fl_Widget_Surface.o: ../FL/Fl_Pixmap.H
-Fl_Widget_Surface.o: ../FL/Fl_Plugin.H
-Fl_Widget_Surface.o: ../FL/Fl_Preferences.H
-Fl_Widget_Surface.o: ../FL/Fl_Rect.H
-Fl_Widget_Surface.o: ../FL/Fl_RGB_Image.H
-Fl_Widget_Surface.o: ../FL/Fl_Scrollbar.H
-Fl_Widget_Surface.o: ../FL/Fl_Slider.H
-Fl_Widget_Surface.o: ../FL/Fl_Text_Buffer.H
-Fl_Widget_Surface.o: ../FL/Fl_Text_Display.H
-Fl_Widget_Surface.o: ../FL/Fl_Text_Editor.H
-Fl_Widget_Surface.o: ../FL/fl_types.h
-Fl_Widget_Surface.o: ../FL/fl_utf8.h
-Fl_Widget_Surface.o: ../FL/Fl_Valuator.H
-Fl_Widget_Surface.o: ../FL/Fl_Widget.H
-Fl_Widget_Surface.o: ../FL/Fl_Widget_Surface.H
-Fl_Widget_Surface.o: ../FL/Fl_Window.H
-Fl_Widget_Surface.o: ../FL/platform.H
-Fl_Widget_Surface.o: ../FL/platform_types.h
-Fl_Widget_Surface.o: ../FL/x11.H
-Fl_Widget_Surface.o: Fl_Screen_Driver.H
-Fl_Widget_Surface.o: Fl_Window_Driver.H
-Fl_Window.o: ../config.h
-Fl_Window.o: ../FL/Enumerations.H
-Fl_Window.o: ../FL/Fl.H
-Fl_Window.o: ../FL/fl_attr.h
-Fl_Window.o: ../FL/Fl_Bitmap.H
-Fl_Window.o: ../FL/Fl_Cairo.H
-Fl_Window.o: ../FL/fl_casts.H
-Fl_Window.o: ../FL/fl_config.h
-Fl_Window.o: ../FL/Fl_Device.H
-Fl_Window.o: ../FL/Fl_Double_Window.H
-Fl_Window.o: ../FL/fl_draw.H
-Fl_Window.o: ../FL/Fl_Export.H
-Fl_Window.o: ../FL/Fl_Graphics_Driver.H
-Fl_Window.o: ../FL/Fl_Group.H
-Fl_Window.o: ../FL/Fl_Image.H
-Fl_Window.o: ../FL/Fl_Overlay_Window.H
-Fl_Window.o: ../FL/Fl_Pixmap.H
-Fl_Window.o: ../FL/Fl_Plugin.H
-Fl_Window.o: ../FL/Fl_Preferences.H
-Fl_Window.o: ../FL/Fl_Rect.H
-Fl_Window.o: ../FL/Fl_RGB_Image.H
-Fl_Window.o: ../FL/Fl_Scrollbar.H
-Fl_Window.o: ../FL/Fl_Slider.H
-Fl_Window.o: ../FL/fl_string_functions.h
-Fl_Window.o: ../FL/Fl_Text_Buffer.H
-Fl_Window.o: ../FL/Fl_Text_Display.H
-Fl_Window.o: ../FL/Fl_Text_Editor.H
-Fl_Window.o: ../FL/Fl_Tooltip.H
-Fl_Window.o: ../FL/fl_types.h
-Fl_Window.o: ../FL/fl_utf8.h
-Fl_Window.o: ../FL/Fl_Valuator.H
-Fl_Window.o: ../FL/Fl_Widget.H
-Fl_Window.o: ../FL/Fl_Window.H
-Fl_Window.o: ../FL/platform.H
-Fl_Window.o: ../FL/platform_types.h
-Fl_Window.o: ../FL/x11.H
-Fl_Window.o: flstring.h
-Fl_Window.o: Fl_Screen_Driver.H
-Fl_Window.o: Fl_Window_Driver.H
-Fl_Window_Driver.o: ../FL/Enumerations.H
-Fl_Window_Driver.o: ../FL/Fl.H
-Fl_Window_Driver.o: ../FL/fl_attr.h
-Fl_Window_Driver.o: ../FL/Fl_Bitmap.H
-Fl_Window_Driver.o: ../FL/Fl_Cairo.H
-Fl_Window_Driver.o: ../FL/fl_casts.H
-Fl_Window_Driver.o: ../FL/fl_config.h
-Fl_Window_Driver.o: ../FL/Fl_Device.H
-Fl_Window_Driver.o: ../FL/Fl_Double_Window.H
-Fl_Window_Driver.o: ../FL/fl_draw.H
-Fl_Window_Driver.o: ../FL/Fl_Export.H
-Fl_Window_Driver.o: ../FL/Fl_Graphics_Driver.H
-Fl_Window_Driver.o: ../FL/Fl_Group.H
-Fl_Window_Driver.o: ../FL/Fl_Image.H
-Fl_Window_Driver.o: ../FL/Fl_Image_Surface.H
-Fl_Window_Driver.o: ../FL/Fl_Overlay_Window.H
-Fl_Window_Driver.o: ../FL/Fl_Pixmap.H
-Fl_Window_Driver.o: ../FL/Fl_Plugin.H
-Fl_Window_Driver.o: ../FL/Fl_Preferences.H
-Fl_Window_Driver.o: ../FL/Fl_Rect.H
-Fl_Window_Driver.o: ../FL/Fl_RGB_Image.H
-Fl_Window_Driver.o: ../FL/Fl_Scrollbar.H
-Fl_Window_Driver.o: ../FL/Fl_Shared_Image.H
-Fl_Window_Driver.o: ../FL/Fl_Slider.H
-Fl_Window_Driver.o: ../FL/Fl_Text_Buffer.H
-Fl_Window_Driver.o: ../FL/Fl_Text_Display.H
-Fl_Window_Driver.o: ../FL/Fl_Text_Editor.H
-Fl_Window_Driver.o: ../FL/fl_types.h
-Fl_Window_Driver.o: ../FL/fl_utf8.h
-Fl_Window_Driver.o: ../FL/Fl_Valuator.H
-Fl_Window_Driver.o: ../FL/Fl_Widget.H
-Fl_Window_Driver.o: ../FL/Fl_Widget_Surface.H
-Fl_Window_Driver.o: ../FL/Fl_Window.H
-Fl_Window_Driver.o: ../FL/platform.H
-Fl_Window_Driver.o: ../FL/platform_types.h
-Fl_Window_Driver.o: ../FL/x11.H
-Fl_Window_Driver.o: Fl_Screen_Driver.H
-Fl_Window_Driver.o: Fl_Window_Driver.H
-Fl_Window_fullscreen.o: ../FL/Enumerations.H
-Fl_Window_fullscreen.o: ../FL/Fl.H
-Fl_Window_fullscreen.o: ../FL/fl_attr.h
-Fl_Window_fullscreen.o: ../FL/Fl_Bitmap.H
-Fl_Window_fullscreen.o: ../FL/Fl_Cairo.H
-Fl_Window_fullscreen.o: ../FL/fl_casts.H
-Fl_Window_fullscreen.o: ../FL/fl_config.h
-Fl_Window_fullscreen.o: ../FL/Fl_Double_Window.H
-Fl_Window_fullscreen.o: ../FL/Fl_Export.H
-Fl_Window_fullscreen.o: ../FL/Fl_Group.H
-Fl_Window_fullscreen.o: ../FL/Fl_Image.H
-Fl_Window_fullscreen.o: ../FL/Fl_Overlay_Window.H
-Fl_Window_fullscreen.o: ../FL/fl_types.h
-Fl_Window_fullscreen.o: ../FL/fl_utf8.h
-Fl_Window_fullscreen.o: ../FL/Fl_Widget.H
-Fl_Window_fullscreen.o: ../FL/Fl_Window.H
-Fl_Window_fullscreen.o: ../FL/platform_types.h
-Fl_Window_fullscreen.o: Fl_Window_Driver.H
-Fl_Window_hotspot.o: ../FL/Enumerations.H
-Fl_Window_hotspot.o: ../FL/Fl.H
-Fl_Window_hotspot.o: ../FL/fl_attr.h
-Fl_Window_hotspot.o: ../FL/Fl_Bitmap.H
-Fl_Window_hotspot.o: ../FL/Fl_Cairo.H
-Fl_Window_hotspot.o: ../FL/fl_casts.H
-Fl_Window_hotspot.o: ../FL/fl_config.h
-Fl_Window_hotspot.o: ../FL/Fl_Double_Window.H
-Fl_Window_hotspot.o: ../FL/Fl_Export.H
-Fl_Window_hotspot.o: ../FL/Fl_Group.H
-Fl_Window_hotspot.o: ../FL/Fl_Image.H
-Fl_Window_hotspot.o: ../FL/Fl_Overlay_Window.H
-Fl_Window_hotspot.o: ../FL/fl_types.h
-Fl_Window_hotspot.o: ../FL/fl_utf8.h
-Fl_Window_hotspot.o: ../FL/Fl_Widget.H
-Fl_Window_hotspot.o: ../FL/Fl_Window.H
-Fl_Window_hotspot.o: ../FL/platform_types.h
-Fl_Window_hotspot.o: Fl_Window_Driver.H
-Fl_Window_iconize.o: ../FL/Enumerations.H
-Fl_Window_iconize.o: ../FL/Fl.H
-Fl_Window_iconize.o: ../FL/fl_attr.h
-Fl_Window_iconize.o: ../FL/Fl_Bitmap.H
-Fl_Window_iconize.o: ../FL/Fl_Cairo.H
-Fl_Window_iconize.o: ../FL/fl_casts.H
-Fl_Window_iconize.o: ../FL/fl_config.h
-Fl_Window_iconize.o: ../FL/Fl_Double_Window.H
-Fl_Window_iconize.o: ../FL/Fl_Export.H
-Fl_Window_iconize.o: ../FL/Fl_Group.H
-Fl_Window_iconize.o: ../FL/Fl_Image.H
-Fl_Window_iconize.o: ../FL/Fl_Overlay_Window.H
-Fl_Window_iconize.o: ../FL/fl_types.h
-Fl_Window_iconize.o: ../FL/fl_utf8.h
-Fl_Window_iconize.o: ../FL/Fl_Widget.H
-Fl_Window_iconize.o: ../FL/Fl_Window.H
-Fl_Window_iconize.o: ../FL/platform_types.h
-Fl_Window_iconize.o: Fl_Window_Driver.H
-Fl_Wizard.o: ../FL/Enumerations.H
-Fl_Wizard.o: ../FL/Fl.H
-Fl_Wizard.o: ../FL/fl_attr.h
-Fl_Wizard.o: ../FL/Fl_Bitmap.H
-Fl_Wizard.o: ../FL/Fl_Cairo.H
-Fl_Wizard.o: ../FL/fl_casts.H
-Fl_Wizard.o: ../FL/fl_config.h
-Fl_Wizard.o: ../FL/fl_draw.H
-Fl_Wizard.o: ../FL/Fl_Export.H
-Fl_Wizard.o: ../FL/Fl_Group.H
-Fl_Wizard.o: ../FL/Fl_Image.H
-Fl_Wizard.o: ../FL/fl_types.h
-Fl_Wizard.o: ../FL/fl_utf8.h
-Fl_Wizard.o: ../FL/Fl_Widget.H
-Fl_Wizard.o: ../FL/Fl_Window.H
-Fl_Wizard.o: ../FL/Fl_Wizard.H
-Fl_Wizard.o: ../FL/platform_types.h
-fl_write_png.o: ../config.h
-fl_write_png.o: ../FL/fl_config.h
-fl_write_png.o: ../FL/Fl_Export.H
-fl_write_png.o: ../FL/Fl_Image.H
-fl_write_png.o: ../FL/Fl_PNG_Image.H
-fl_write_png.o: ../FL/Fl_RGB_Image.H
-fl_write_png.o: ../FL/fl_string_functions.h
-fl_write_png.o: ../FL/fl_utf8.h
-Fl_x.o: ../config.h
-Fl_x.o: ../FL/Enumerations.H
-Fl_x.o: ../FL/filename.H
-Fl_x.o: ../FL/Fl.H
-Fl_x.o: ../FL/fl_ask.H
-Fl_x.o: ../FL/fl_attr.h
-Fl_x.o: ../FL/Fl_Bitmap.H
-Fl_x.o: ../FL/Fl_Cairo.H
-Fl_x.o: ../FL/fl_casts.H
-Fl_x.o: ../FL/fl_config.h
-Fl_x.o: ../FL/Fl_Device.H
-Fl_x.o: ../FL/Fl_Double_Window.H
-Fl_x.o: ../FL/fl_draw.H
-Fl_x.o: ../FL/Fl_Export.H
-Fl_x.o: ../FL/Fl_Graphics_Driver.H
-Fl_x.o: ../FL/Fl_Group.H
-Fl_x.o: ../FL/Fl_Image.H
-Fl_x.o: ../FL/Fl_Overlay_Window.H
-Fl_x.o: ../FL/Fl_Paged_Device.H
-Fl_x.o: ../FL/Fl_Pixmap.H
-Fl_x.o: ../FL/Fl_Plugin.H
-Fl_x.o: ../FL/Fl_Preferences.H
-Fl_x.o: ../FL/Fl_Rect.H
-Fl_x.o: ../FL/Fl_RGB_Image.H
-Fl_x.o: ../FL/Fl_Scrollbar.H
-Fl_x.o: ../FL/Fl_Shared_Image.H
-Fl_x.o: ../FL/Fl_Slider.H
-Fl_x.o: ../FL/fl_string_functions.h
-Fl_x.o: ../FL/Fl_Text_Buffer.H
-Fl_x.o: ../FL/Fl_Text_Display.H
-Fl_x.o: ../FL/Fl_Text_Editor.H
-Fl_x.o: ../FL/Fl_Tooltip.H
-Fl_x.o: ../FL/fl_types.h
-Fl_x.o: ../FL/fl_utf8.h
-Fl_x.o: ../FL/Fl_Valuator.H
-Fl_x.o: ../FL/Fl_Widget.H
-Fl_x.o: ../FL/Fl_Widget_Surface.H
-Fl_x.o: ../FL/Fl_Window.H
-Fl_x.o: ../FL/platform.H
-Fl_x.o: ../FL/platform_types.h
-Fl_x.o: ../FL/x11.H
-Fl_x.o: drivers/Posix/Fl_Posix_System_Driver.H
-Fl_x.o: drivers/Unix/Fl_Unix_Screen_Driver.H
-Fl_x.o: drivers/Unix/Fl_Unix_System_Driver.H
-Fl_x.o: drivers/X11/Fl_X11_Screen_Driver.H
-Fl_x.o: drivers/X11/Fl_X11_Window_Driver.H
-Fl_x.o: drivers/Xlib/Fl_Xlib_Graphics_Driver.H
-Fl_x.o: flstring.h
-Fl_x.o: Fl_Screen_Driver.H
-Fl_x.o: Fl_System_Driver.H
-Fl_x.o: Fl_Window_Driver.H
-Fl_x.o: print_button.h
-Fl_x.o: Xutf8.h
-Fl_XBM_Image.o: ../config.h
-Fl_XBM_Image.o: ../FL/Enumerations.H
-Fl_XBM_Image.o: ../FL/Fl.H
-Fl_XBM_Image.o: ../FL/fl_attr.h
-Fl_XBM_Image.o: ../FL/Fl_Bitmap.H
-Fl_XBM_Image.o: ../FL/Fl_Cairo.H
-Fl_XBM_Image.o: ../FL/fl_casts.H
-Fl_XBM_Image.o: ../FL/fl_config.h
-Fl_XBM_Image.o: ../FL/Fl_Export.H
-Fl_XBM_Image.o: ../FL/Fl_Image.H
-Fl_XBM_Image.o: ../FL/fl_string_functions.h
-Fl_XBM_Image.o: ../FL/fl_types.h
-Fl_XBM_Image.o: ../FL/fl_utf8.h
-Fl_XBM_Image.o: ../FL/Fl_Widget.H
-Fl_XBM_Image.o: ../FL/Fl_XBM_Image.H
-Fl_XBM_Image.o: ../FL/platform_types.h
-Fl_XBM_Image.o: flstring.h
-Fl_XPM_Image.o: ../config.h
-Fl_XPM_Image.o: ../FL/Enumerations.H
-Fl_XPM_Image.o: ../FL/Fl.H
-Fl_XPM_Image.o: ../FL/fl_attr.h
-Fl_XPM_Image.o: ../FL/Fl_Cairo.H
-Fl_XPM_Image.o: ../FL/fl_casts.H
-Fl_XPM_Image.o: ../FL/fl_config.h
-Fl_XPM_Image.o: ../FL/Fl_Export.H
-Fl_XPM_Image.o: ../FL/Fl_Image.H
-Fl_XPM_Image.o: ../FL/Fl_Pixmap.H
-Fl_XPM_Image.o: ../FL/fl_string_functions.h
-Fl_XPM_Image.o: ../FL/fl_types.h
-Fl_XPM_Image.o: ../FL/fl_utf8.h
-Fl_XPM_Image.o: ../FL/Fl_XPM_Image.H
-Fl_XPM_Image.o: ../FL/platform_types.h
-Fl_XPM_Image.o: flstring.h
-forms_bitmap.o: ../FL/Enumerations.H
-forms_bitmap.o: ../FL/filename.H
-forms_bitmap.o: ../FL/Fl.H
-forms_bitmap.o: ../FL/fl_ask.H
-forms_bitmap.o: ../FL/fl_attr.h
-forms_bitmap.o: ../FL/Fl_Bitmap.H
-forms_bitmap.o: ../FL/Fl_Box.H
-forms_bitmap.o: ../FL/Fl_Browser.H
-forms_bitmap.o: ../FL/Fl_Button.H
-forms_bitmap.o: ../FL/Fl_Cairo.H
-forms_bitmap.o: ../FL/fl_casts.H
-forms_bitmap.o: ../FL/Fl_Chart.H
-forms_bitmap.o: ../FL/Fl_Check_Button.H
-forms_bitmap.o: ../FL/Fl_Choice.H
-forms_bitmap.o: ../FL/Fl_Clock.H
-forms_bitmap.o: ../FL/fl_config.h
-forms_bitmap.o: ../FL/Fl_Counter.H
-forms_bitmap.o: ../FL/Fl_Device.H
-forms_bitmap.o: ../FL/Fl_Dial.H
-forms_bitmap.o: ../FL/Fl_Double_Window.H
-forms_bitmap.o: ../FL/fl_draw.H
-forms_bitmap.o: ../FL/Fl_Export.H
-forms_bitmap.o: ../FL/Fl_File_Browser.H
-forms_bitmap.o: ../FL/Fl_File_Chooser.H
-forms_bitmap.o: ../FL/Fl_File_Icon.H
-forms_bitmap.o: ../FL/Fl_File_Input.H
-forms_bitmap.o: ../FL/Fl_FormsBitmap.H
-forms_bitmap.o: ../FL/Fl_FormsPixmap.H
-forms_bitmap.o: ../FL/Fl_Free.H
-forms_bitmap.o: ../FL/Fl_Graphics_Driver.H
-forms_bitmap.o: ../FL/Fl_Group.H
-forms_bitmap.o: ../FL/Fl_Image.H
-forms_bitmap.o: ../FL/Fl_Input.H
-forms_bitmap.o: ../FL/Fl_Input_.H
-forms_bitmap.o: ../FL/Fl_Light_Button.H
-forms_bitmap.o: ../FL/Fl_Menu_.H
-forms_bitmap.o: ../FL/Fl_Menu_Button.H
-forms_bitmap.o: ../FL/Fl_Menu_Item.H
-forms_bitmap.o: ../FL/Fl_Multi_Label.H
-forms_bitmap.o: ../FL/Fl_Pixmap.H
-forms_bitmap.o: ../FL/Fl_Plugin.H
-forms_bitmap.o: ../FL/Fl_Positioner.H
-forms_bitmap.o: ../FL/Fl_Preferences.H
-forms_bitmap.o: ../FL/Fl_Rect.H
-forms_bitmap.o: ../FL/Fl_Return_Button.H
-forms_bitmap.o: ../FL/Fl_RGB_Image.H
-forms_bitmap.o: ../FL/Fl_Round_Button.H
-forms_bitmap.o: ../FL/fl_show_colormap.H
-forms_bitmap.o: ../FL/Fl_Slider.H
-forms_bitmap.o: ../FL/Fl_Tile.H
-forms_bitmap.o: ../FL/Fl_Timer.H
-forms_bitmap.o: ../FL/fl_types.h
-forms_bitmap.o: ../FL/fl_utf8.h
-forms_bitmap.o: ../FL/Fl_Valuator.H
-forms_bitmap.o: ../FL/Fl_Value_Slider.H
-forms_bitmap.o: ../FL/Fl_Widget.H
-forms_bitmap.o: ../FL/Fl_Window.H
-forms_bitmap.o: ../FL/forms.H
-forms_bitmap.o: ../FL/platform_types.h
-forms_compatibility.o: ../FL/Enumerations.H
-forms_compatibility.o: ../FL/filename.H
-forms_compatibility.o: ../FL/Fl.H
-forms_compatibility.o: ../FL/fl_ask.H
-forms_compatibility.o: ../FL/fl_attr.h
-forms_compatibility.o: ../FL/Fl_Bitmap.H
-forms_compatibility.o: ../FL/Fl_Box.H
-forms_compatibility.o: ../FL/Fl_Browser.H
-forms_compatibility.o: ../FL/Fl_Button.H
-forms_compatibility.o: ../FL/Fl_Cairo.H
-forms_compatibility.o: ../FL/fl_casts.H
-forms_compatibility.o: ../FL/Fl_Chart.H
-forms_compatibility.o: ../FL/Fl_Check_Button.H
-forms_compatibility.o: ../FL/Fl_Choice.H
-forms_compatibility.o: ../FL/Fl_Clock.H
-forms_compatibility.o: ../FL/fl_config.h
-forms_compatibility.o: ../FL/Fl_Counter.H
-forms_compatibility.o: ../FL/Fl_Device.H
-forms_compatibility.o: ../FL/Fl_Dial.H
-forms_compatibility.o: ../FL/Fl_Double_Window.H
-forms_compatibility.o: ../FL/fl_draw.H
-forms_compatibility.o: ../FL/Fl_Export.H
-forms_compatibility.o: ../FL/Fl_File_Browser.H
-forms_compatibility.o: ../FL/Fl_File_Chooser.H
-forms_compatibility.o: ../FL/Fl_File_Icon.H
-forms_compatibility.o: ../FL/Fl_File_Input.H
-forms_compatibility.o: ../FL/Fl_FormsBitmap.H
-forms_compatibility.o: ../FL/Fl_FormsPixmap.H
-forms_compatibility.o: ../FL/Fl_Free.H
-forms_compatibility.o: ../FL/Fl_Graphics_Driver.H
-forms_compatibility.o: ../FL/Fl_Group.H
-forms_compatibility.o: ../FL/Fl_Image.H
-forms_compatibility.o: ../FL/Fl_Input.H
-forms_compatibility.o: ../FL/Fl_Input_.H
-forms_compatibility.o: ../FL/Fl_Light_Button.H
-forms_compatibility.o: ../FL/Fl_Menu_.H
-forms_compatibility.o: ../FL/Fl_Menu_Button.H
-forms_compatibility.o: ../FL/Fl_Menu_Item.H
-forms_compatibility.o: ../FL/Fl_Multi_Label.H
-forms_compatibility.o: ../FL/Fl_Pixmap.H
-forms_compatibility.o: ../FL/Fl_Plugin.H
-forms_compatibility.o: ../FL/Fl_Positioner.H
-forms_compatibility.o: ../FL/Fl_Preferences.H
-forms_compatibility.o: ../FL/Fl_Rect.H
-forms_compatibility.o: ../FL/Fl_Repeat_Button.H
-forms_compatibility.o: ../FL/Fl_Return_Button.H
-forms_compatibility.o: ../FL/Fl_RGB_Image.H
-forms_compatibility.o: ../FL/Fl_Round_Button.H
-forms_compatibility.o: ../FL/fl_show_colormap.H
-forms_compatibility.o: ../FL/Fl_Slider.H
-forms_compatibility.o: ../FL/Fl_Tile.H
-forms_compatibility.o: ../FL/Fl_Timer.H
-forms_compatibility.o: ../FL/fl_types.h
-forms_compatibility.o: ../FL/fl_utf8.h
-forms_compatibility.o: ../FL/Fl_Valuator.H
-forms_compatibility.o: ../FL/Fl_Value_Slider.H
-forms_compatibility.o: ../FL/Fl_Widget.H
-forms_compatibility.o: ../FL/Fl_Window.H
-forms_compatibility.o: ../FL/forms.H
-forms_compatibility.o: ../FL/platform_types.h
-forms_free.o: ../FL/Enumerations.H
-forms_free.o: ../FL/Fl.H
-forms_free.o: ../FL/fl_attr.h
-forms_free.o: ../FL/Fl_Cairo.H
-forms_free.o: ../FL/fl_casts.H
-forms_free.o: ../FL/fl_config.h
-forms_free.o: ../FL/Fl_Export.H
-forms_free.o: ../FL/Fl_Free.H
-forms_free.o: ../FL/fl_types.h
-forms_free.o: ../FL/fl_utf8.h
-forms_free.o: ../FL/Fl_Widget.H
-forms_free.o: ../FL/platform_types.h
-forms_fselect.o: ../config.h
-forms_fselect.o: ../FL/Enumerations.H
-forms_fselect.o: ../FL/filename.H
-forms_fselect.o: ../FL/Fl.H
-forms_fselect.o: ../FL/fl_ask.H
-forms_fselect.o: ../FL/fl_attr.h
-forms_fselect.o: ../FL/Fl_Bitmap.H
-forms_fselect.o: ../FL/Fl_Box.H
-forms_fselect.o: ../FL/Fl_Browser.H
-forms_fselect.o: ../FL/Fl_Button.H
-forms_fselect.o: ../FL/Fl_Cairo.H
-forms_fselect.o: ../FL/fl_casts.H
-forms_fselect.o: ../FL/Fl_Chart.H
-forms_fselect.o: ../FL/Fl_Check_Button.H
-forms_fselect.o: ../FL/Fl_Choice.H
-forms_fselect.o: ../FL/Fl_Clock.H
-forms_fselect.o: ../FL/fl_config.h
-forms_fselect.o: ../FL/Fl_Counter.H
-forms_fselect.o: ../FL/Fl_Device.H
-forms_fselect.o: ../FL/Fl_Dial.H
-forms_fselect.o: ../FL/Fl_Double_Window.H
-forms_fselect.o: ../FL/fl_draw.H
-forms_fselect.o: ../FL/Fl_Export.H
-forms_fselect.o: ../FL/Fl_File_Browser.H
-forms_fselect.o: ../FL/Fl_File_Chooser.H
-forms_fselect.o: ../FL/Fl_File_Icon.H
-forms_fselect.o: ../FL/Fl_File_Input.H
-forms_fselect.o: ../FL/Fl_FormsBitmap.H
-forms_fselect.o: ../FL/Fl_FormsPixmap.H
-forms_fselect.o: ../FL/Fl_Free.H
-forms_fselect.o: ../FL/Fl_Graphics_Driver.H
-forms_fselect.o: ../FL/Fl_Group.H
-forms_fselect.o: ../FL/Fl_Image.H
-forms_fselect.o: ../FL/Fl_Input.H
-forms_fselect.o: ../FL/Fl_Input_.H
-forms_fselect.o: ../FL/Fl_Light_Button.H
-forms_fselect.o: ../FL/Fl_Menu_.H
-forms_fselect.o: ../FL/Fl_Menu_Button.H
-forms_fselect.o: ../FL/Fl_Menu_Item.H
-forms_fselect.o: ../FL/Fl_Multi_Label.H
-forms_fselect.o: ../FL/Fl_Pixmap.H
-forms_fselect.o: ../FL/Fl_Plugin.H
-forms_fselect.o: ../FL/Fl_Positioner.H
-forms_fselect.o: ../FL/Fl_Preferences.H
-forms_fselect.o: ../FL/Fl_Rect.H
-forms_fselect.o: ../FL/Fl_Return_Button.H
-forms_fselect.o: ../FL/Fl_RGB_Image.H
-forms_fselect.o: ../FL/Fl_Round_Button.H
-forms_fselect.o: ../FL/fl_show_colormap.H
-forms_fselect.o: ../FL/Fl_Slider.H
-forms_fselect.o: ../FL/fl_string_functions.h
-forms_fselect.o: ../FL/Fl_Tile.H
-forms_fselect.o: ../FL/Fl_Timer.H
-forms_fselect.o: ../FL/fl_types.h
-forms_fselect.o: ../FL/fl_utf8.h
-forms_fselect.o: ../FL/Fl_Valuator.H
-forms_fselect.o: ../FL/Fl_Value_Slider.H
-forms_fselect.o: ../FL/Fl_Widget.H
-forms_fselect.o: ../FL/Fl_Window.H
-forms_fselect.o: ../FL/forms.H
-forms_fselect.o: ../FL/platform_types.h
-forms_fselect.o: flstring.h
-forms_pixmap.o: ../FL/Enumerations.H
-forms_pixmap.o: ../FL/filename.H
-forms_pixmap.o: ../FL/Fl.H
-forms_pixmap.o: ../FL/fl_ask.H
-forms_pixmap.o: ../FL/fl_attr.h
-forms_pixmap.o: ../FL/Fl_Bitmap.H
-forms_pixmap.o: ../FL/Fl_Box.H
-forms_pixmap.o: ../FL/Fl_Browser.H
-forms_pixmap.o: ../FL/Fl_Button.H
-forms_pixmap.o: ../FL/Fl_Cairo.H
-forms_pixmap.o: ../FL/fl_casts.H
-forms_pixmap.o: ../FL/Fl_Chart.H
-forms_pixmap.o: ../FL/Fl_Check_Button.H
-forms_pixmap.o: ../FL/Fl_Choice.H
-forms_pixmap.o: ../FL/Fl_Clock.H
-forms_pixmap.o: ../FL/fl_config.h
-forms_pixmap.o: ../FL/Fl_Counter.H
-forms_pixmap.o: ../FL/Fl_Device.H
-forms_pixmap.o: ../FL/Fl_Dial.H
-forms_pixmap.o: ../FL/Fl_Double_Window.H
-forms_pixmap.o: ../FL/fl_draw.H
-forms_pixmap.o: ../FL/Fl_Export.H
-forms_pixmap.o: ../FL/Fl_File_Browser.H
-forms_pixmap.o: ../FL/Fl_File_Chooser.H
-forms_pixmap.o: ../FL/Fl_File_Icon.H
-forms_pixmap.o: ../FL/Fl_File_Input.H
-forms_pixmap.o: ../FL/Fl_FormsBitmap.H
-forms_pixmap.o: ../FL/Fl_FormsPixmap.H
-forms_pixmap.o: ../FL/Fl_Free.H
-forms_pixmap.o: ../FL/Fl_Graphics_Driver.H
-forms_pixmap.o: ../FL/Fl_Group.H
-forms_pixmap.o: ../FL/Fl_Image.H
-forms_pixmap.o: ../FL/Fl_Input.H
-forms_pixmap.o: ../FL/Fl_Input_.H
-forms_pixmap.o: ../FL/Fl_Light_Button.H
-forms_pixmap.o: ../FL/Fl_Menu_.H
-forms_pixmap.o: ../FL/Fl_Menu_Button.H
-forms_pixmap.o: ../FL/Fl_Menu_Item.H
-forms_pixmap.o: ../FL/Fl_Multi_Label.H
-forms_pixmap.o: ../FL/Fl_Pixmap.H
-forms_pixmap.o: ../FL/Fl_Plugin.H
-forms_pixmap.o: ../FL/Fl_Positioner.H
-forms_pixmap.o: ../FL/Fl_Preferences.H
-forms_pixmap.o: ../FL/Fl_Rect.H
-forms_pixmap.o: ../FL/Fl_Return_Button.H
-forms_pixmap.o: ../FL/Fl_RGB_Image.H
-forms_pixmap.o: ../FL/Fl_Round_Button.H
-forms_pixmap.o: ../FL/fl_show_colormap.H
-forms_pixmap.o: ../FL/Fl_Slider.H
-forms_pixmap.o: ../FL/Fl_Tile.H
-forms_pixmap.o: ../FL/Fl_Timer.H
-forms_pixmap.o: ../FL/fl_types.h
-forms_pixmap.o: ../FL/fl_utf8.h
-forms_pixmap.o: ../FL/Fl_Valuator.H
-forms_pixmap.o: ../FL/Fl_Value_Slider.H
-forms_pixmap.o: ../FL/Fl_Widget.H
-forms_pixmap.o: ../FL/Fl_Window.H
-forms_pixmap.o: ../FL/forms.H
-forms_pixmap.o: ../FL/platform_types.h
-forms_timer.o: ../FL/Enumerations.H
-forms_timer.o: ../FL/filename.H
-forms_timer.o: ../FL/Fl.H
-forms_timer.o: ../FL/fl_ask.H
-forms_timer.o: ../FL/fl_attr.h
-forms_timer.o: ../FL/Fl_Bitmap.H
-forms_timer.o: ../FL/Fl_Box.H
-forms_timer.o: ../FL/Fl_Browser.H
-forms_timer.o: ../FL/Fl_Button.H
-forms_timer.o: ../FL/Fl_Cairo.H
-forms_timer.o: ../FL/fl_casts.H
-forms_timer.o: ../FL/Fl_Chart.H
-forms_timer.o: ../FL/Fl_Check_Button.H
-forms_timer.o: ../FL/Fl_Choice.H
-forms_timer.o: ../FL/Fl_Clock.H
-forms_timer.o: ../FL/fl_config.h
-forms_timer.o: ../FL/Fl_Counter.H
-forms_timer.o: ../FL/Fl_Device.H
-forms_timer.o: ../FL/Fl_Dial.H
-forms_timer.o: ../FL/Fl_Double_Window.H
-forms_timer.o: ../FL/fl_draw.H
-forms_timer.o: ../FL/Fl_Export.H
-forms_timer.o: ../FL/Fl_File_Browser.H
-forms_timer.o: ../FL/Fl_File_Chooser.H
-forms_timer.o: ../FL/Fl_File_Icon.H
-forms_timer.o: ../FL/Fl_File_Input.H
-forms_timer.o: ../FL/Fl_FormsBitmap.H
-forms_timer.o: ../FL/Fl_FormsPixmap.H
-forms_timer.o: ../FL/Fl_Free.H
-forms_timer.o: ../FL/Fl_Graphics_Driver.H
-forms_timer.o: ../FL/Fl_Group.H
-forms_timer.o: ../FL/Fl_Image.H
-forms_timer.o: ../FL/Fl_Input.H
-forms_timer.o: ../FL/Fl_Input_.H
-forms_timer.o: ../FL/Fl_Light_Button.H
-forms_timer.o: ../FL/Fl_Menu_.H
-forms_timer.o: ../FL/Fl_Menu_Button.H
-forms_timer.o: ../FL/Fl_Menu_Item.H
-forms_timer.o: ../FL/Fl_Multi_Label.H
-forms_timer.o: ../FL/Fl_Pixmap.H
-forms_timer.o: ../FL/Fl_Plugin.H
-forms_timer.o: ../FL/Fl_Positioner.H
-forms_timer.o: ../FL/Fl_Preferences.H
-forms_timer.o: ../FL/Fl_Rect.H
-forms_timer.o: ../FL/Fl_Return_Button.H
-forms_timer.o: ../FL/Fl_RGB_Image.H
-forms_timer.o: ../FL/Fl_Round_Button.H
-forms_timer.o: ../FL/fl_show_colormap.H
-forms_timer.o: ../FL/Fl_Slider.H
-forms_timer.o: ../FL/Fl_Tile.H
-forms_timer.o: ../FL/Fl_Timer.H
-forms_timer.o: ../FL/fl_types.h
-forms_timer.o: ../FL/fl_utf8.h
-forms_timer.o: ../FL/Fl_Valuator.H
-forms_timer.o: ../FL/Fl_Value_Slider.H
-forms_timer.o: ../FL/Fl_Widget.H
-forms_timer.o: ../FL/Fl_Window.H
-forms_timer.o: ../FL/forms.H
-forms_timer.o: ../FL/platform_types.h
-forms_timer.o: Fl_System_Driver.H
-freeglut_geometry.o: ../FL/Fl.H
-freeglut_geometry.o: ../FL/Fl_Gl_Window.H
-freeglut_geometry.o: ../FL/Fl_Window.H
-freeglut_geometry.o: ../FL/gl.h
-freeglut_geometry.o: ../FL/glut.H
-freeglut_geometry.o: ../FL/math.h
-freeglut_stroke_mono_roman.o: ../FL/Fl.H
-freeglut_stroke_mono_roman.o: ../FL/Fl_Gl_Window.H
-freeglut_stroke_mono_roman.o: ../FL/Fl_Window.H
-freeglut_stroke_mono_roman.o: ../FL/gl.h
-freeglut_stroke_mono_roman.o: ../FL/glut.H
-freeglut_stroke_roman.o: ../FL/Fl.H
-freeglut_stroke_roman.o: ../FL/Fl_Gl_Window.H
-freeglut_stroke_roman.o: ../FL/Fl_Window.H
-freeglut_stroke_roman.o: ../FL/gl.h
-freeglut_stroke_roman.o: ../FL/glut.H
-freeglut_teapot.o: ../FL/Fl.H
-freeglut_teapot.o: ../FL/Fl_Gl_Window.H
-freeglut_teapot.o: ../FL/Fl_Window.H
-freeglut_teapot.o: ../FL/gl.h
-freeglut_teapot.o: ../FL/glut.H
-freeglut_teapot.o: freeglut_teapot_data.h
-glut_compatibility.o: ../config.h
-glut_compatibility.o: ../FL/Enumerations.H
-glut_compatibility.o: ../FL/Fl.H
-glut_compatibility.o: ../FL/fl_attr.h
-glut_compatibility.o: ../FL/Fl_Bitmap.H
-glut_compatibility.o: ../FL/Fl_Cairo.H
-glut_compatibility.o: ../FL/fl_casts.H
-glut_compatibility.o: ../FL/fl_config.h
-glut_compatibility.o: ../FL/Fl_Device.H
-glut_compatibility.o: ../FL/fl_draw.H
-glut_compatibility.o: ../FL/Fl_Export.H
-glut_compatibility.o: ../FL/Fl_Gl_Window.H
-glut_compatibility.o: ../FL/Fl_Graphics_Driver.H
-glut_compatibility.o: ../FL/Fl_Group.H
-glut_compatibility.o: ../FL/Fl_Image.H
-glut_compatibility.o: ../FL/Fl_Menu_Item.H
-glut_compatibility.o: ../FL/Fl_Multi_Label.H
-glut_compatibility.o: ../FL/Fl_Pixmap.H
-glut_compatibility.o: ../FL/Fl_Plugin.H
-glut_compatibility.o: ../FL/Fl_Preferences.H
-glut_compatibility.o: ../FL/Fl_Rect.H
-glut_compatibility.o: ../FL/Fl_RGB_Image.H
-glut_compatibility.o: ../FL/Fl_Scrollbar.H
-glut_compatibility.o: ../FL/Fl_Slider.H
-glut_compatibility.o: ../FL/fl_string_functions.h
-glut_compatibility.o: ../FL/Fl_Text_Buffer.H
-glut_compatibility.o: ../FL/Fl_Text_Display.H
-glut_compatibility.o: ../FL/Fl_Text_Editor.H
-glut_compatibility.o: ../FL/fl_types.h
-glut_compatibility.o: ../FL/fl_utf8.h
-glut_compatibility.o: ../FL/Fl_Valuator.H
-glut_compatibility.o: ../FL/Fl_Widget.H
-glut_compatibility.o: ../FL/Fl_Window.H
-glut_compatibility.o: ../FL/gl.h
-glut_compatibility.o: ../FL/glut.H
-glut_compatibility.o: ../FL/platform_types.h
-glut_compatibility.o: flstring.h
-glut_compatibility.o: Fl_Gl_Window_Driver.H
-glut_compatibility.o: Fl_Screen_Driver.H
-glut_font.o: ../config.h
-glut_font.o: ../FL/Fl.H
-glut_font.o: ../FL/fl_config.h
-glut_font.o: ../FL/Fl_Gl_Window.H
-glut_font.o: ../FL/Fl_Window.H
-glut_font.o: ../FL/gl.h
-glut_font.o: ../FL/glut.H
-gl_draw.o: ../config.h
-gl_draw.o: ../FL/Enumerations.H
-gl_draw.o: ../FL/Fl.H
-gl_draw.o: ../FL/fl_attr.h
-gl_draw.o: ../FL/Fl_Bitmap.H
-gl_draw.o: ../FL/Fl_Cairo.H
-gl_draw.o: ../FL/fl_casts.H
-gl_draw.o: ../FL/fl_config.h
-gl_draw.o: ../FL/Fl_Device.H
-gl_draw.o: ../FL/fl_draw.H
-gl_draw.o: ../FL/Fl_Export.H
-gl_draw.o: ../FL/Fl_Gl_Window.H
-gl_draw.o: ../FL/Fl_Group.H
-gl_draw.o: ../FL/Fl_Image.H
-gl_draw.o: ../FL/Fl_Image_Surface.H
-gl_draw.o: ../FL/Fl_Plugin.H
-gl_draw.o: ../FL/Fl_Preferences.H
-gl_draw.o: ../FL/Fl_Shared_Image.H
-gl_draw.o: ../FL/fl_types.h
-gl_draw.o: ../FL/fl_utf8.h
-gl_draw.o: ../FL/Fl_Widget.H
-gl_draw.o: ../FL/Fl_Widget_Surface.H
-gl_draw.o: ../FL/Fl_Window.H
-gl_draw.o: ../FL/gl.h
-gl_draw.o: ../FL/glu.h
-gl_draw.o: ../FL/glut.H
-gl_draw.o: ../FL/gl_draw.H
-gl_draw.o: ../FL/math.h
-gl_draw.o: ../FL/platform_types.h
-gl_draw.o: Fl_Gl_Window_Driver.H
-gl_start.o: ../config.h
-gl_start.o: ../FL/Enumerations.H
-gl_start.o: ../FL/Fl.H
-gl_start.o: ../FL/fl_attr.h
-gl_start.o: ../FL/Fl_Bitmap.H
-gl_start.o: ../FL/Fl_Cairo.H
-gl_start.o: ../FL/fl_casts.H
-gl_start.o: ../FL/fl_config.h
-gl_start.o: ../FL/fl_draw.H
-gl_start.o: ../FL/Fl_Export.H
-gl_start.o: ../FL/Fl_Gl_Window.H
-gl_start.o: ../FL/Fl_Group.H
-gl_start.o: ../FL/Fl_Image.H
-gl_start.o: ../FL/fl_types.h
-gl_start.o: ../FL/fl_utf8.h
-gl_start.o: ../FL/Fl_Widget.H
-gl_start.o: ../FL/Fl_Window.H
-gl_start.o: ../FL/gl.h
-gl_start.o: ../FL/platform_types.h
-gl_start.o: Fl_Gl_Window_Driver.H
-nanosvg.o: ../config.h
-nanosvg.o: ../FL/fl_config.h
-nanosvg.o: ../nanosvg/nanosvg.h
-nanosvg.o: ../nanosvg/nanosvgrast.h
-numericsort.o: ../FL/filename.H
-numericsort.o: ../FL/fl_config.h
-numericsort.o: ../FL/Fl_Export.H
-numericsort.o: ../FL/fl_utf8.h
-numericsort.o: ../FL/platform_types.h
-print_button.o: ../FL/Enumerations.H
-print_button.o: ../FL/Fl.H
-print_button.o: ../FL/fl_attr.h
-print_button.o: ../FL/Fl_Bitmap.H
-print_button.o: ../FL/Fl_Cairo.H
-print_button.o: ../FL/fl_casts.H
-print_button.o: ../FL/fl_config.h
-print_button.o: ../FL/Fl_Copy_Surface.H
-print_button.o: ../FL/Fl_Device.H
-print_button.o: ../FL/fl_draw.H
-print_button.o: ../FL/Fl_Export.H
-print_button.o: ../FL/Fl_Group.H
-print_button.o: ../FL/Fl_Image.H
-print_button.o: ../FL/Fl_Paged_Device.H
-print_button.o: ../FL/Fl_Plugin.H
-print_button.o: ../FL/Fl_PostScript.H
-print_button.o: ../FL/Fl_Preferences.H
-print_button.o: ../FL/Fl_Printer.H
-print_button.o: ../FL/fl_types.h
-print_button.o: ../FL/fl_utf8.h
-print_button.o: ../FL/Fl_Widget.H
-print_button.o: ../FL/Fl_Widget_Surface.H
-print_button.o: ../FL/Fl_Window.H
-print_button.o: ../FL/platform_types.h
-print_button.o: print_button.h
-scandir_posix.o: ../config.h
-scandir_posix.o: ../FL/fl_config.h
-screen_xywh.o: ../config.h
-screen_xywh.o: ../FL/Enumerations.H
-screen_xywh.o: ../FL/Fl.H
-screen_xywh.o: ../FL/fl_attr.h
-screen_xywh.o: ../FL/Fl_Bitmap.H
-screen_xywh.o: ../FL/Fl_Cairo.H
-screen_xywh.o: ../FL/fl_casts.H
-screen_xywh.o: ../FL/fl_config.h
-screen_xywh.o: ../FL/Fl_Device.H
-screen_xywh.o: ../FL/fl_draw.H
-screen_xywh.o: ../FL/Fl_Export.H
-screen_xywh.o: ../FL/Fl_Graphics_Driver.H
-screen_xywh.o: ../FL/Fl_Group.H
-screen_xywh.o: ../FL/Fl_Image.H
-screen_xywh.o: ../FL/Fl_Pixmap.H
-screen_xywh.o: ../FL/Fl_Plugin.H
-screen_xywh.o: ../FL/Fl_Preferences.H
-screen_xywh.o: ../FL/Fl_Rect.H
-screen_xywh.o: ../FL/Fl_RGB_Image.H
-screen_xywh.o: ../FL/Fl_Scrollbar.H
-screen_xywh.o: ../FL/Fl_Slider.H
-screen_xywh.o: ../FL/Fl_Text_Buffer.H
-screen_xywh.o: ../FL/Fl_Text_Display.H
-screen_xywh.o: ../FL/Fl_Text_Editor.H
-screen_xywh.o: ../FL/fl_types.h
-screen_xywh.o: ../FL/fl_utf8.h
-screen_xywh.o: ../FL/Fl_Valuator.H
-screen_xywh.o: ../FL/Fl_Widget.H
-screen_xywh.o: ../FL/platform.H
-screen_xywh.o: ../FL/platform_types.h
-screen_xywh.o: ../FL/x11.H
-screen_xywh.o: Fl_Screen_Driver.H
-vsnprintf.o: ../config.h
-vsnprintf.o: ../FL/fl_config.h
-vsnprintf.o: ../FL/Fl_Export.H
-vsnprintf.o: ../FL/fl_string_functions.h
-vsnprintf.o: flstring.h
-xutf8/case.o: utf8_internal.h
-xutf8/case.o: xutf8/headers/case.h
-xutf8/is_right2left.o: utf8_internal.h
-xutf8/is_spacing.o: utf8_internal.h
-xutf8/is_spacing.o: xutf8/headers/spacing.h
-xutf8/keysym2Ucs.o: ../FL/Fl_Export.H
-xutf8/keysym2Ucs.o: Xutf8.h
-xutf8/keysym2Ucs.o: xutf8/imKStoUCS.c
-xutf8/keysym2Ucs.o: xutf8/Ximint.h
-xutf8/keysym2Ucs.o: xutf8/Xlibint.h
diff --git a/src/xutf8/utils/Makefile b/src/xutf8/utils/Makefile
deleted file mode 100644
index 024783db9..000000000
--- a/src/xutf8/utils/Makefile
+++ /dev/null
@@ -1,19 +0,0 @@
-euc_tw: euc_tw.c
- gcc euc_tw.c -o euc_tw
-
-all: convert_map create_table conv_gen
- ./tbl_gen.sh
- ./non_spacing.sh
- ./case.sh
-
-conv_gen: conv_gen.c
- gcc conv_gen.c -o conv_gen
-
-convert_map: convert_map.c
- gcc convert_map.c -o convert_map
-
-create_table: create_table.c
- gcc create_table.c -o create_table
-
-clean:
- rm -f *.o convert_map create_table conv_gen euc_tw
diff --git a/test/Makefile b/test/Makefile
deleted file mode 100644
index 05fdf54ee..000000000
--- a/test/Makefile
+++ /dev/null
@@ -1,712 +0,0 @@
-#
-# Test/demo program Makefile for the Fast Light Tool Kit (FLTK).
-#
-# Copyright 1998-2024 by Bill Spitzak and others.
-#
-# This library is free software. Distribution and use rights are outlined in
-# the file "COPYING" which should have been included with this file. If this
-# file is missing or damaged, see the license at:
-#
-# https://www.fltk.org/COPYING.php
-#
-# Please see the following page on how to report bugs and issues:
-#
-# https://www.fltk.org/bugs.php
-#
-
-include ../makeinclude
-
-CPPUNITTEST = \
- unittests.cxx \
- unittest_about.cxx \
- unittest_points.cxx \
- unittest_complex_shapes.cxx \
- unittest_fast_shapes.cxx \
- unittest_circles.cxx \
- unittest_text.cxx \
- unittest_unicode.cxx \
- unittest_symbol.cxx \
- unittest_images.cxx \
- unittest_viewport.cxx \
- unittest_scrollbarsize.cxx \
- unittest_schemes.cxx \
- unittest_terminal.cxx \
- unittest_core.cxx
-
-OBJUNITTEST = \
- $(CPPUNITTEST:.cxx=.o)
-
-CPPFILES =\
- adjuster.cxx \
- animated.cxx \
- arc.cxx \
- ask.cxx \
- bitmap.cxx \
- blocks.cxx \
- boxtype.cxx \
- browser.cxx \
- button.cxx \
- buttons.cxx \
- cairo_test.cxx \
- checkers.cxx \
- clipboard.cxx \
- clock.cxx \
- colbrowser.cxx \
- color_chooser.cxx \
- contrast.cxx \
- cube.cxx \
- CubeMain.cxx \
- CubeView.cxx \
- cursor.cxx \
- curve.cxx \
- demo.cxx \
- device.cxx \
- doublebuffer.cxx \
- editor.cxx \
- fast_slow.cxx \
- file_chooser.cxx \
- flex_demo.cxx \
- flex_login.cxx \
- fltk-versions.cxx \
- fonts.cxx \
- forms.cxx \
- fractals.cxx \
- fracviewer.cxx \
- fullscreen.cxx \
- gl_overlay.cxx \
- glpuzzle.cxx \
- glut_test.cxx \
- grid_alignment \
- grid_buttons \
- grid_dialog \
- grid_login \
- hello.cxx \
- help_dialog.cxx \
- icon.cxx \
- iconize.cxx \
- image.cxx \
- inactive.cxx \
- input.cxx \
- input_choice.cxx \
- keyboard.cxx \
- label.cxx \
- line_style.cxx \
- line_style_docs.cxx \
- list_visuals.cxx \
- mandelbrot.cxx \
- menubar.cxx \
- message.cxx \
- minimum.cxx \
- native-filechooser.cxx \
- navigation.cxx \
- offscreen.cxx \
- output.cxx \
- overlay.cxx \
- pack.cxx \
- pixmap_browser.cxx \
- pixmap.cxx \
- preferences.cxx \
- radio.cxx \
- resize.cxx \
- resizebox.cxx \
- resize-example1.cxx \
- resize-example2.cxx \
- resize-example3a.cxx \
- resize-example3b.cxx \
- resize-example3c.cxx \
- resize-example4a.cxx \
- resize-example4b.cxx \
- resize-example5a.cxx \
- resize-example5b.cxx \
- resize-example5c.cxx \
- rotated_text.cxx \
- scroll.cxx \
- shape.cxx \
- subwindow.cxx \
- sudoku.cxx \
- symbols.cxx \
- table.cxx \
- tabs.cxx \
- terminal.cxx \
- threads.cxx \
- tile.cxx \
- tiled_image.cxx \
- tree.cxx \
- twowin.cxx \
- utf8.cxx \
- valuators.cxx \
- windowfocus.cxx \
- wizard.cxx \
- $(CPPUNITTEST)
-
-ALL = \
- animated$(EXEEXT) \
- adjuster$(EXEEXT) \
- arc$(EXEEXT) \
- ask$(EXEEXT) \
- bitmap$(EXEEXT) \
- blocks$(EXEEXT) \
- boxtype$(EXEEXT) \
- browser$(EXEEXT) \
- button$(EXEEXT) \
- buttons$(EXEEXT) \
- cairo_test$(EXEEXT) \
- clipboard$(EXEEXT) \
- clock$(EXEEXT) \
- colbrowser$(EXEEXT) \
- color_chooser$(EXEEXT) \
- contrast$(EXEEXT) \
- cursor$(EXEEXT) \
- curve$(EXEEXT) \
- demo$(EXEEXT) \
- device$(EXEEXT) \
- doublebuffer$(EXEEXT) \
- editor$(EXEEXT) \
- file_chooser$(EXEEXT) \
- flex_demo$(EXEEXT) \
- flex_login$(EXEEXT) \
- fltk-versions$(EXEEXT) \
- fonts$(EXEEXT) \
- forms$(EXEEXT) \
- grid_alignment$(EXEEXT) \
- grid_buttons$(EXEEXT) \
- grid_dialog$(EXEEXT) \
- grid_login$(EXEEXT) \
- hello$(EXEEXT) \
- help_dialog$(EXEEXT) \
- icon$(EXEEXT) \
- iconize$(EXEEXT) \
- image$(EXEEXT) \
- input$(EXEEXT) \
- input_choice$(EXEEXT) \
- label$(EXEEXT) \
- line_style$(EXEEXT) \
- line_style_docs$(EXEEXT) \
- list_visuals$(EXEEXT) \
- menubar$(EXEEXT) \
- message$(EXEEXT) \
- minimum$(EXEEXT) \
- native-filechooser$(EXEEXT) \
- navigation$(EXEEXT) \
- offscreen$(EXEEXT) \
- output$(EXEEXT) \
- overlay$(EXEEXT) \
- pack$(EXEEXT) \
- pixmap$(EXEEXT) \
- pixmap_browser$(EXEEXT) \
- device$(EXEEXT) \
- resizebox$(EXEEXT) \
- resize-example1$(EXEEXT) \
- resize-example2$(EXEEXT) \
- resize-example3a$(EXEEXT) \
- resize-example3b$(EXEEXT) \
- resize-example3c$(EXEEXT) \
- resize-example4a$(EXEEXT) \
- resize-example4b$(EXEEXT) \
- resize-example5a$(EXEEXT) \
- resize-example5b$(EXEEXT) \
- resize-example5c$(EXEEXT) \
- rotated_text$(EXEEXT) \
- scroll$(EXEEXT) \
- subwindow$(EXEEXT) \
- sudoku$(EXEEXT) \
- symbols$(EXEEXT) \
- table$(EXEEXT) \
- $(THREADS) \
- tile$(EXEEXT) \
- tiled_image$(EXEEXT) \
- twowin$(EXEEXT) \
- utf8$(EXEEXT) \
- windowfocus$(EXEEXT) \
- wizard$(EXEEXT)
-
-ALLFLUID = \
- checkers$(EXEEXT) \
- fast_slow$(EXEEXT) \
- inactive$(EXEEXT) \
- keyboard$(EXEEXT) \
- mandelbrot$(EXEEXT) \
- preferences$(EXEEXT) \
- radio$(EXEEXT) \
- resize$(EXEEXT) \
- tabs$(EXEEXT) \
- terminal$(EXEEXT) \
- tree$(EXEEXT) \
- valuators$(EXEEXT) \
- CubeView$(EXEEXT)
-
-GLALL = \
- cube$(EXEEXT) \
- fractals$(EXEEXT) \
- fullscreen$(EXEEXT) \
- gl_overlay$(EXEEXT) \
- glpuzzle$(EXEEXT) \
- glut_test$(EXEEXT) \
- shape$(EXEEXT) \
- unittests$(EXEEXT)
-
-all: $(ALL) $(GLDEMOS)
- for dir in $(FLUIDDIR); do\
- $(MAKE) $(MFLAGS) $(ALLFLUID);\
- done
-
-gldemos: $(GLALL)
-
-depend: $(CPPFILES)
- makedepend -Y -I.. -f makedepend -w 20 $(CPPFILES)
- echo "# DO NOT DELETE THIS LINE -- make depend depends on it." > makedepend.tmp
- echo "" >> makedepend.tmp
- grep '^[a-zA-Z]' makedepend | ( LC_ALL=C sort -u -f >> makedepend.tmp; )
- mv makedepend.tmp makedepend
-
-# Automatically generated dependencies...
-include makedepend
-
-clean:
- $(RM) $(ALL) $(ALLFLUID) $(GLALL) core
- $(RMDIR) *.app
- $(RM) *.o core.* *~ *.bck *.bak
- $(RM) CubeViewUI.cxx CubeViewUI.h
- $(RM) checkers_pieces.cxx checkers_pieces.h
- $(RM) fast_slow.cxx fast_slow.h
- $(RM) inactive.cxx inactive.h
- $(RM) keyboard_ui.cxx keyboard_ui.h
- $(RM) mandelbrot_ui.cxx mandelbrot_ui.h
- $(RM) preferences.cxx preferences.h
- $(RM) radio.cxx radio.h
- $(RM) resize.cxx resize.h
- $(RM) tabs.cxx tabs.h
- $(RM) terminal.cxx terminal.h
- $(RM) tree.cxx tree.h
- $(RM) valuators.cxx valuators.h
-
-install: all
- echo "Installing example programs to $(DESTDIR)$(docdir)/examples..."
- -$(INSTALL_DIR) "$(DESTDIR)$(docdir)/examples"
- for file in *.h *.cxx *.fl demo.menu; do \
- $(INSTALL_DATA) $$file "$(DESTDIR)$(docdir)/examples"; \
- done
- -$(INSTALL_DIR) "$(DESTDIR)$(docdir)/examples/pixmaps"
- for file in pixmaps/*.xbm pixmaps/*.xpm; do \
- $(INSTALL_DATA) $$file "$(DESTDIR)$(docdir)/examples/pixmaps"; \
- done
-
-install-linux:
- echo Installing games to $(DESTDIR)$(bindir)...
- -$(INSTALL_DIR) "$(DESTDIR)$(bindir)"
- -$(INSTALL_DIR) "$(DESTDIR)$(datadir)/applications"
- -$(INSTALL_DIR) "$(DESTDIR)$(datadir)/icons/hicolor/32x32/apps"
- -$(INSTALL_DIR) "$(DESTDIR)$(datadir)/icons/hicolor/128x128/apps"
- for game in blocks checkers sudoku; do \
- $(INSTALL_BIN) $$game "$(DESTDIR)$(bindir)"; \
- $(INSTALL_DATA) desktop/$$game.desktop "$(DESTDIR)$(datadir)/applications"; \
- $(INSTALL_DATA) desktop/$$game-32.png "$(DESTDIR)$(datadir)/icons/hicolor/32x32/apps/$$game.png"; \
- $(INSTALL_DATA) desktop/$$game-128.png "$(DESTDIR)$(datadir)/icons/hicolor/128x128/apps/$$game.png"; \
- done
-
-install-osx:
- echo Installing games in $(DESTDIR)/Applications...
- for game in blocks checkers sudoku; do \
- if test ! -d "$(DESTDIR)/Applications/$$game.app"; then \
- $(INSTALL_DIR) "$(DESTDIR)/Applications/$$game.app"; \
- $(INSTALL_DIR) "$(DESTDIR)/Applications/$$game.app/Contents"; \
- $(INSTALL_DIR) "$(DESTDIR)/Applications/$$game.app/Contents/MacOS"; \
- $(INSTALL_DIR) "$(DESTDIR)/Applications/$$game.app/Contents/Resources"; \
- fi; \
- $(INSTALL_DATA) $$game.app/Contents/Info.plist "$(DESTDIR)/Applications/$$game.app/Contents"; \
- $(INSTALL_BIN) $$game.app/Contents/MacOS/$$game "$(DESTDIR)/Applications/$$game.app/Contents/MacOS"; \
- $(INSTALL_DATA) $$game.app/Contents/Resources/$$game.icns "$(DESTDIR)/Applications/$$game.app/Contents/Resources"; \
- done
-
-uninstall:
- echo "Removing examples programs from $(DESTDIR)$(docdir)/examples..."
- -$(RMDIR) "$(DESTDIR)$(docdir)/examples"
-
-uninstall-linux:
- echo Removing games from $(DESTDIR)$(bindir)...
- for game in blocks checkers sudoku; do \
- $(RM) "$(DESTDIR)$(bindir)/$$game"; \
- $(RM) "$(DESTDIR)$(datadir)/applications/$$game.desktop"; \
- $(RM) "$(DESTDIR)$(datadir)/icons/hicolor/32x32/apps/$$game.png"; \
- $(RM) "$(DESTDIR)$(datadir)/icons/hicolor/128x128/apps/$$game.png"; \
- done
-
-uninstall-osx:
- echo Removing games from $(DESTDIR)/Applications...
- $(RMDIR) "$(DESTDIR)/Applications/blocks.app"
- $(RMDIR) "$(DESTDIR)/Applications/checkers.app"
- $(RMDIR) "$(DESTDIR)/Applications/sudoku.app"
-
-# FLUID file rules
-.fl.cxx .fl.h:
- echo Generating $@ and header from $<...
- $(FLUID_BUILD) -c $<
-
-# All demos depend on the FLTK library...
-$(ALL): $(LIBNAME)
-
-# General demos...
-unittests$(EXEEXT): $(OBJUNITTEST)
-
-adjuster$(EXEEXT): adjuster.o
-
-animated$(EXEEXT): animated.o
-
-arc$(EXEEXT): arc.o
-
-ask$(EXEEXT): ask.o
-
-bitmap$(EXEEXT): bitmap.o
-
-boxtype$(EXEEXT): boxtype.o
-
-browser$(EXEEXT): browser.o
-
-button$(EXEEXT): button.o
-
-buttons$(EXEEXT): buttons.o
-
-blocks$(EXEEXT): blocks.o
- echo Linking $@...
- $(CXX) $(ARCHFLAGS) $(CXXFLAGS) $(LDFLAGS) blocks.o -o $@ $(AUDIOLIBS) $(LINKFLTK) $(LDLIBS)
- $(OSX_ONLY) $(RM) -f -r blocks.app
- $(OSX_ONLY) mkdir -p blocks.app/Contents/MacOS blocks.app/Contents/Resources
- $(OSX_ONLY) $(INSTALL_BIN) blocks$(EXEEXT) blocks.app/Contents/MacOS
- $(OSX_ONLY) $(INSTALL_BIN) mac-resources/blocks.icns blocks.app/Contents/Resources/
- $(OSX_ONLY) $(INSTALL_BIN) mac-resources/blocks.plist blocks.app/Contents/Info.plist
-
-checkers$(EXEEXT): checkers.o checkers_pieces.o
- echo Linking $@...
- $(CXX) $(ARCHFLAGS) $(CXXFLAGS) $(LDFLAGS) checkers.o checkers_pieces.o -o $@ $(LINKFLTKIMG) $(LDLIBS)
- $(OSX_ONLY) $(RM) -f -r checkers.app
- $(OSX_ONLY) mkdir -p checkers.app/Contents/MacOS checkers.app/Contents/Resources
- $(OSX_ONLY) $(INSTALL_BIN) checkers$(EXEEXT) checkers.app/Contents/MacOS
- $(OSX_ONLY) $(INSTALL_BIN) mac-resources/checkers.icns checkers.app/Contents/Resources/
- $(OSX_ONLY) $(INSTALL_BIN) mac-resources/checkers.plist checkers.app/Contents/Info.plist
-
-checkers.cxx: checkers_pieces.h
-checkers_pieces.o: checkers_pieces.h
-checkers_pieces.h: checkers_pieces.fl
-checkers_pieces.cxx: checkers_pieces.fl ../fluid/fluid$(EXEEXT)
-
-clipboard$(EXEEXT): clipboard.o $(IMGLIBNAME)
- echo Linking $@...
- $(CXX) $(ARCHFLAGS) $(CXXFLAGS) $(LDFLAGS) clipboard.o -o $@ $(LINKFLTKIMG) $(LDLIBS)
- $(OSX_ONLY) ../fltk-config --post $@
-
-clock$(EXEEXT): clock.o
-
-colbrowser$(EXEEXT): colbrowser.o
- echo Linking $@...
- $(CXX) $(ARCHFLAGS) $(CXXFLAGS) $(LDFLAGS) -o $@ colbrowser.o $(LINKFLTK) $(LDLIBS)
- $(OSX_ONLY) ../fltk-config --post $@
- $(OSX_ONLY) mkdir -p colbrowser.app/Contents/Resources
- $(OSX_ONLY) cp -f rgb.txt colbrowser.app/Contents/Resources/
-
-color_chooser$(EXEEXT): color_chooser.o
-
-contrast$(EXEEXT): contrast.o
-
-cursor$(EXEEXT): cursor.o
-
-curve$(EXEEXT): curve.o
-
-demo$(EXEEXT): demo.o
- echo Linking $@...
- $(CXX) $(ARCHFLAGS) $(CXXFLAGS) $(LDFLAGS) -o $@ demo.o $(LINKFLTK) $(LDLIBS)
- $(OSX_ONLY) ../fltk-config --post $@
- $(OSX_ONLY) mkdir -p demo.app/Contents/Resources
- $(OSX_ONLY) cp -f demo.menu demo.app/Contents/Resources/
-
-device$(EXEEXT): device.o $(IMGLIBNAME)
- echo Linking $@...
- $(CXX) $(ARCHFLAGS) $(CXXFLAGS) $(LDFLAGS) device.o -o $@ $(LINKFLTKIMG) $(LDLIBS)
- $(OSX_ONLY) ../fltk-config --post $@
-
-doublebuffer$(EXEEXT): doublebuffer.o
-
-editor$(EXEEXT): editor.o
- echo Linking $@...
- $(CXX) $(ARCHFLAGS) $(CXXFLAGS) $(LDFLAGS) editor.o -o $@ $(LINKFLTKIMG) $(LDLIBS)
- $(OSX_ONLY) ../fltk-config --post $@
- $(OSX_ONLY) cp -f mac-resources/editor.plist editor.app/Contents/Info.plist
-
-fast_slow$(EXEEXT): fast_slow.o
-fast_slow.cxx: fast_slow.fl ../fluid/fluid$(EXEEXT)
-
-file_chooser$(EXEEXT): file_chooser.o $(IMGLIBNAME)
- echo Linking $@...
- $(CXX) $(ARCHFLAGS) $(CXXFLAGS) $(LDFLAGS) file_chooser.o -o $@ $(LINKFLTKIMG) $(LDLIBS)
- $(OSX_ONLY) ../fltk-config --post $@
-
-flex_demo$(EXEEXT): flex_demo.o
-
-flex_login$(EXEEXT): flex_login.o
-
-fltk-versions$(EXEEXT): fltk-versions.o
-
-fonts$(EXEEXT): fonts.o
-
-forms$(EXEEXT): forms.o
- echo Linking $@...
- $(CXX) $(ARCHFLAGS) $(CXXFLAGS) $(LDFLAGS) -o $@ forms.o $(LINKFLTKFORMS) $(LDLIBS)
- $(OSX_ONLY) ../fltk-config --post $@
-
-grid_alignment$(EXEEXT): grid_alignment.o
-
-grid_buttons$(EXEEXT): grid_buttons.o
-
-grid_dialog$(EXEEXT): grid_dialog.o
-
-grid_login$(EXEEXT): grid_login.o
-
-hello$(EXEEXT): hello.o
-
-help_dialog$(EXEEXT): help_dialog.o $(IMGLIBNAME)
- echo Linking $@...
- $(CXX) $(ARCHFLAGS) $(CXXFLAGS) $(LDFLAGS) help_dialog.o -o $@ $(LINKFLTKIMG) $(LDLIBS)
- $(OSX_ONLY) ../fltk-config --post $@
- $(OSX_ONLY) mkdir -p help_dialog.app/Contents/Resources
- $(OSX_ONLY) cp -f help_dialog.html help_dialog.app/Contents/Resources/
-
-icon$(EXEEXT): icon.o
-
-iconize$(EXEEXT): iconize.o
-
-image$(EXEEXT): image.o
-
-inactive$(EXEEXT): inactive.o
-inactive.cxx: inactive.fl ../fluid/fluid$(EXEEXT)
-
-input$(EXEEXT): input.o
-
-input_choice$(EXEEXT): input_choice.o
-
-keyboard$(EXEEXT): keyboard_ui.o keyboard.o
- echo Linking $@...
- $(CXX) $(ARCHFLAGS) $(CXXFLAGS) $(LDFLAGS) -o $@ keyboard.o keyboard_ui.o $(LINKFLTK) $(LDLIBS)
- $(OSX_ONLY) ../fltk-config --post $@
-keyboard_ui.o: keyboard_ui.h
-keyboard_ui.cxx: keyboard_ui.fl ../fluid/fluid$(EXEEXT)
-
-label$(EXEEXT): label.o
- echo Linking $@...
- $(CXX) $(ARCHFLAGS) $(CXXFLAGS) $(LDFLAGS) -o $@ label.o $(LINKFLTK) $(LDLIBS)
- $(OSX_ONLY) ../fltk-config --post $@
-
-line_style$(EXEEXT): line_style.o
-
-line_style_docs$(EXEEXT): line_style_docs.o
-
-list_visuals$(EXEEXT): list_visuals.o
-
-mandelbrot$(EXEEXT): mandelbrot_ui.o mandelbrot.o
- echo Linking $@...
- $(CXX) $(ARCHFLAGS) $(CXXFLAGS) $(LDFLAGS) -o $@ mandelbrot.o mandelbrot_ui.o $(LINKFLTK) $(LDLIBS)
- $(OSX_ONLY) ../fltk-config --post $@
-mandelbrot_ui.o: mandelbrot_ui.h
-mandelbrot_ui.cxx: mandelbrot_ui.fl ../fluid/fluid$(EXEEXT)
-
-menubar$(EXEEXT): menubar.o
-
-message$(EXEEXT): message.o
-
-minimum$(EXEEXT): minimum.o
-
-native-filechooser$(EXEEXT): native-filechooser.o $(IMGLIBNAME)
- echo Linking $@...
- $(CXX) $(ARCHFLAGS) $(CXXFLAGS) $(LDFLAGS) native-filechooser.o -o $@ $(LINKFLTKIMG) $(LDLIBS)
- $(OSX_ONLY) ../fltk-config --post $@
-
-navigation$(EXEEXT): navigation.o
-
-offscreen$(EXEEXT): offscreen.o
-
-output$(EXEEXT): output.o $(FLLIBNAME)
- echo Linking $@...
- $(CXX) $(ARCHFLAGS) $(CXXFLAGS) $(LDFLAGS) -o $@ output.o $(LINKFLTK) $(LDLIBS)
- $(OSX_ONLY) ../fltk-config --post $@
-
-overlay$(EXEEXT): overlay.o
-
-pack$(EXEEXT): pack.o
-
-pixmap$(EXEEXT): pixmap.o $(IMGLIBNAME)
- echo Linking $@...
- $(CXX) $(ARCHFLAGS) $(CXXFLAGS) $(LDFLAGS) -o $@ pixmap.o $(LINKFLTKIMG) $(LDLIBS)
- $(OSX_ONLY) ../fltk-config --post $@
-
-pixmap_browser$(EXEEXT): pixmap_browser.o $(IMGLIBNAME)
- echo Linking $@...
- $(CXX) $(ARCHFLAGS) $(CXXFLAGS) $(LDFLAGS) pixmap_browser.o -o $@ $(LINKFLTKIMG) $(LDLIBS)
- $(OSX_ONLY) ../fltk-config --post $@
-
-preferences$(EXEEXT): preferences.o
-preferences.cxx: preferences.fl ../fluid/fluid$(EXEEXT)
-
-device$(EXEEXT): device.o
-
-radio$(EXEEXT): radio.o
-radio.cxx: radio.fl ../fluid/fluid$(EXEEXT)
-
-resize$(EXEEXT): resize.o
-resize.cxx: resize.fl ../fluid/fluid$(EXEEXT)
-
-resizebox$(EXEEXT): resizebox.o
-
-resize-example1$(EXEEXT): resize-example1.o resize-arrows.o
- echo Linking $@...
- $(CXX) $(ARCHFLAGS) $(CXXFLAGS) $(LDFLAGS) resize-example1.o resize-arrows.o -o $@ $(LINKFLTK) $(LDLIBS)
- $(OSX_ONLY) ../fltk-config --post $@
-
-resize-example2$(EXEEXT): resize-example2.o resize-arrows.o
- echo Linking $@...
- $(CXX) $(ARCHFLAGS) $(CXXFLAGS) $(LDFLAGS) resize-example2.o resize-arrows.o -o $@ $(LINKFLTK) $(LDLIBS)
- $(OSX_ONLY) ../fltk-config --post $@
-
-resize-example3a$(EXEEXT): resize-example3a.o resize-arrows.o
- echo Linking $@...
- $(CXX) $(ARCHFLAGS) $(CXXFLAGS) $(LDFLAGS) resize-example3a.o resize-arrows.o -o $@ $(LINKFLTK) $(LDLIBS)
- $(OSX_ONLY) ../fltk-config --post $@
-
-resize-example3b$(EXEEXT): resize-example3b.o resize-arrows.o
- echo Linking $@...
- $(CXX) $(ARCHFLAGS) $(CXXFLAGS) $(LDFLAGS) resize-example3b.o resize-arrows.o -o $@ $(LINKFLTK) $(LDLIBS)
- $(OSX_ONLY) ../fltk-config --post $@
-
-resize-example3c$(EXEEXT): resize-example3c.o resize-arrows.o
- echo Linking $@...
- $(CXX) $(ARCHFLAGS) $(CXXFLAGS) $(LDFLAGS) resize-example3c.o resize-arrows.o -o $@ $(LINKFLTK) $(LDLIBS)
- $(OSX_ONLY) ../fltk-config --post $@
-
-resize-example4a$(EXEEXT): resize-example4a.o resize-arrows.o
- echo Linking $@...
- $(CXX) $(ARCHFLAGS) $(CXXFLAGS) $(LDFLAGS) resize-example4a.o resize-arrows.o -o $@ $(LINKFLTK) $(LDLIBS)
- $(OSX_ONLY) ../fltk-config --post $@
-
-resize-example4b$(EXEEXT): resize-example4b.o resize-arrows.o
- echo Linking $@...
- $(CXX) $(ARCHFLAGS) $(CXXFLAGS) $(LDFLAGS) resize-example4b.o resize-arrows.o -o $@ $(LINKFLTK) $(LDLIBS)
- $(OSX_ONLY) ../fltk-config --post $@
-
-resize-example5a$(EXEEXT): resize-example5a.o resize-arrows.o
- echo Linking $@...
- $(CXX) $(ARCHFLAGS) $(CXXFLAGS) $(LDFLAGS) resize-example5a.o resize-arrows.o -o $@ $(LINKFLTK) $(LDLIBS)
- $(OSX_ONLY) ../fltk-config --post $@
-
-resize-example5b$(EXEEXT): resize-example5b.o resize-arrows.o
- echo Linking $@...
- $(CXX) $(ARCHFLAGS) $(CXXFLAGS) $(LDFLAGS) resize-example5b.o resize-arrows.o -o $@ $(LINKFLTK) $(LDLIBS)
- $(OSX_ONLY) ../fltk-config --post $@
-
-resize-example5c$(EXEEXT): resize-example5c.o resize-arrows.o
- echo Linking $@...
- $(CXX) $(ARCHFLAGS) $(CXXFLAGS) $(LDFLAGS) resize-example5c.o resize-arrows.o -o $@ $(LINKFLTK) $(LDLIBS)
- $(OSX_ONLY) ../fltk-config --post $@
-
-rotated_text$(EXEEXT): rotated_text.o
-
-scroll$(EXEEXT): scroll.o
-
-subwindow$(EXEEXT): subwindow.o
-
-sudoku: sudoku.o
- echo Linking $@...
- $(CXX) $(ARCHFLAGS) $(CXXFLAGS) $(LDFLAGS) sudoku.o -o $@ $(AUDIOLIBS) $(LINKFLTKIMG) $(LDLIBS)
- $(OSX_ONLY) $(RM) -f -r sudoku.app
- $(OSX_ONLY) mkdir -p sudoku.app/Contents/MacOS sudoku.app/Contents/Resources
- $(OSX_ONLY) $(INSTALL_BIN) sudoku$(EXEEXT) sudoku.app/Contents/MacOS
- $(OSX_ONLY) $(INSTALL_BIN) mac-resources/sudoku.icns sudoku.app/Contents/Resources/
- $(OSX_ONLY) $(INSTALL_BIN) mac-resources/sudoku.plist sudoku.app/Contents/Info.plist
-
-sudoku.exe: sudoku.o sudoku.rc
- echo Linking $@...
- $(RC) sudoku.rc sudokures.o
- $(CXX) $(ARCHFLAGS) $(CXXFLAGS) $(LDFLAGS) sudoku.o sudokures.o -o $@ $(AUDIOLIBS) $(LINKFLTKIMG) $(LDLIBS)
-
-symbols$(EXEEXT): symbols.o
-
-table$(EXEEXT): table.o
-
-tabs$(EXEEXT): tabs.o
-tabs.cxx: tabs.fl ../fluid/fluid$(EXEEXT)
-
-terminal$(EXEEXT): terminal.o
-terminal.cxx: terminal.fl ../fluid/fluid$(EXEEXT)
-
-threads$(EXEEXT): threads.o
-# This ensures that we have this dependency even if threads are not
-# enabled in the current tree...
-threads.o: threads.h
-
-tile$(EXEEXT): tile.o
-
-tiled_image$(EXEEXT): tiled_image.o
-
-tree$(EXEEXT): tree.o
-tree.cxx: tree.fl ../fluid/fluid$(EXEEXT)
-
-twowin$(EXEEXT): twowin.o
-
-valuators$(EXEEXT): valuators.o
-valuators.cxx: valuators.fl ../fluid/fluid$(EXEEXT)
-
-# All OpenGL demos depend on the FLTK and FLTK_GL libraries...
-$(GLALL): $(LIBNAME) $(GLLIBNAME)
-
-# OpenGL demos...
-CubeView$(EXEEXT): CubeMain.o CubeView.o CubeViewUI.o
- echo Linking $@...
- $(CXX) $(ARCHFLAGS) $(CXXFLAGS) $(LDFLAGS) -o $@ \
- CubeMain.o CubeView.o CubeViewUI.o \
- $(LINKFLTKGL) $(LINKFLTK) $(GLDLIBS)
- $(OSX_ONLY) ../fltk-config --post $@
-CubeMain.o: CubeViewUI.h CubeView.h CubeViewUI.cxx
-CubeView.o: CubeView.h
-CubeViewUI.o: CubeViewUI.cxx CubeViewUI.h
-CubeViewUI.cxx: CubeViewUI.fl ../fluid/fluid$(EXEEXT)
-
-cube$(EXEEXT): cube.o
- echo Linking $@...
- $(CXX) $(ARCHFLAGS) $(CXXFLAGS) $(LDFLAGS) -o $@ cube.o $(LINKFLTKGL) $(LINKFLTK) $(GLDLIBS)
- $(OSX_ONLY) ../fltk-config --post $@
-
-fractals$(EXEEXT): fractals.o fracviewer.o
- echo Linking $@...
- $(CXX) $(ARCHFLAGS) $(CXXFLAGS) $(LDFLAGS) -o $@ fractals.o fracviewer.o $(LINKFLTKGL) $(LINKFLTK) $(GLDLIBS)
- $(OSX_ONLY) ../fltk-config --post $@
-
-fullscreen$(EXEEXT): fullscreen.o
- echo Linking $@...
- $(CXX) $(ARCHFLAGS) $(CXXFLAGS) $(LDFLAGS) -o $@ fullscreen.o $(LINKFLTKGL) $(LINKFLTK) $(GLDLIBS)
- $(OSX_ONLY) ../fltk-config --post $@
-
-glpuzzle$(EXEEXT): glpuzzle.o
- echo Linking $@...
- $(CXX) $(ARCHFLAGS) $(CXXFLAGS) $(LDFLAGS) -o $@ glpuzzle.o $(LINKFLTKGL) $(LINKFLTK) $(GLDLIBS)
- $(OSX_ONLY) ../fltk-config --post $@
-
-gl_overlay$(EXEEXT): gl_overlay.o
- echo Linking $@...
- $(CXX) $(ARCHFLAGS) $(CXXFLAGS) $(LDFLAGS) -o $@ gl_overlay.o $(LINKFLTKGL) $(LINKFLTK) $(GLDLIBS)
- $(OSX_ONLY) ../fltk-config --post $@
-
-glut_test$(EXEEXT): glut_test.o
- echo Linking $@...
- $(CXX) $(ARCHFLAGS) $(CXXFLAGS) $(LDFLAGS) -o $@ glut_test.o $(LINKFLTKGL) $(LINKFLTK) $(GLDLIBS)
- $(OSX_ONLY) ../fltk-config --post $@
-
-unittests$(EXEEXT): $(OBJUNITTEST)
- echo Linking $@...
- $(CXX) $(ARCHFLAGS) $(CXXFLAGS) $(LDFLAGS) -o $@ $(OBJUNITTEST) $(LINKFLTKGL) $(LINKFLTK) $(GLDLIBS)
- $(OSX_ONLY) ../fltk-config --post $@
-
-shape$(EXEEXT): shape.o
- echo Linking $@...
- $(CXX) $(ARCHFLAGS) $(CXXFLAGS) $(LDFLAGS) -o $@ shape.o $(LINKFLTKGL) $(LINKFLTK) $(GLDLIBS)
- $(OSX_ONLY) ../fltk-config --post $@
-
-cairo_test$(EXEEXT): cairo_test.o
- echo Linking $@...
- $(CXX) $(ARCHFLAGS) $(CXXFLAGS) $(CAIROFLAGS) $(LDFLAGS) -o $@ cairo_test.o $(LINKFLTK) $(CAIROLIBS) $(GLDLIBS)
- $(OSX_ONLY) ../fltk-config --post $@
diff --git a/test/makedepend b/test/makedepend
deleted file mode 100644
index 0c0810c60..000000000
--- a/test/makedepend
+++ /dev/null
@@ -1,3247 +0,0 @@
-# DO NOT DELETE THIS LINE -- make depend depends on it.
-
-adjuster.o: ../FL/Enumerations.H
-adjuster.o: ../FL/Fl.H
-adjuster.o: ../FL/Fl_Adjuster.H
-adjuster.o: ../FL/fl_attr.h
-adjuster.o: ../FL/Fl_Bitmap.H
-adjuster.o: ../FL/Fl_Box.H
-adjuster.o: ../FL/Fl_Cairo.H
-adjuster.o: ../FL/fl_casts.H
-adjuster.o: ../FL/fl_config.h
-adjuster.o: ../FL/Fl_Double_Window.H
-adjuster.o: ../FL/Fl_Export.H
-adjuster.o: ../FL/Fl_Group.H
-adjuster.o: ../FL/Fl_Image.H
-adjuster.o: ../FL/fl_types.h
-adjuster.o: ../FL/fl_utf8.h
-adjuster.o: ../FL/Fl_Valuator.H
-adjuster.o: ../FL/Fl_Widget.H
-adjuster.o: ../FL/Fl_Window.H
-adjuster.o: ../FL/platform_types.h
-animated.o: ../FL/Enumerations.H
-animated.o: ../FL/Fl.H
-animated.o: ../FL/fl_attr.h
-animated.o: ../FL/Fl_Bitmap.H
-animated.o: ../FL/Fl_Button.H
-animated.o: ../FL/Fl_Cairo.H
-animated.o: ../FL/fl_casts.H
-animated.o: ../FL/fl_config.h
-animated.o: ../FL/Fl_Device.H
-animated.o: ../FL/Fl_Double_Window.H
-animated.o: ../FL/fl_draw.H
-animated.o: ../FL/Fl_Export.H
-animated.o: ../FL/Fl_Graphics_Driver.H
-animated.o: ../FL/Fl_Group.H
-animated.o: ../FL/Fl_Image.H
-animated.o: ../FL/Fl_Pixmap.H
-animated.o: ../FL/Fl_Plugin.H
-animated.o: ../FL/Fl_Preferences.H
-animated.o: ../FL/Fl_Rect.H
-animated.o: ../FL/Fl_RGB_Image.H
-animated.o: ../FL/fl_types.h
-animated.o: ../FL/fl_utf8.h
-animated.o: ../FL/Fl_Widget.H
-animated.o: ../FL/Fl_Window.H
-animated.o: ../FL/platform.H
-animated.o: ../FL/platform_types.h
-animated.o: ../FL/x11.H
-arc.o: ../FL/Enumerations.H
-arc.o: ../FL/Fl.H
-arc.o: ../FL/fl_attr.h
-arc.o: ../FL/Fl_Bitmap.H
-arc.o: ../FL/Fl_Cairo.H
-arc.o: ../FL/fl_casts.H
-arc.o: ../FL/fl_config.h
-arc.o: ../FL/Fl_Device.H
-arc.o: ../FL/Fl_Double_Window.H
-arc.o: ../FL/fl_draw.H
-arc.o: ../FL/Fl_Export.H
-arc.o: ../FL/Fl_Graphics_Driver.H
-arc.o: ../FL/Fl_Group.H
-arc.o: ../FL/Fl_Hor_Value_Slider.H
-arc.o: ../FL/Fl_Image.H
-arc.o: ../FL/Fl_Pixmap.H
-arc.o: ../FL/Fl_Plugin.H
-arc.o: ../FL/Fl_Preferences.H
-arc.o: ../FL/Fl_Rect.H
-arc.o: ../FL/Fl_RGB_Image.H
-arc.o: ../FL/Fl_Slider.H
-arc.o: ../FL/fl_types.h
-arc.o: ../FL/fl_utf8.h
-arc.o: ../FL/Fl_Valuator.H
-arc.o: ../FL/Fl_Value_Slider.H
-arc.o: ../FL/Fl_Widget.H
-arc.o: ../FL/Fl_Window.H
-arc.o: ../FL/platform_types.h
-ask.o: ../FL/Enumerations.H
-ask.o: ../FL/Fl.H
-ask.o: ../FL/fl_ask.H
-ask.o: ../FL/fl_attr.h
-ask.o: ../FL/Fl_Bitmap.H
-ask.o: ../FL/Fl_Box.H
-ask.o: ../FL/Fl_Button.H
-ask.o: ../FL/Fl_Cairo.H
-ask.o: ../FL/fl_casts.H
-ask.o: ../FL/fl_config.h
-ask.o: ../FL/Fl_Double_Window.H
-ask.o: ../FL/Fl_Export.H
-ask.o: ../FL/Fl_Group.H
-ask.o: ../FL/Fl_Image.H
-ask.o: ../FL/Fl_Input.H
-ask.o: ../FL/Fl_Input_.H
-ask.o: ../FL/Fl_Return_Button.H
-ask.o: ../FL/fl_types.h
-ask.o: ../FL/fl_utf8.h
-ask.o: ../FL/Fl_Widget.H
-ask.o: ../FL/Fl_Window.H
-ask.o: ../FL/platform_types.h
-bitmap.o: ../FL/Enumerations.H
-bitmap.o: ../FL/Fl.H
-bitmap.o: ../FL/fl_attr.h
-bitmap.o: ../FL/Fl_Bitmap.H
-bitmap.o: ../FL/Fl_Button.H
-bitmap.o: ../FL/Fl_Cairo.H
-bitmap.o: ../FL/fl_casts.H
-bitmap.o: ../FL/fl_config.h
-bitmap.o: ../FL/Fl_Double_Window.H
-bitmap.o: ../FL/Fl_Export.H
-bitmap.o: ../FL/Fl_Group.H
-bitmap.o: ../FL/Fl_Image.H
-bitmap.o: ../FL/Fl_Toggle_Button.H
-bitmap.o: ../FL/fl_types.h
-bitmap.o: ../FL/fl_utf8.h
-bitmap.o: ../FL/Fl_Widget.H
-bitmap.o: ../FL/Fl_Window.H
-bitmap.o: ../FL/platform_types.h
-bitmap.o: pixmaps/sorceress.xbm
-blocks.o: ../config.h
-blocks.o: ../FL/Enumerations.H
-blocks.o: ../FL/Fl.H
-blocks.o: ../FL/fl_attr.h
-blocks.o: ../FL/Fl_Bitmap.H
-blocks.o: ../FL/Fl_Button.H
-blocks.o: ../FL/Fl_Cairo.H
-blocks.o: ../FL/fl_casts.H
-blocks.o: ../FL/fl_config.h
-blocks.o: ../FL/Fl_Device.H
-blocks.o: ../FL/Fl_Double_Window.H
-blocks.o: ../FL/fl_draw.H
-blocks.o: ../FL/Fl_Export.H
-blocks.o: ../FL/Fl_Graphics_Driver.H
-blocks.o: ../FL/Fl_Group.H
-blocks.o: ../FL/Fl_Image.H
-blocks.o: ../FL/Fl_Pixmap.H
-blocks.o: ../FL/Fl_Plugin.H
-blocks.o: ../FL/Fl_Preferences.H
-blocks.o: ../FL/Fl_Rect.H
-blocks.o: ../FL/Fl_RGB_Image.H
-blocks.o: ../FL/Fl_Tiled_Image.H
-blocks.o: ../FL/fl_types.h
-blocks.o: ../FL/fl_utf8.h
-blocks.o: ../FL/Fl_Widget.H
-blocks.o: ../FL/Fl_Window.H
-blocks.o: ../FL/Fl_XBM_Image.H
-blocks.o: ../FL/Fl_XPM_Image.H
-blocks.o: ../FL/platform.H
-blocks.o: ../FL/platform_types.h
-blocks.o: ../FL/x11.H
-blocks.o: pixmaps/blast.xpm
-blocks.o: pixmaps/blue.xpm
-blocks.o: pixmaps/blue_bomb.xpm
-blocks.o: pixmaps/cyan.xpm
-blocks.o: pixmaps/cyan_bomb.xpm
-blocks.o: pixmaps/gray.xpm
-blocks.o: pixmaps/gray_bomb.xpm
-blocks.o: pixmaps/green.xpm
-blocks.o: pixmaps/green_bomb.xpm
-blocks.o: pixmaps/magenta.xpm
-blocks.o: pixmaps/magenta_bomb.xpm
-blocks.o: pixmaps/red.xpm
-blocks.o: pixmaps/red_bomb.xpm
-blocks.o: pixmaps/yellow.xpm
-blocks.o: pixmaps/yellow_bomb.xpm
-boxtype.o: ../FL/Enumerations.H
-boxtype.o: ../FL/Fl.H
-boxtype.o: ../FL/fl_attr.h
-boxtype.o: ../FL/Fl_Bitmap.H
-boxtype.o: ../FL/Fl_Button.H
-boxtype.o: ../FL/Fl_Cairo.H
-boxtype.o: ../FL/fl_casts.H
-boxtype.o: ../FL/Fl_Choice.H
-boxtype.o: ../FL/fl_config.h
-boxtype.o: ../FL/Fl_Device.H
-boxtype.o: ../FL/Fl_Double_Window.H
-boxtype.o: ../FL/fl_draw.H
-boxtype.o: ../FL/Fl_Export.H
-boxtype.o: ../FL/Fl_Graphics_Driver.H
-boxtype.o: ../FL/Fl_Group.H
-boxtype.o: ../FL/Fl_Image.H
-boxtype.o: ../FL/Fl_Menu_.H
-boxtype.o: ../FL/Fl_Menu_Item.H
-boxtype.o: ../FL/Fl_Multi_Label.H
-boxtype.o: ../FL/Fl_Pixmap.H
-boxtype.o: ../FL/Fl_Plugin.H
-boxtype.o: ../FL/Fl_Preferences.H
-boxtype.o: ../FL/Fl_Rect.H
-boxtype.o: ../FL/Fl_RGB_Image.H
-boxtype.o: ../FL/Fl_Scheme.H
-boxtype.o: ../FL/Fl_Scheme_Choice.H
-boxtype.o: ../FL/fl_types.h
-boxtype.o: ../FL/fl_utf8.h
-boxtype.o: ../FL/Fl_Widget.H
-boxtype.o: ../FL/Fl_Window.H
-boxtype.o: ../FL/platform_types.h
-browser.o: ../FL/Enumerations.H
-browser.o: ../FL/Fl.H
-browser.o: ../FL/fl_ask.H
-browser.o: ../FL/fl_attr.h
-browser.o: ../FL/Fl_Bitmap.H
-browser.o: ../FL/Fl_Browser.H
-browser.o: ../FL/Fl_Browser_.H
-browser.o: ../FL/Fl_Button.H
-browser.o: ../FL/Fl_Cairo.H
-browser.o: ../FL/fl_casts.H
-browser.o: ../FL/Fl_Choice.H
-browser.o: ../FL/fl_config.h
-browser.o: ../FL/Fl_Double_Window.H
-browser.o: ../FL/Fl_Export.H
-browser.o: ../FL/Fl_Group.H
-browser.o: ../FL/Fl_Image.H
-browser.o: ../FL/Fl_Input.H
-browser.o: ../FL/Fl_Input_.H
-browser.o: ../FL/Fl_Int_Input.H
-browser.o: ../FL/Fl_Menu_.H
-browser.o: ../FL/Fl_Menu_Item.H
-browser.o: ../FL/Fl_Multi_Label.H
-browser.o: ../FL/Fl_Rect.H
-browser.o: ../FL/Fl_Scrollbar.H
-browser.o: ../FL/Fl_Select_Browser.H
-browser.o: ../FL/Fl_Slider.H
-browser.o: ../FL/Fl_Terminal.H
-browser.o: ../FL/fl_types.h
-browser.o: ../FL/fl_utf8.h
-browser.o: ../FL/Fl_Valuator.H
-browser.o: ../FL/Fl_Widget.H
-browser.o: ../FL/Fl_Window.H
-browser.o: ../FL/platform_types.h
-button.o: ../FL/Enumerations.H
-button.o: ../FL/Fl.H
-button.o: ../FL/fl_ask.H
-button.o: ../FL/fl_attr.h
-button.o: ../FL/Fl_Button.H
-button.o: ../FL/Fl_Cairo.H
-button.o: ../FL/fl_casts.H
-button.o: ../FL/fl_config.h
-button.o: ../FL/Fl_Export.H
-button.o: ../FL/fl_types.h
-button.o: ../FL/fl_utf8.h
-button.o: ../FL/Fl_Window.H
-button.o: ../FL/platform_types.h
-buttons.o: ../FL/Enumerations.H
-buttons.o: ../FL/Fl.H
-buttons.o: ../FL/fl_attr.h
-buttons.o: ../FL/Fl_Button.H
-buttons.o: ../FL/Fl_Cairo.H
-buttons.o: ../FL/fl_casts.H
-buttons.o: ../FL/Fl_Check_Button.H
-buttons.o: ../FL/Fl_Choice.H
-buttons.o: ../FL/fl_config.h
-buttons.o: ../FL/Fl_Export.H
-buttons.o: ../FL/Fl_Image.H
-buttons.o: ../FL/Fl_Light_Button.H
-buttons.o: ../FL/Fl_Menu_.H
-buttons.o: ../FL/Fl_Menu_Item.H
-buttons.o: ../FL/Fl_Multi_Label.H
-buttons.o: ../FL/Fl_Repeat_Button.H
-buttons.o: ../FL/Fl_Return_Button.H
-buttons.o: ../FL/Fl_Round_Button.H
-buttons.o: ../FL/Fl_Scheme.H
-buttons.o: ../FL/Fl_Scheme_Choice.H
-buttons.o: ../FL/fl_types.h
-buttons.o: ../FL/fl_utf8.h
-buttons.o: ../FL/Fl_Widget.H
-buttons.o: ../FL/Fl_Window.H
-buttons.o: ../FL/platform_types.h
-cairo_test.o: ../FL/Enumerations.H
-cairo_test.o: ../FL/Fl.H
-cairo_test.o: ../FL/fl_attr.h
-cairo_test.o: ../FL/Fl_Bitmap.H
-cairo_test.o: ../FL/Fl_Box.H
-cairo_test.o: ../FL/Fl_Cairo.H
-cairo_test.o: ../FL/Fl_Cairo_Window.H
-cairo_test.o: ../FL/fl_casts.H
-cairo_test.o: ../FL/fl_config.h
-cairo_test.o: ../FL/Fl_Device.H
-cairo_test.o: ../FL/Fl_Double_Window.H
-cairo_test.o: ../FL/fl_draw.H
-cairo_test.o: ../FL/Fl_Export.H
-cairo_test.o: ../FL/Fl_Graphics_Driver.H
-cairo_test.o: ../FL/Fl_Group.H
-cairo_test.o: ../FL/Fl_Image.H
-cairo_test.o: ../FL/Fl_Pixmap.H
-cairo_test.o: ../FL/Fl_Plugin.H
-cairo_test.o: ../FL/Fl_Preferences.H
-cairo_test.o: ../FL/Fl_Rect.H
-cairo_test.o: ../FL/Fl_RGB_Image.H
-cairo_test.o: ../FL/fl_types.h
-cairo_test.o: ../FL/fl_utf8.h
-cairo_test.o: ../FL/Fl_Widget.H
-cairo_test.o: ../FL/Fl_Window.H
-cairo_test.o: ../FL/math.h
-cairo_test.o: ../FL/platform.H
-cairo_test.o: ../FL/platform_types.h
-cairo_test.o: ../FL/x11.H
-checkers.o: ../FL/Enumerations.H
-checkers.o: ../FL/Fl.H
-checkers.o: ../FL/fl_ask.H
-checkers.o: ../FL/fl_attr.h
-checkers.o: ../FL/Fl_Bitmap.H
-checkers.o: ../FL/Fl_Box.H
-checkers.o: ../FL/Fl_Cairo.H
-checkers.o: ../FL/fl_casts.H
-checkers.o: ../FL/fl_config.h
-checkers.o: ../FL/Fl_Device.H
-checkers.o: ../FL/Fl_Double_Window.H
-checkers.o: ../FL/fl_draw.H
-checkers.o: ../FL/Fl_Export.H
-checkers.o: ../FL/Fl_Graphics_Driver.H
-checkers.o: ../FL/Fl_Group.H
-checkers.o: ../FL/Fl_Image.H
-checkers.o: ../FL/Fl_Menu_Item.H
-checkers.o: ../FL/Fl_Multi_Label.H
-checkers.o: ../FL/Fl_Pixmap.H
-checkers.o: ../FL/Fl_Plugin.H
-checkers.o: ../FL/Fl_PNG_Image.H
-checkers.o: ../FL/Fl_Preferences.H
-checkers.o: ../FL/Fl_Rect.H
-checkers.o: ../FL/Fl_RGB_Image.H
-checkers.o: ../FL/Fl_Slider.H
-checkers.o: ../FL/fl_types.h
-checkers.o: ../FL/fl_utf8.h
-checkers.o: ../FL/Fl_Valuator.H
-checkers.o: ../FL/Fl_Value_Output.H
-checkers.o: ../FL/Fl_Widget.H
-checkers.o: ../FL/Fl_Window.H
-checkers.o: ../FL/platform_types.h
-checkers.o: checkers_pieces.h
-clipboard.o: ../FL/Enumerations.H
-clipboard.o: ../FL/filename.H
-clipboard.o: ../FL/Fl.H
-clipboard.o: ../FL/fl_ask.H
-clipboard.o: ../FL/fl_attr.h
-clipboard.o: ../FL/Fl_Bitmap.H
-clipboard.o: ../FL/Fl_Box.H
-clipboard.o: ../FL/Fl_Browser.H
-clipboard.o: ../FL/Fl_Browser_.H
-clipboard.o: ../FL/Fl_Button.H
-clipboard.o: ../FL/Fl_Cairo.H
-clipboard.o: ../FL/fl_casts.H
-clipboard.o: ../FL/Fl_Check_Button.H
-clipboard.o: ../FL/Fl_Choice.H
-clipboard.o: ../FL/fl_config.h
-clipboard.o: ../FL/Fl_Device.H
-clipboard.o: ../FL/Fl_Double_Window.H
-clipboard.o: ../FL/fl_draw.H
-clipboard.o: ../FL/Fl_Export.H
-clipboard.o: ../FL/Fl_File_Browser.H
-clipboard.o: ../FL/Fl_File_Chooser.H
-clipboard.o: ../FL/Fl_File_Icon.H
-clipboard.o: ../FL/Fl_File_Input.H
-clipboard.o: ../FL/Fl_Graphics_Driver.H
-clipboard.o: ../FL/Fl_Group.H
-clipboard.o: ../FL/Fl_Image.H
-clipboard.o: ../FL/Fl_Input.H
-clipboard.o: ../FL/Fl_Input_.H
-clipboard.o: ../FL/Fl_Light_Button.H
-clipboard.o: ../FL/Fl_Menu_.H
-clipboard.o: ../FL/Fl_Menu_Button.H
-clipboard.o: ../FL/Fl_Menu_Item.H
-clipboard.o: ../FL/Fl_Multi_Label.H
-clipboard.o: ../FL/Fl_Native_File_Chooser.H
-clipboard.o: ../FL/Fl_Pixmap.H
-clipboard.o: ../FL/Fl_Plugin.H
-clipboard.o: ../FL/Fl_PNG_Image.H
-clipboard.o: ../FL/Fl_Preferences.H
-clipboard.o: ../FL/Fl_Rect.H
-clipboard.o: ../FL/Fl_Return_Button.H
-clipboard.o: ../FL/Fl_RGB_Image.H
-clipboard.o: ../FL/Fl_Scrollbar.H
-clipboard.o: ../FL/Fl_Shared_Image.H
-clipboard.o: ../FL/Fl_Slider.H
-clipboard.o: ../FL/Fl_Tabs.H
-clipboard.o: ../FL/Fl_Text_Buffer.H
-clipboard.o: ../FL/Fl_Text_Display.H
-clipboard.o: ../FL/Fl_Tile.H
-clipboard.o: ../FL/fl_types.h
-clipboard.o: ../FL/fl_utf8.h
-clipboard.o: ../FL/Fl_Valuator.H
-clipboard.o: ../FL/Fl_Widget.H
-clipboard.o: ../FL/Fl_Window.H
-clipboard.o: ../FL/platform_types.h
-clock.o: ../FL/Enumerations.H
-clock.o: ../FL/Fl.H
-clock.o: ../FL/fl_attr.h
-clock.o: ../FL/Fl_Bitmap.H
-clock.o: ../FL/Fl_Cairo.H
-clock.o: ../FL/fl_casts.H
-clock.o: ../FL/Fl_Clock.H
-clock.o: ../FL/fl_config.h
-clock.o: ../FL/Fl_Double_Window.H
-clock.o: ../FL/Fl_Export.H
-clock.o: ../FL/Fl_Group.H
-clock.o: ../FL/Fl_Image.H
-clock.o: ../FL/Fl_Round_Clock.H
-clock.o: ../FL/fl_types.h
-clock.o: ../FL/fl_utf8.h
-clock.o: ../FL/Fl_Widget.H
-clock.o: ../FL/Fl_Window.H
-clock.o: ../FL/platform_types.h
-colbrowser.o: ../FL/Enumerations.H
-colbrowser.o: ../FL/filename.H
-colbrowser.o: ../FL/Fl.H
-colbrowser.o: ../FL/fl_ask.H
-colbrowser.o: ../FL/fl_attr.h
-colbrowser.o: ../FL/Fl_Bitmap.H
-colbrowser.o: ../FL/Fl_Box.H
-colbrowser.o: ../FL/Fl_Browser.H
-colbrowser.o: ../FL/Fl_Browser_.H
-colbrowser.o: ../FL/Fl_Button.H
-colbrowser.o: ../FL/Fl_Cairo.H
-colbrowser.o: ../FL/fl_casts.H
-colbrowser.o: ../FL/fl_config.h
-colbrowser.o: ../FL/Fl_Double_Window.H
-colbrowser.o: ../FL/Fl_Export.H
-colbrowser.o: ../FL/Fl_Group.H
-colbrowser.o: ../FL/Fl_Hold_Browser.H
-colbrowser.o: ../FL/Fl_Image.H
-colbrowser.o: ../FL/Fl_Scrollbar.H
-colbrowser.o: ../FL/Fl_Slider.H
-colbrowser.o: ../FL/fl_types.h
-colbrowser.o: ../FL/fl_utf8.h
-colbrowser.o: ../FL/Fl_Valuator.H
-colbrowser.o: ../FL/Fl_Value_Slider.H
-colbrowser.o: ../FL/Fl_Widget.H
-colbrowser.o: ../FL/Fl_Window.H
-colbrowser.o: ../FL/platform_types.h
-color_chooser.o: ../config.h
-color_chooser.o: ../FL/Enumerations.H
-color_chooser.o: ../FL/Fl.H
-color_chooser.o: ../FL/fl_attr.h
-color_chooser.o: ../FL/Fl_Bitmap.H
-color_chooser.o: ../FL/Fl_Box.H
-color_chooser.o: ../FL/Fl_Button.H
-color_chooser.o: ../FL/Fl_Cairo.H
-color_chooser.o: ../FL/fl_casts.H
-color_chooser.o: ../FL/Fl_Choice.H
-color_chooser.o: ../FL/Fl_Color_Chooser.H
-color_chooser.o: ../FL/fl_config.h
-color_chooser.o: ../FL/Fl_Device.H
-color_chooser.o: ../FL/fl_draw.H
-color_chooser.o: ../FL/Fl_Export.H
-color_chooser.o: ../FL/Fl_Graphics_Driver.H
-color_chooser.o: ../FL/Fl_Group.H
-color_chooser.o: ../FL/Fl_Image.H
-color_chooser.o: ../FL/Fl_Input.H
-color_chooser.o: ../FL/Fl_Input_.H
-color_chooser.o: ../FL/Fl_Menu_.H
-color_chooser.o: ../FL/Fl_Menu_Item.H
-color_chooser.o: ../FL/Fl_Multi_Label.H
-color_chooser.o: ../FL/Fl_Pixmap.H
-color_chooser.o: ../FL/Fl_Plugin.H
-color_chooser.o: ../FL/Fl_Preferences.H
-color_chooser.o: ../FL/Fl_Rect.H
-color_chooser.o: ../FL/Fl_Return_Button.H
-color_chooser.o: ../FL/Fl_RGB_Image.H
-color_chooser.o: ../FL/fl_show_colormap.H
-color_chooser.o: ../FL/fl_types.h
-color_chooser.o: ../FL/fl_utf8.h
-color_chooser.o: ../FL/Fl_Valuator.H
-color_chooser.o: ../FL/Fl_Value_Input.H
-color_chooser.o: ../FL/Fl_Widget.H
-color_chooser.o: ../FL/Fl_Window.H
-color_chooser.o: ../FL/platform.H
-color_chooser.o: ../FL/platform_types.h
-color_chooser.o: ../FL/x11.H
-color_chooser.o: list_visuals.cxx
-contrast.o: ../FL/Enumerations.H
-contrast.o: ../FL/Fl.H
-contrast.o: ../FL/fl_attr.h
-contrast.o: ../FL/Fl_Bitmap.H
-contrast.o: ../FL/Fl_Box.H
-contrast.o: ../FL/Fl_Button.H
-contrast.o: ../FL/Fl_Cairo.H
-contrast.o: ../FL/fl_casts.H
-contrast.o: ../FL/Fl_Choice.H
-contrast.o: ../FL/Fl_Color_Chooser.H
-contrast.o: ../FL/fl_config.h
-contrast.o: ../FL/Fl_Device.H
-contrast.o: ../FL/Fl_Double_Window.H
-contrast.o: ../FL/fl_draw.H
-contrast.o: ../FL/Fl_Export.H
-contrast.o: ../FL/Fl_Graphics_Driver.H
-contrast.o: ../FL/Fl_Group.H
-contrast.o: ../FL/Fl_Hor_Value_Slider.H
-contrast.o: ../FL/Fl_Image.H
-contrast.o: ../FL/Fl_Input.H
-contrast.o: ../FL/Fl_Input_.H
-contrast.o: ../FL/Fl_Light_Button.H
-contrast.o: ../FL/Fl_Menu_.H
-contrast.o: ../FL/Fl_Menu_Item.H
-contrast.o: ../FL/Fl_Multi_Label.H
-contrast.o: ../FL/Fl_Output.H
-contrast.o: ../FL/Fl_Pixmap.H
-contrast.o: ../FL/Fl_Plugin.H
-contrast.o: ../FL/Fl_Preferences.H
-contrast.o: ../FL/Fl_Radio_Round_Button.H
-contrast.o: ../FL/Fl_Rect.H
-contrast.o: ../FL/Fl_Return_Button.H
-contrast.o: ../FL/Fl_RGB_Image.H
-contrast.o: ../FL/Fl_Round_Button.H
-contrast.o: ../FL/Fl_Scrollbar.H
-contrast.o: ../FL/Fl_Slider.H
-contrast.o: ../FL/Fl_Terminal.H
-contrast.o: ../FL/fl_types.h
-contrast.o: ../FL/fl_utf8.h
-contrast.o: ../FL/Fl_Valuator.H
-contrast.o: ../FL/Fl_Value_Input.H
-contrast.o: ../FL/Fl_Value_Slider.H
-contrast.o: ../FL/Fl_Widget.H
-contrast.o: ../FL/Fl_Window.H
-contrast.o: ../FL/platform_types.h
-cube.o: ../config.h
-cube.o: ../FL/Enumerations.H
-cube.o: ../FL/Fl.H
-cube.o: ../FL/fl_ask.H
-cube.o: ../FL/fl_attr.h
-cube.o: ../FL/Fl_Bitmap.H
-cube.o: ../FL/Fl_Box.H
-cube.o: ../FL/Fl_Button.H
-cube.o: ../FL/Fl_Cairo.H
-cube.o: ../FL/fl_casts.H
-cube.o: ../FL/fl_config.h
-cube.o: ../FL/Fl_Device.H
-cube.o: ../FL/Fl_Export.H
-cube.o: ../FL/Fl_Gl_Window.H
-cube.o: ../FL/Fl_Grid.H
-cube.o: ../FL/Fl_Group.H
-cube.o: ../FL/Fl_Image.H
-cube.o: ../FL/Fl_Light_Button.H
-cube.o: ../FL/Fl_Menu_.H
-cube.o: ../FL/Fl_Menu_Bar.H
-cube.o: ../FL/Fl_Menu_Item.H
-cube.o: ../FL/Fl_Multi_Label.H
-cube.o: ../FL/Fl_Paged_Device.H
-cube.o: ../FL/Fl_Plugin.H
-cube.o: ../FL/Fl_Preferences.H
-cube.o: ../FL/Fl_Printer.H
-cube.o: ../FL/Fl_Radio_Light_Button.H
-cube.o: ../FL/Fl_Rect.H
-cube.o: ../FL/Fl_Slider.H
-cube.o: ../FL/Fl_Sys_Menu_Bar.H
-cube.o: ../FL/fl_types.h
-cube.o: ../FL/fl_utf8.h
-cube.o: ../FL/Fl_Valuator.H
-cube.o: ../FL/Fl_Widget.H
-cube.o: ../FL/Fl_Widget_Surface.H
-cube.o: ../FL/Fl_Window.H
-cube.o: ../FL/gl.h
-cube.o: ../FL/platform_types.h
-CubeMain.o: ../config.h
-CubeMain.o: ../FL/Enumerations.H
-CubeMain.o: ../FL/Fl.H
-CubeMain.o: ../FL/fl_attr.h
-CubeMain.o: ../FL/Fl_Bitmap.H
-CubeMain.o: ../FL/Fl_Cairo.H
-CubeMain.o: ../FL/fl_casts.H
-CubeMain.o: ../FL/fl_config.h
-CubeMain.o: ../FL/Fl_Double_Window.H
-CubeMain.o: ../FL/Fl_Export.H
-CubeMain.o: ../FL/Fl_Gl_Window.H
-CubeMain.o: ../FL/Fl_Group.H
-CubeMain.o: ../FL/Fl_Image.H
-CubeMain.o: ../FL/Fl_Roller.H
-CubeMain.o: ../FL/Fl_Slider.H
-CubeMain.o: ../FL/fl_types.h
-CubeMain.o: ../FL/fl_utf8.h
-CubeMain.o: ../FL/Fl_Valuator.H
-CubeMain.o: ../FL/Fl_Value_Slider.H
-CubeMain.o: ../FL/Fl_Widget.H
-CubeMain.o: ../FL/Fl_Window.H
-CubeMain.o: ../FL/gl.h
-CubeMain.o: ../FL/platform_types.h
-CubeMain.o: CubeView.h
-CubeMain.o: CubeViewUI.h
-CubeView.o: ../config.h
-CubeView.o: ../FL/Enumerations.H
-CubeView.o: ../FL/Fl.H
-CubeView.o: ../FL/fl_attr.h
-CubeView.o: ../FL/Fl_Bitmap.H
-CubeView.o: ../FL/Fl_Cairo.H
-CubeView.o: ../FL/fl_casts.H
-CubeView.o: ../FL/fl_config.h
-CubeView.o: ../FL/Fl_Export.H
-CubeView.o: ../FL/Fl_Gl_Window.H
-CubeView.o: ../FL/Fl_Group.H
-CubeView.o: ../FL/Fl_Image.H
-CubeView.o: ../FL/fl_types.h
-CubeView.o: ../FL/fl_utf8.h
-CubeView.o: ../FL/Fl_Widget.H
-CubeView.o: ../FL/Fl_Window.H
-CubeView.o: ../FL/gl.h
-CubeView.o: ../FL/platform_types.h
-CubeView.o: CubeView.h
-cursor.o: ../FL/Enumerations.H
-cursor.o: ../FL/Fl.H
-cursor.o: ../FL/fl_attr.h
-cursor.o: ../FL/Fl_Bitmap.H
-cursor.o: ../FL/Fl_Box.H
-cursor.o: ../FL/Fl_Cairo.H
-cursor.o: ../FL/fl_casts.H
-cursor.o: ../FL/Fl_Choice.H
-cursor.o: ../FL/fl_config.h
-cursor.o: ../FL/Fl_Device.H
-cursor.o: ../FL/Fl_Double_Window.H
-cursor.o: ../FL/fl_draw.H
-cursor.o: ../FL/Fl_Export.H
-cursor.o: ../FL/Fl_Graphics_Driver.H
-cursor.o: ../FL/Fl_Group.H
-cursor.o: ../FL/Fl_Hor_Value_Slider.H
-cursor.o: ../FL/Fl_Image.H
-cursor.o: ../FL/Fl_Menu_.H
-cursor.o: ../FL/Fl_Menu_Item.H
-cursor.o: ../FL/Fl_Multi_Label.H
-cursor.o: ../FL/Fl_Pixmap.H
-cursor.o: ../FL/Fl_Plugin.H
-cursor.o: ../FL/Fl_Preferences.H
-cursor.o: ../FL/Fl_Rect.H
-cursor.o: ../FL/Fl_RGB_Image.H
-cursor.o: ../FL/Fl_Slider.H
-cursor.o: ../FL/fl_types.h
-cursor.o: ../FL/fl_utf8.h
-cursor.o: ../FL/Fl_Valuator.H
-cursor.o: ../FL/Fl_Value_Slider.H
-cursor.o: ../FL/Fl_Widget.H
-cursor.o: ../FL/Fl_Window.H
-cursor.o: ../FL/platform_types.h
-cursor.o: ../fluid/pixmaps/compressed.xpm
-curve.o: ../FL/Enumerations.H
-curve.o: ../FL/Fl.H
-curve.o: ../FL/fl_attr.h
-curve.o: ../FL/Fl_Bitmap.H
-curve.o: ../FL/Fl_Button.H
-curve.o: ../FL/Fl_Cairo.H
-curve.o: ../FL/fl_casts.H
-curve.o: ../FL/fl_config.h
-curve.o: ../FL/Fl_Device.H
-curve.o: ../FL/Fl_Double_Window.H
-curve.o: ../FL/fl_draw.H
-curve.o: ../FL/Fl_Export.H
-curve.o: ../FL/Fl_Graphics_Driver.H
-curve.o: ../FL/Fl_Group.H
-curve.o: ../FL/Fl_Hor_Value_Slider.H
-curve.o: ../FL/Fl_Image.H
-curve.o: ../FL/Fl_Pixmap.H
-curve.o: ../FL/Fl_Plugin.H
-curve.o: ../FL/Fl_Preferences.H
-curve.o: ../FL/Fl_Rect.H
-curve.o: ../FL/Fl_RGB_Image.H
-curve.o: ../FL/Fl_Slider.H
-curve.o: ../FL/Fl_Toggle_Button.H
-curve.o: ../FL/fl_types.h
-curve.o: ../FL/fl_utf8.h
-curve.o: ../FL/Fl_Valuator.H
-curve.o: ../FL/Fl_Value_Slider.H
-curve.o: ../FL/Fl_Widget.H
-curve.o: ../FL/Fl_Window.H
-curve.o: ../FL/platform_types.h
-demo.o: ../FL/Enumerations.H
-demo.o: ../FL/filename.H
-demo.o: ../FL/Fl.H
-demo.o: ../FL/fl_ask.H
-demo.o: ../FL/fl_attr.h
-demo.o: ../FL/Fl_Bitmap.H
-demo.o: ../FL/Fl_Box.H
-demo.o: ../FL/Fl_Button.H
-demo.o: ../FL/Fl_Cairo.H
-demo.o: ../FL/fl_casts.H
-demo.o: ../FL/Fl_Choice.H
-demo.o: ../FL/fl_config.h
-demo.o: ../FL/Fl_Double_Window.H
-demo.o: ../FL/Fl_Export.H
-demo.o: ../FL/Fl_Group.H
-demo.o: ../FL/Fl_Image.H
-demo.o: ../FL/Fl_Menu_.H
-demo.o: ../FL/Fl_Menu_Button.H
-demo.o: ../FL/Fl_Menu_Item.H
-demo.o: ../FL/Fl_Multi_Label.H
-demo.o: ../FL/Fl_Rect.H
-demo.o: ../FL/Fl_Scheme.H
-demo.o: ../FL/Fl_Scheme_Choice.H
-demo.o: ../FL/Fl_Scrollbar.H
-demo.o: ../FL/Fl_Terminal.H
-demo.o: ../FL/fl_types.h
-demo.o: ../FL/fl_utf8.h
-demo.o: ../FL/Fl_Widget.H
-demo.o: ../FL/Fl_Window.H
-demo.o: ../FL/platform.H
-demo.o: ../FL/platform_types.h
-demo.o: ../FL/x11.H
-device.o: ../FL/Enumerations.H
-device.o: ../FL/filename.H
-device.o: ../FL/Fl.H
-device.o: ../FL/fl_ask.H
-device.o: ../FL/fl_attr.h
-device.o: ../FL/Fl_Bitmap.H
-device.o: ../FL/Fl_Box.H
-device.o: ../FL/Fl_Browser.H
-device.o: ../FL/Fl_Browser_.H
-device.o: ../FL/Fl_Button.H
-device.o: ../FL/Fl_Cairo.H
-device.o: ../FL/fl_casts.H
-device.o: ../FL/Fl_Check_Button.H
-device.o: ../FL/Fl_Choice.H
-device.o: ../FL/Fl_Clock.H
-device.o: ../FL/fl_config.h
-device.o: ../FL/Fl_Copy_Surface.H
-device.o: ../FL/Fl_Device.H
-device.o: ../FL/Fl_Double_Window.H
-device.o: ../FL/fl_draw.H
-device.o: ../FL/Fl_Export.H
-device.o: ../FL/Fl_File_Browser.H
-device.o: ../FL/Fl_File_Chooser.H
-device.o: ../FL/Fl_File_Icon.H
-device.o: ../FL/Fl_File_Input.H
-device.o: ../FL/Fl_Graphics_Driver.H
-device.o: ../FL/Fl_Group.H
-device.o: ../FL/Fl_Image.H
-device.o: ../FL/Fl_Image_Surface.H
-device.o: ../FL/Fl_Input.H
-device.o: ../FL/Fl_Input_.H
-device.o: ../FL/Fl_Light_Button.H
-device.o: ../FL/Fl_Menu_.H
-device.o: ../FL/Fl_Menu_Button.H
-device.o: ../FL/Fl_Menu_Item.H
-device.o: ../FL/Fl_Multi_Label.H
-device.o: ../FL/Fl_Native_File_Chooser.H
-device.o: ../FL/Fl_Paged_Device.H
-device.o: ../FL/Fl_PDF_File_Surface.H
-device.o: ../FL/Fl_Pixmap.H
-device.o: ../FL/Fl_Plugin.H
-device.o: ../FL/Fl_PostScript.H
-device.o: ../FL/Fl_Preferences.H
-device.o: ../FL/Fl_Printer.H
-device.o: ../FL/Fl_Radio_Round_Button.H
-device.o: ../FL/Fl_Rect.H
-device.o: ../FL/Fl_Return_Button.H
-device.o: ../FL/Fl_RGB_Image.H
-device.o: ../FL/Fl_Round_Button.H
-device.o: ../FL/Fl_Scrollbar.H
-device.o: ../FL/Fl_Shared_Image.H
-device.o: ../FL/Fl_Slider.H
-device.o: ../FL/Fl_SVG_File_Surface.H
-device.o: ../FL/Fl_Tile.H
-device.o: ../FL/fl_types.h
-device.o: ../FL/fl_utf8.h
-device.o: ../FL/Fl_Valuator.H
-device.o: ../FL/Fl_Widget.H
-device.o: ../FL/Fl_Widget_Surface.H
-device.o: ../FL/Fl_Window.H
-device.o: ../FL/platform_types.h
-device.o: pixmaps/porsche.xpm
-device.o: pixmaps/sorceress.xbm
-doublebuffer.o: ../FL/Enumerations.H
-doublebuffer.o: ../FL/Fl.H
-doublebuffer.o: ../FL/fl_attr.h
-doublebuffer.o: ../FL/Fl_Bitmap.H
-doublebuffer.o: ../FL/Fl_Box.H
-doublebuffer.o: ../FL/Fl_Cairo.H
-doublebuffer.o: ../FL/fl_casts.H
-doublebuffer.o: ../FL/fl_config.h
-doublebuffer.o: ../FL/Fl_Device.H
-doublebuffer.o: ../FL/Fl_Double_Window.H
-doublebuffer.o: ../FL/fl_draw.H
-doublebuffer.o: ../FL/Fl_Export.H
-doublebuffer.o: ../FL/Fl_Graphics_Driver.H
-doublebuffer.o: ../FL/Fl_Group.H
-doublebuffer.o: ../FL/Fl_Hor_Slider.H
-doublebuffer.o: ../FL/Fl_Image.H
-doublebuffer.o: ../FL/Fl_Pixmap.H
-doublebuffer.o: ../FL/Fl_Plugin.H
-doublebuffer.o: ../FL/Fl_Preferences.H
-doublebuffer.o: ../FL/Fl_Rect.H
-doublebuffer.o: ../FL/Fl_RGB_Image.H
-doublebuffer.o: ../FL/Fl_Single_Window.H
-doublebuffer.o: ../FL/Fl_Slider.H
-doublebuffer.o: ../FL/fl_types.h
-doublebuffer.o: ../FL/fl_utf8.h
-doublebuffer.o: ../FL/Fl_Valuator.H
-doublebuffer.o: ../FL/Fl_Widget.H
-doublebuffer.o: ../FL/Fl_Window.H
-doublebuffer.o: ../FL/math.h
-doublebuffer.o: ../FL/platform_types.h
-editor.o: ../FL/Enumerations.H
-editor.o: ../FL/filename.H
-editor.o: ../FL/Fl.H
-editor.o: ../FL/fl_ask.H
-editor.o: ../FL/fl_attr.h
-editor.o: ../FL/Fl_Bitmap.H
-editor.o: ../FL/Fl_Box.H
-editor.o: ../FL/Fl_Browser.H
-editor.o: ../FL/Fl_Browser_.H
-editor.o: ../FL/Fl_Button.H
-editor.o: ../FL/Fl_Cairo.H
-editor.o: ../FL/fl_casts.H
-editor.o: ../FL/Fl_Check_Button.H
-editor.o: ../FL/Fl_Choice.H
-editor.o: ../FL/fl_config.h
-editor.o: ../FL/Fl_Device.H
-editor.o: ../FL/Fl_Double_Window.H
-editor.o: ../FL/fl_draw.H
-editor.o: ../FL/Fl_Export.H
-editor.o: ../FL/Fl_File_Browser.H
-editor.o: ../FL/Fl_File_Chooser.H
-editor.o: ../FL/Fl_File_Icon.H
-editor.o: ../FL/Fl_File_Input.H
-editor.o: ../FL/Fl_Flex.H
-editor.o: ../FL/Fl_Graphics_Driver.H
-editor.o: ../FL/Fl_Group.H
-editor.o: ../FL/Fl_Image.H
-editor.o: ../FL/Fl_Input.H
-editor.o: ../FL/Fl_Input_.H
-editor.o: ../FL/Fl_Light_Button.H
-editor.o: ../FL/Fl_Menu_.H
-editor.o: ../FL/Fl_Menu_Bar.H
-editor.o: ../FL/Fl_Menu_Button.H
-editor.o: ../FL/Fl_Menu_Item.H
-editor.o: ../FL/Fl_Multi_Label.H
-editor.o: ../FL/Fl_Native_File_Chooser.H
-editor.o: ../FL/Fl_Pixmap.H
-editor.o: ../FL/Fl_Plugin.H
-editor.o: ../FL/Fl_Preferences.H
-editor.o: ../FL/Fl_Rect.H
-editor.o: ../FL/Fl_Return_Button.H
-editor.o: ../FL/Fl_RGB_Image.H
-editor.o: ../FL/Fl_Scrollbar.H
-editor.o: ../FL/Fl_Slider.H
-editor.o: ../FL/fl_string_functions.h
-editor.o: ../FL/Fl_Text_Buffer.H
-editor.o: ../FL/Fl_Text_Display.H
-editor.o: ../FL/Fl_Text_Editor.H
-editor.o: ../FL/Fl_Tile.H
-editor.o: ../FL/fl_types.h
-editor.o: ../FL/fl_utf8.h
-editor.o: ../FL/Fl_Valuator.H
-editor.o: ../FL/Fl_Widget.H
-editor.o: ../FL/Fl_Window.H
-editor.o: ../FL/platform.H
-editor.o: ../FL/platform_types.h
-editor.o: ../FL/x11.H
-fast_slow.o: ../FL/Enumerations.H
-fast_slow.o: ../FL/Fl.H
-fast_slow.o: ../FL/fl_attr.h
-fast_slow.o: ../FL/Fl_Bitmap.H
-fast_slow.o: ../FL/Fl_Box.H
-fast_slow.o: ../FL/Fl_Cairo.H
-fast_slow.o: ../FL/fl_casts.H
-fast_slow.o: ../FL/fl_config.h
-fast_slow.o: ../FL/Fl_Double_Window.H
-fast_slow.o: ../FL/Fl_Export.H
-fast_slow.o: ../FL/Fl_Group.H
-fast_slow.o: ../FL/Fl_Image.H
-fast_slow.o: ../FL/Fl_Slider.H
-fast_slow.o: ../FL/fl_types.h
-fast_slow.o: ../FL/fl_utf8.h
-fast_slow.o: ../FL/Fl_Valuator.H
-fast_slow.o: ../FL/Fl_Widget.H
-fast_slow.o: ../FL/Fl_Window.H
-fast_slow.o: ../FL/platform_types.h
-fast_slow.o: fast_slow.h
-file_chooser.o: ../FL/Enumerations.H
-file_chooser.o: ../FL/filename.H
-file_chooser.o: ../FL/Fl.H
-file_chooser.o: ../FL/fl_ask.H
-file_chooser.o: ../FL/fl_attr.h
-file_chooser.o: ../FL/Fl_Bitmap.H
-file_chooser.o: ../FL/Fl_Box.H
-file_chooser.o: ../FL/Fl_Browser.H
-file_chooser.o: ../FL/Fl_Browser_.H
-file_chooser.o: ../FL/Fl_Button.H
-file_chooser.o: ../FL/Fl_Cairo.H
-file_chooser.o: ../FL/fl_casts.H
-file_chooser.o: ../FL/Fl_Check_Button.H
-file_chooser.o: ../FL/Fl_Choice.H
-file_chooser.o: ../FL/fl_config.h
-file_chooser.o: ../FL/Fl_Double_Window.H
-file_chooser.o: ../FL/Fl_Export.H
-file_chooser.o: ../FL/Fl_File_Browser.H
-file_chooser.o: ../FL/Fl_File_Chooser.H
-file_chooser.o: ../FL/Fl_File_Icon.H
-file_chooser.o: ../FL/Fl_File_Input.H
-file_chooser.o: ../FL/Fl_Group.H
-file_chooser.o: ../FL/Fl_Image.H
-file_chooser.o: ../FL/Fl_Input.H
-file_chooser.o: ../FL/Fl_Input_.H
-file_chooser.o: ../FL/Fl_Light_Button.H
-file_chooser.o: ../FL/Fl_Menu_.H
-file_chooser.o: ../FL/Fl_Menu_Button.H
-file_chooser.o: ../FL/Fl_Menu_Item.H
-file_chooser.o: ../FL/Fl_Multi_Label.H
-file_chooser.o: ../FL/Fl_PNM_Image.H
-file_chooser.o: ../FL/Fl_Preferences.H
-file_chooser.o: ../FL/Fl_Rect.H
-file_chooser.o: ../FL/Fl_Return_Button.H
-file_chooser.o: ../FL/Fl_Scrollbar.H
-file_chooser.o: ../FL/Fl_Shared_Image.H
-file_chooser.o: ../FL/Fl_Slider.H
-file_chooser.o: ../FL/Fl_Terminal.H
-file_chooser.o: ../FL/Fl_Tile.H
-file_chooser.o: ../FL/fl_types.h
-file_chooser.o: ../FL/fl_utf8.h
-file_chooser.o: ../FL/Fl_Valuator.H
-file_chooser.o: ../FL/Fl_Widget.H
-file_chooser.o: ../FL/Fl_Window.H
-file_chooser.o: ../FL/platform_types.h
-flex_demo.o: ../FL/Enumerations.H
-flex_demo.o: ../FL/Fl.H
-flex_demo.o: ../FL/fl_attr.h
-flex_demo.o: ../FL/Fl_Bitmap.H
-flex_demo.o: ../FL/Fl_Box.H
-flex_demo.o: ../FL/Fl_Button.H
-flex_demo.o: ../FL/Fl_Cairo.H
-flex_demo.o: ../FL/fl_casts.H
-flex_demo.o: ../FL/fl_config.h
-flex_demo.o: ../FL/Fl_Double_Window.H
-flex_demo.o: ../FL/Fl_Export.H
-flex_demo.o: ../FL/Fl_Flex.H
-flex_demo.o: ../FL/Fl_Group.H
-flex_demo.o: ../FL/Fl_Image.H
-flex_demo.o: ../FL/Fl_Input.H
-flex_demo.o: ../FL/Fl_Input_.H
-flex_demo.o: ../FL/fl_types.h
-flex_demo.o: ../FL/fl_utf8.h
-flex_demo.o: ../FL/Fl_Widget.H
-flex_demo.o: ../FL/Fl_Window.H
-flex_demo.o: ../FL/platform_types.h
-flex_login.o: ../FL/Enumerations.H
-flex_login.o: ../FL/Fl.H
-flex_login.o: ../FL/fl_attr.h
-flex_login.o: ../FL/Fl_Bitmap.H
-flex_login.o: ../FL/Fl_Box.H
-flex_login.o: ../FL/Fl_Button.H
-flex_login.o: ../FL/Fl_Cairo.H
-flex_login.o: ../FL/fl_casts.H
-flex_login.o: ../FL/fl_config.h
-flex_login.o: ../FL/Fl_Double_Window.H
-flex_login.o: ../FL/Fl_Export.H
-flex_login.o: ../FL/Fl_Flex.H
-flex_login.o: ../FL/Fl_Group.H
-flex_login.o: ../FL/Fl_Image.H
-flex_login.o: ../FL/Fl_Input.H
-flex_login.o: ../FL/Fl_Input_.H
-flex_login.o: ../FL/fl_types.h
-flex_login.o: ../FL/fl_utf8.h
-flex_login.o: ../FL/Fl_Widget.H
-flex_login.o: ../FL/Fl_Window.H
-flex_login.o: ../FL/platform_types.h
-fltk-versions.o: ../FL/Enumerations.H
-fltk-versions.o: ../FL/Fl.H
-fltk-versions.o: ../FL/fl_ask.H
-fltk-versions.o: ../FL/fl_attr.h
-fltk-versions.o: ../FL/Fl_Box.H
-fltk-versions.o: ../FL/Fl_Cairo.H
-fltk-versions.o: ../FL/fl_casts.H
-fltk-versions.o: ../FL/fl_config.h
-fltk-versions.o: ../FL/Fl_Export.H
-fltk-versions.o: ../FL/Fl_Grid.H
-fltk-versions.o: ../FL/Fl_Group.H
-fltk-versions.o: ../FL/Fl_Rect.H
-fltk-versions.o: ../FL/fl_types.h
-fltk-versions.o: ../FL/fl_utf8.h
-fltk-versions.o: ../FL/Fl_Widget.H
-fltk-versions.o: ../FL/Fl_Window.H
-fltk-versions.o: ../FL/platform.H
-fltk-versions.o: ../FL/platform_types.h
-fltk-versions.o: ../FL/x11.H
-fonts.o: ../FL/Enumerations.H
-fonts.o: ../FL/filename.H
-fonts.o: ../FL/Fl.H
-fonts.o: ../FL/fl_ask.H
-fonts.o: ../FL/fl_attr.h
-fonts.o: ../FL/Fl_Bitmap.H
-fonts.o: ../FL/Fl_Box.H
-fonts.o: ../FL/Fl_Browser.H
-fonts.o: ../FL/Fl_Browser_.H
-fonts.o: ../FL/Fl_Button.H
-fonts.o: ../FL/Fl_Cairo.H
-fonts.o: ../FL/fl_casts.H
-fonts.o: ../FL/Fl_Check_Button.H
-fonts.o: ../FL/Fl_Choice.H
-fonts.o: ../FL/fl_config.h
-fonts.o: ../FL/Fl_Device.H
-fonts.o: ../FL/Fl_Double_Window.H
-fonts.o: ../FL/fl_draw.H
-fonts.o: ../FL/Fl_Export.H
-fonts.o: ../FL/Fl_File_Browser.H
-fonts.o: ../FL/Fl_File_Chooser.H
-fonts.o: ../FL/Fl_File_Icon.H
-fonts.o: ../FL/Fl_File_Input.H
-fonts.o: ../FL/Fl_Graphics_Driver.H
-fonts.o: ../FL/Fl_Group.H
-fonts.o: ../FL/Fl_Hold_Browser.H
-fonts.o: ../FL/Fl_Image.H
-fonts.o: ../FL/Fl_Input.H
-fonts.o: ../FL/Fl_Input_.H
-fonts.o: ../FL/Fl_Light_Button.H
-fonts.o: ../FL/Fl_Menu_.H
-fonts.o: ../FL/Fl_Menu_Button.H
-fonts.o: ../FL/Fl_Menu_Item.H
-fonts.o: ../FL/Fl_Multi_Label.H
-fonts.o: ../FL/Fl_Pixmap.H
-fonts.o: ../FL/Fl_Plugin.H
-fonts.o: ../FL/Fl_Preferences.H
-fonts.o: ../FL/Fl_Rect.H
-fonts.o: ../FL/Fl_Return_Button.H
-fonts.o: ../FL/Fl_RGB_Image.H
-fonts.o: ../FL/Fl_Scrollbar.H
-fonts.o: ../FL/Fl_Slider.H
-fonts.o: ../FL/Fl_Tile.H
-fonts.o: ../FL/fl_types.h
-fonts.o: ../FL/fl_utf8.h
-fonts.o: ../FL/Fl_Valuator.H
-fonts.o: ../FL/Fl_Widget.H
-fonts.o: ../FL/Fl_Window.H
-fonts.o: ../FL/platform_types.h
-forms.o: ../FL/Enumerations.H
-forms.o: ../FL/filename.H
-forms.o: ../FL/Fl.H
-forms.o: ../FL/fl_ask.H
-forms.o: ../FL/fl_attr.h
-forms.o: ../FL/Fl_Bitmap.H
-forms.o: ../FL/Fl_Box.H
-forms.o: ../FL/Fl_Browser.H
-forms.o: ../FL/Fl_Browser_.H
-forms.o: ../FL/Fl_Button.H
-forms.o: ../FL/Fl_Cairo.H
-forms.o: ../FL/fl_casts.H
-forms.o: ../FL/Fl_Chart.H
-forms.o: ../FL/Fl_Check_Button.H
-forms.o: ../FL/Fl_Choice.H
-forms.o: ../FL/Fl_Clock.H
-forms.o: ../FL/fl_config.h
-forms.o: ../FL/Fl_Counter.H
-forms.o: ../FL/Fl_Device.H
-forms.o: ../FL/Fl_Dial.H
-forms.o: ../FL/Fl_Double_Window.H
-forms.o: ../FL/fl_draw.H
-forms.o: ../FL/Fl_Export.H
-forms.o: ../FL/Fl_File_Browser.H
-forms.o: ../FL/Fl_File_Chooser.H
-forms.o: ../FL/Fl_File_Icon.H
-forms.o: ../FL/Fl_File_Input.H
-forms.o: ../FL/Fl_FormsBitmap.H
-forms.o: ../FL/Fl_FormsPixmap.H
-forms.o: ../FL/Fl_Free.H
-forms.o: ../FL/Fl_Graphics_Driver.H
-forms.o: ../FL/Fl_Group.H
-forms.o: ../FL/Fl_Image.H
-forms.o: ../FL/Fl_Input.H
-forms.o: ../FL/Fl_Input_.H
-forms.o: ../FL/Fl_Light_Button.H
-forms.o: ../FL/Fl_Menu_.H
-forms.o: ../FL/Fl_Menu_Button.H
-forms.o: ../FL/Fl_Menu_Item.H
-forms.o: ../FL/Fl_Multi_Label.H
-forms.o: ../FL/Fl_Pixmap.H
-forms.o: ../FL/Fl_Plugin.H
-forms.o: ../FL/Fl_Positioner.H
-forms.o: ../FL/Fl_Preferences.H
-forms.o: ../FL/Fl_Rect.H
-forms.o: ../FL/Fl_Return_Button.H
-forms.o: ../FL/Fl_RGB_Image.H
-forms.o: ../FL/Fl_Round_Button.H
-forms.o: ../FL/Fl_Scrollbar.H
-forms.o: ../FL/fl_show_colormap.H
-forms.o: ../FL/Fl_Slider.H
-forms.o: ../FL/Fl_Tile.H
-forms.o: ../FL/Fl_Timer.H
-forms.o: ../FL/fl_types.h
-forms.o: ../FL/fl_utf8.h
-forms.o: ../FL/Fl_Valuator.H
-forms.o: ../FL/Fl_Value_Slider.H
-forms.o: ../FL/Fl_Widget.H
-forms.o: ../FL/Fl_Window.H
-forms.o: ../FL/forms.H
-forms.o: ../FL/platform_types.h
-forms.o: pixmaps/sorceress.xbm
-fractals.o: ../config.h
-fractals.o: ../FL/Enumerations.H
-fractals.o: ../FL/Fl.H
-fractals.o: ../FL/fl_attr.h
-fractals.o: ../FL/Fl_Bitmap.H
-fractals.o: ../FL/Fl_Button.H
-fractals.o: ../FL/Fl_Cairo.H
-fractals.o: ../FL/fl_casts.H
-fractals.o: ../FL/fl_config.h
-fractals.o: ../FL/Fl_Export.H
-fractals.o: ../FL/Fl_Gl_Window.H
-fractals.o: ../FL/Fl_Group.H
-fractals.o: ../FL/Fl_Image.H
-fractals.o: ../FL/fl_types.h
-fractals.o: ../FL/fl_utf8.h
-fractals.o: ../FL/Fl_Widget.H
-fractals.o: ../FL/Fl_Window.H
-fractals.o: ../FL/gl.h
-fractals.o: ../FL/glu.h
-fractals.o: ../FL/glut.H
-fractals.o: ../FL/platform_types.h
-fractals.o: fracviewer.h
-fracviewer.o: ../config.h
-fracviewer.o: ../FL/Enumerations.H
-fracviewer.o: ../FL/Fl.H
-fracviewer.o: ../FL/fl_attr.h
-fracviewer.o: ../FL/Fl_Bitmap.H
-fracviewer.o: ../FL/Fl_Cairo.H
-fracviewer.o: ../FL/fl_casts.H
-fracviewer.o: ../FL/fl_config.h
-fracviewer.o: ../FL/Fl_Export.H
-fracviewer.o: ../FL/Fl_Gl_Window.H
-fracviewer.o: ../FL/Fl_Group.H
-fracviewer.o: ../FL/Fl_Image.H
-fracviewer.o: ../FL/fl_types.h
-fracviewer.o: ../FL/fl_utf8.h
-fracviewer.o: ../FL/Fl_Widget.H
-fracviewer.o: ../FL/Fl_Window.H
-fracviewer.o: ../FL/gl.h
-fracviewer.o: ../FL/glu.h
-fracviewer.o: ../FL/glut.H
-fracviewer.o: ../FL/platform_types.h
-fracviewer.o: fracviewer.h
-fullscreen.o: ../config.h
-fullscreen.o: ../FL/Enumerations.H
-fullscreen.o: ../FL/Fl.H
-fullscreen.o: ../FL/fl_ask.H
-fullscreen.o: ../FL/fl_attr.h
-fullscreen.o: ../FL/Fl_Bitmap.H
-fullscreen.o: ../FL/Fl_Browser.H
-fullscreen.o: ../FL/Fl_Browser_.H
-fullscreen.o: ../FL/Fl_Button.H
-fullscreen.o: ../FL/Fl_Cairo.H
-fullscreen.o: ../FL/fl_casts.H
-fullscreen.o: ../FL/fl_config.h
-fullscreen.o: ../FL/Fl_Export.H
-fullscreen.o: ../FL/Fl_Gl_Window.H
-fullscreen.o: ../FL/Fl_Group.H
-fullscreen.o: ../FL/Fl_Hor_Slider.H
-fullscreen.o: ../FL/Fl_Image.H
-fullscreen.o: ../FL/Fl_Input.H
-fullscreen.o: ../FL/Fl_Input_.H
-fullscreen.o: ../FL/Fl_Light_Button.H
-fullscreen.o: ../FL/Fl_Menu_.H
-fullscreen.o: ../FL/Fl_Menu_Button.H
-fullscreen.o: ../FL/Fl_Menu_Item.H
-fullscreen.o: ../FL/Fl_Multi_Label.H
-fullscreen.o: ../FL/Fl_Scrollbar.H
-fullscreen.o: ../FL/Fl_Single_Window.H
-fullscreen.o: ../FL/Fl_Slider.H
-fullscreen.o: ../FL/Fl_Toggle_Light_Button.H
-fullscreen.o: ../FL/fl_types.h
-fullscreen.o: ../FL/fl_utf8.h
-fullscreen.o: ../FL/Fl_Valuator.H
-fullscreen.o: ../FL/Fl_Widget.H
-fullscreen.o: ../FL/Fl_Window.H
-fullscreen.o: ../FL/gl.h
-fullscreen.o: ../FL/math.h
-fullscreen.o: ../FL/platform_types.h
-glpuzzle.o: ../config.h
-glpuzzle.o: ../FL/Enumerations.H
-glpuzzle.o: ../FL/Fl.H
-glpuzzle.o: ../FL/fl_attr.h
-glpuzzle.o: ../FL/Fl_Bitmap.H
-glpuzzle.o: ../FL/Fl_Cairo.H
-glpuzzle.o: ../FL/fl_casts.H
-glpuzzle.o: ../FL/fl_config.h
-glpuzzle.o: ../FL/Fl_Export.H
-glpuzzle.o: ../FL/Fl_Gl_Window.H
-glpuzzle.o: ../FL/Fl_Group.H
-glpuzzle.o: ../FL/Fl_Image.H
-glpuzzle.o: ../FL/fl_types.h
-glpuzzle.o: ../FL/fl_utf8.h
-glpuzzle.o: ../FL/Fl_Widget.H
-glpuzzle.o: ../FL/Fl_Window.H
-glpuzzle.o: ../FL/gl.h
-glpuzzle.o: ../FL/glu.h
-glpuzzle.o: ../FL/glut.H
-glpuzzle.o: ../FL/platform_types.h
-glpuzzle.o: trackball.c
-glpuzzle.o: trackball.h
-glut_test.o: ../FL/Enumerations.H
-glut_test.o: ../FL/Fl.H
-glut_test.o: ../FL/fl_attr.h
-glut_test.o: ../FL/Fl_Bitmap.H
-glut_test.o: ../FL/Fl_Cairo.H
-glut_test.o: ../FL/fl_casts.H
-glut_test.o: ../FL/fl_config.h
-glut_test.o: ../FL/Fl_Export.H
-glut_test.o: ../FL/Fl_Gl_Window.H
-glut_test.o: ../FL/Fl_Group.H
-glut_test.o: ../FL/Fl_Image.H
-glut_test.o: ../FL/fl_types.h
-glut_test.o: ../FL/fl_utf8.h
-glut_test.o: ../FL/Fl_Widget.H
-glut_test.o: ../FL/Fl_Window.H
-glut_test.o: ../FL/gl.h
-glut_test.o: ../FL/glut.H
-glut_test.o: ../FL/platform_types.h
-gl_overlay.o: ../config.h
-gl_overlay.o: ../FL/Enumerations.H
-gl_overlay.o: ../FL/Fl.H
-gl_overlay.o: ../FL/fl_attr.h
-gl_overlay.o: ../FL/Fl_Bitmap.H
-gl_overlay.o: ../FL/Fl_Button.H
-gl_overlay.o: ../FL/Fl_Cairo.H
-gl_overlay.o: ../FL/fl_casts.H
-gl_overlay.o: ../FL/fl_config.h
-gl_overlay.o: ../FL/Fl_Export.H
-gl_overlay.o: ../FL/Fl_Gl_Window.H
-gl_overlay.o: ../FL/Fl_Group.H
-gl_overlay.o: ../FL/Fl_Hor_Slider.H
-gl_overlay.o: ../FL/Fl_Image.H
-gl_overlay.o: ../FL/Fl_Slider.H
-gl_overlay.o: ../FL/Fl_Toggle_Button.H
-gl_overlay.o: ../FL/fl_types.h
-gl_overlay.o: ../FL/fl_utf8.h
-gl_overlay.o: ../FL/Fl_Valuator.H
-gl_overlay.o: ../FL/Fl_Widget.H
-gl_overlay.o: ../FL/Fl_Window.H
-gl_overlay.o: ../FL/gl.h
-gl_overlay.o: ../FL/math.h
-gl_overlay.o: ../FL/platform_types.h
-hello.o: ../FL/Enumerations.H
-hello.o: ../FL/Fl.H
-hello.o: ../FL/fl_attr.h
-hello.o: ../FL/Fl_Box.H
-hello.o: ../FL/Fl_Cairo.H
-hello.o: ../FL/fl_casts.H
-hello.o: ../FL/fl_config.h
-hello.o: ../FL/Fl_Export.H
-hello.o: ../FL/fl_types.h
-hello.o: ../FL/fl_utf8.h
-hello.o: ../FL/Fl_Window.H
-hello.o: ../FL/platform_types.h
-help_dialog.o: ../FL/Enumerations.H
-help_dialog.o: ../FL/filename.H
-help_dialog.o: ../FL/Fl.H
-help_dialog.o: ../FL/fl_attr.h
-help_dialog.o: ../FL/Fl_Bitmap.H
-help_dialog.o: ../FL/Fl_Box.H
-help_dialog.o: ../FL/Fl_Button.H
-help_dialog.o: ../FL/Fl_Cairo.H
-help_dialog.o: ../FL/fl_casts.H
-help_dialog.o: ../FL/fl_config.h
-help_dialog.o: ../FL/Fl_Device.H
-help_dialog.o: ../FL/Fl_Double_Window.H
-help_dialog.o: ../FL/fl_draw.H
-help_dialog.o: ../FL/Fl_Export.H
-help_dialog.o: ../FL/Fl_GIF_Image.H
-help_dialog.o: ../FL/Fl_Graphics_Driver.H
-help_dialog.o: ../FL/Fl_Group.H
-help_dialog.o: ../FL/Fl_Help_Dialog.H
-help_dialog.o: ../FL/Fl_Help_View.H
-help_dialog.o: ../FL/Fl_Image.H
-help_dialog.o: ../FL/Fl_Input.H
-help_dialog.o: ../FL/Fl_Input_.H
-help_dialog.o: ../FL/Fl_Pixmap.H
-help_dialog.o: ../FL/Fl_Plugin.H
-help_dialog.o: ../FL/Fl_Preferences.H
-help_dialog.o: ../FL/Fl_Rect.H
-help_dialog.o: ../FL/Fl_RGB_Image.H
-help_dialog.o: ../FL/Fl_Scrollbar.H
-help_dialog.o: ../FL/Fl_Slider.H
-help_dialog.o: ../FL/fl_types.h
-help_dialog.o: ../FL/fl_utf8.h
-help_dialog.o: ../FL/Fl_Valuator.H
-help_dialog.o: ../FL/Fl_Widget.H
-help_dialog.o: ../FL/Fl_Window.H
-help_dialog.o: ../FL/platform_types.h
-icon.o: ../FL/Enumerations.H
-icon.o: ../FL/Fl.H
-icon.o: ../FL/fl_attr.h
-icon.o: ../FL/Fl_Bitmap.H
-icon.o: ../FL/Fl_Cairo.H
-icon.o: ../FL/fl_casts.H
-icon.o: ../FL/Fl_Choice.H
-icon.o: ../FL/fl_config.h
-icon.o: ../FL/Fl_Double_Window.H
-icon.o: ../FL/Fl_Export.H
-icon.o: ../FL/Fl_Group.H
-icon.o: ../FL/Fl_Image.H
-icon.o: ../FL/Fl_Menu_.H
-icon.o: ../FL/Fl_Menu_Item.H
-icon.o: ../FL/Fl_Multi_Label.H
-icon.o: ../FL/Fl_RGB_Image.H
-icon.o: ../FL/fl_types.h
-icon.o: ../FL/fl_utf8.h
-icon.o: ../FL/Fl_Widget.H
-icon.o: ../FL/Fl_Window.H
-icon.o: ../FL/platform_types.h
-iconize.o: ../FL/Enumerations.H
-iconize.o: ../FL/Fl.H
-iconize.o: ../FL/fl_attr.h
-iconize.o: ../FL/Fl_Box.H
-iconize.o: ../FL/Fl_Button.H
-iconize.o: ../FL/Fl_Cairo.H
-iconize.o: ../FL/fl_casts.H
-iconize.o: ../FL/fl_config.h
-iconize.o: ../FL/Fl_Export.H
-iconize.o: ../FL/fl_types.h
-iconize.o: ../FL/fl_utf8.h
-iconize.o: ../FL/Fl_Window.H
-iconize.o: ../FL/platform_types.h
-image.o: ../config.h
-image.o: ../FL/Enumerations.H
-image.o: ../FL/Fl.H
-image.o: ../FL/fl_attr.h
-image.o: ../FL/Fl_Bitmap.H
-image.o: ../FL/Fl_Button.H
-image.o: ../FL/Fl_Cairo.H
-image.o: ../FL/fl_casts.H
-image.o: ../FL/fl_config.h
-image.o: ../FL/Fl_Double_Window.H
-image.o: ../FL/Fl_Export.H
-image.o: ../FL/Fl_Group.H
-image.o: ../FL/Fl_Image.H
-image.o: ../FL/Fl_Toggle_Button.H
-image.o: ../FL/fl_types.h
-image.o: ../FL/fl_utf8.h
-image.o: ../FL/Fl_Widget.H
-image.o: ../FL/Fl_Window.H
-image.o: ../FL/platform.H
-image.o: ../FL/platform_types.h
-image.o: ../FL/x11.H
-image.o: list_visuals.cxx
-inactive.o: ../FL/Enumerations.H
-inactive.o: ../FL/Fl.H
-inactive.o: ../FL/fl_attr.h
-inactive.o: ../FL/Fl_Bitmap.H
-inactive.o: ../FL/Fl_Box.H
-inactive.o: ../FL/Fl_Button.H
-inactive.o: ../FL/Fl_Cairo.H
-inactive.o: ../FL/fl_casts.H
-inactive.o: ../FL/Fl_Check_Button.H
-inactive.o: ../FL/Fl_Clock.H
-inactive.o: ../FL/fl_config.h
-inactive.o: ../FL/Fl_Dial.H
-inactive.o: ../FL/Fl_Double_Window.H
-inactive.o: ../FL/Fl_Export.H
-inactive.o: ../FL/Fl_Group.H
-inactive.o: ../FL/Fl_Image.H
-inactive.o: ../FL/Fl_Input.H
-inactive.o: ../FL/Fl_Input_.H
-inactive.o: ../FL/Fl_Light_Button.H
-inactive.o: ../FL/Fl_Menu_.H
-inactive.o: ../FL/Fl_Menu_Button.H
-inactive.o: ../FL/Fl_Menu_Item.H
-inactive.o: ../FL/Fl_Multi_Label.H
-inactive.o: ../FL/Fl_Roller.H
-inactive.o: ../FL/Fl_Round_Button.H
-inactive.o: ../FL/Fl_Scrollbar.H
-inactive.o: ../FL/Fl_Slider.H
-inactive.o: ../FL/fl_types.h
-inactive.o: ../FL/fl_utf8.h
-inactive.o: ../FL/Fl_Valuator.H
-inactive.o: ../FL/Fl_Value_Output.H
-inactive.o: ../FL/Fl_Widget.H
-inactive.o: ../FL/Fl_Window.H
-inactive.o: ../FL/platform_types.h
-inactive.o: inactive.h
-input.o: ../FL/Enumerations.H
-input.o: ../FL/Fl.H
-input.o: ../FL/fl_attr.h
-input.o: ../FL/Fl_Box.H
-input.o: ../FL/Fl_Button.H
-input.o: ../FL/Fl_Cairo.H
-input.o: ../FL/fl_casts.H
-input.o: ../FL/Fl_Choice.H
-input.o: ../FL/Fl_Color_Chooser.H
-input.o: ../FL/fl_config.h
-input.o: ../FL/Fl_Export.H
-input.o: ../FL/Fl_Float_Input.H
-input.o: ../FL/Fl_Group.H
-input.o: ../FL/Fl_Image.H
-input.o: ../FL/Fl_Input.H
-input.o: ../FL/Fl_Input_.H
-input.o: ../FL/Fl_Int_Input.H
-input.o: ../FL/Fl_Light_Button.H
-input.o: ../FL/Fl_Menu_.H
-input.o: ../FL/Fl_Menu_Item.H
-input.o: ../FL/Fl_Multiline_Input.H
-input.o: ../FL/Fl_Multi_Label.H
-input.o: ../FL/Fl_Rect.H
-input.o: ../FL/Fl_Return_Button.H
-input.o: ../FL/Fl_Scrollbar.H
-input.o: ../FL/Fl_Secret_Input.H
-input.o: ../FL/Fl_Terminal.H
-input.o: ../FL/Fl_Toggle_Button.H
-input.o: ../FL/fl_types.h
-input.o: ../FL/fl_utf8.h
-input.o: ../FL/Fl_Valuator.H
-input.o: ../FL/Fl_Value_Input.H
-input.o: ../FL/Fl_Widget.H
-input.o: ../FL/Fl_Window.H
-input.o: ../FL/platform_types.h
-input_choice.o: ../FL/Enumerations.H
-input_choice.o: ../FL/Fl.H
-input_choice.o: ../FL/fl_attr.h
-input_choice.o: ../FL/Fl_Bitmap.H
-input_choice.o: ../FL/Fl_Button.H
-input_choice.o: ../FL/Fl_Cairo.H
-input_choice.o: ../FL/fl_casts.H
-input_choice.o: ../FL/Fl_Check_Button.H
-input_choice.o: ../FL/Fl_Choice.H
-input_choice.o: ../FL/fl_config.h
-input_choice.o: ../FL/Fl_Double_Window.H
-input_choice.o: ../FL/Fl_Export.H
-input_choice.o: ../FL/Fl_Group.H
-input_choice.o: ../FL/Fl_Image.H
-input_choice.o: ../FL/Fl_Input.H
-input_choice.o: ../FL/Fl_Input_.H
-input_choice.o: ../FL/Fl_Input_Choice.H
-input_choice.o: ../FL/Fl_Light_Button.H
-input_choice.o: ../FL/Fl_Menu_.H
-input_choice.o: ../FL/Fl_Menu_Button.H
-input_choice.o: ../FL/Fl_Menu_Item.H
-input_choice.o: ../FL/Fl_Multi_Label.H
-input_choice.o: ../FL/Fl_Rect.H
-input_choice.o: ../FL/Fl_Scheme.H
-input_choice.o: ../FL/Fl_Scheme_Choice.H
-input_choice.o: ../FL/Fl_Scrollbar.H
-input_choice.o: ../FL/Fl_Terminal.H
-input_choice.o: ../FL/fl_types.h
-input_choice.o: ../FL/fl_utf8.h
-input_choice.o: ../FL/Fl_Widget.H
-input_choice.o: ../FL/Fl_Window.H
-input_choice.o: ../FL/platform_types.h
-keyboard.o: ../FL/Enumerations.H
-keyboard.o: ../FL/Fl.H
-keyboard.o: ../FL/fl_attr.h
-keyboard.o: ../FL/Fl_Box.H
-keyboard.o: ../FL/Fl_Button.H
-keyboard.o: ../FL/Fl_Cairo.H
-keyboard.o: ../FL/fl_casts.H
-keyboard.o: ../FL/fl_config.h
-keyboard.o: ../FL/Fl_Dial.H
-keyboard.o: ../FL/Fl_Export.H
-keyboard.o: ../FL/Fl_Input.H
-keyboard.o: ../FL/Fl_Input_.H
-keyboard.o: ../FL/Fl_Output.H
-keyboard.o: ../FL/fl_types.h
-keyboard.o: ../FL/fl_utf8.h
-keyboard.o: ../FL/Fl_Window.H
-keyboard.o: ../FL/platform_types.h
-keyboard.o: keyboard.h
-keyboard.o: keyboard_ui.h
-label.o: ../FL/Enumerations.H
-label.o: ../FL/Fl.H
-label.o: ../FL/fl_attr.h
-label.o: ../FL/Fl_Bitmap.H
-label.o: ../FL/Fl_Box.H
-label.o: ../FL/Fl_Button.H
-label.o: ../FL/Fl_Cairo.H
-label.o: ../FL/fl_casts.H
-label.o: ../FL/Fl_Choice.H
-label.o: ../FL/fl_config.h
-label.o: ../FL/Fl_Device.H
-label.o: ../FL/Fl_Double_Window.H
-label.o: ../FL/fl_draw.H
-label.o: ../FL/Fl_Export.H
-label.o: ../FL/Fl_Graphics_Driver.H
-label.o: ../FL/Fl_Group.H
-label.o: ../FL/Fl_Hor_Value_Slider.H
-label.o: ../FL/Fl_Image.H
-label.o: ../FL/Fl_Input.H
-label.o: ../FL/Fl_Input_.H
-label.o: ../FL/Fl_Menu_.H
-label.o: ../FL/Fl_Menu_Item.H
-label.o: ../FL/Fl_Multi_Label.H
-label.o: ../FL/Fl_Pixmap.H
-label.o: ../FL/Fl_Plugin.H
-label.o: ../FL/Fl_Preferences.H
-label.o: ../FL/Fl_Rect.H
-label.o: ../FL/Fl_RGB_Image.H
-label.o: ../FL/Fl_Slider.H
-label.o: ../FL/Fl_Toggle_Button.H
-label.o: ../FL/fl_types.h
-label.o: ../FL/fl_utf8.h
-label.o: ../FL/Fl_Valuator.H
-label.o: ../FL/Fl_Value_Slider.H
-label.o: ../FL/Fl_Widget.H
-label.o: ../FL/Fl_Window.H
-label.o: ../FL/platform_types.h
-label.o: pixmaps/blast.xpm
-line_style.o: ../FL/Enumerations.H
-line_style.o: ../FL/Fl.H
-line_style.o: ../FL/fl_attr.h
-line_style.o: ../FL/Fl_Bitmap.H
-line_style.o: ../FL/Fl_Box.H
-line_style.o: ../FL/Fl_Button.H
-line_style.o: ../FL/Fl_Cairo.H
-line_style.o: ../FL/fl_casts.H
-line_style.o: ../FL/Fl_Check_Button.H
-line_style.o: ../FL/Fl_Choice.H
-line_style.o: ../FL/fl_config.h
-line_style.o: ../FL/Fl_Device.H
-line_style.o: ../FL/Fl_Double_Window.H
-line_style.o: ../FL/fl_draw.H
-line_style.o: ../FL/Fl_Export.H
-line_style.o: ../FL/Fl_Graphics_Driver.H
-line_style.o: ../FL/Fl_Group.H
-line_style.o: ../FL/Fl_Image.H
-line_style.o: ../FL/Fl_Light_Button.H
-line_style.o: ../FL/Fl_Menu_.H
-line_style.o: ../FL/Fl_Menu_Item.H
-line_style.o: ../FL/Fl_Multi_Label.H
-line_style.o: ../FL/Fl_Pixmap.H
-line_style.o: ../FL/Fl_Plugin.H
-line_style.o: ../FL/Fl_Preferences.H
-line_style.o: ../FL/Fl_Rect.H
-line_style.o: ../FL/Fl_RGB_Image.H
-line_style.o: ../FL/Fl_Slider.H
-line_style.o: ../FL/fl_types.h
-line_style.o: ../FL/fl_utf8.h
-line_style.o: ../FL/Fl_Valuator.H
-line_style.o: ../FL/Fl_Value_Slider.H
-line_style.o: ../FL/Fl_Widget.H
-line_style.o: ../FL/Fl_Window.H
-line_style.o: ../FL/platform_types.h
-line_style_docs.o: ../FL/Enumerations.H
-line_style_docs.o: ../FL/Fl.H
-line_style_docs.o: ../FL/fl_attr.h
-line_style_docs.o: ../FL/Fl_Bitmap.H
-line_style_docs.o: ../FL/Fl_Box.H
-line_style_docs.o: ../FL/Fl_Cairo.H
-line_style_docs.o: ../FL/fl_casts.H
-line_style_docs.o: ../FL/fl_config.h
-line_style_docs.o: ../FL/Fl_Device.H
-line_style_docs.o: ../FL/Fl_Double_Window.H
-line_style_docs.o: ../FL/fl_draw.H
-line_style_docs.o: ../FL/Fl_Export.H
-line_style_docs.o: ../FL/Fl_Graphics_Driver.H
-line_style_docs.o: ../FL/Fl_Grid.H
-line_style_docs.o: ../FL/Fl_Group.H
-line_style_docs.o: ../FL/Fl_Image.H
-line_style_docs.o: ../FL/Fl_Pixmap.H
-line_style_docs.o: ../FL/Fl_Plugin.H
-line_style_docs.o: ../FL/Fl_Preferences.H
-line_style_docs.o: ../FL/Fl_Rect.H
-line_style_docs.o: ../FL/Fl_RGB_Image.H
-line_style_docs.o: ../FL/fl_types.h
-line_style_docs.o: ../FL/fl_utf8.h
-line_style_docs.o: ../FL/Fl_Widget.H
-line_style_docs.o: ../FL/Fl_Window.H
-line_style_docs.o: ../FL/platform_types.h
-list_visuals.o: ../config.h
-list_visuals.o: ../FL/Enumerations.H
-list_visuals.o: ../FL/fl_config.h
-list_visuals.o: ../FL/Fl_Export.H
-list_visuals.o: ../FL/fl_types.h
-list_visuals.o: ../FL/platform.H
-list_visuals.o: ../FL/platform_types.h
-list_visuals.o: ../FL/x11.H
-mandelbrot.o: ../FL/Enumerations.H
-mandelbrot.o: ../FL/Fl.H
-mandelbrot.o: ../FL/fl_attr.h
-mandelbrot.o: ../FL/Fl_Bitmap.H
-mandelbrot.o: ../FL/Fl_Box.H
-mandelbrot.o: ../FL/Fl_Button.H
-mandelbrot.o: ../FL/Fl_Cairo.H
-mandelbrot.o: ../FL/fl_casts.H
-mandelbrot.o: ../FL/fl_config.h
-mandelbrot.o: ../FL/Fl_Device.H
-mandelbrot.o: ../FL/Fl_Double_Window.H
-mandelbrot.o: ../FL/fl_draw.H
-mandelbrot.o: ../FL/Fl_Export.H
-mandelbrot.o: ../FL/Fl_Float_Input.H
-mandelbrot.o: ../FL/Fl_Graphics_Driver.H
-mandelbrot.o: ../FL/Fl_Group.H
-mandelbrot.o: ../FL/Fl_Image.H
-mandelbrot.o: ../FL/Fl_Input.H
-mandelbrot.o: ../FL/Fl_Input_.H
-mandelbrot.o: ../FL/Fl_Paged_Device.H
-mandelbrot.o: ../FL/Fl_Pixmap.H
-mandelbrot.o: ../FL/Fl_Plugin.H
-mandelbrot.o: ../FL/Fl_Preferences.H
-mandelbrot.o: ../FL/Fl_Printer.H
-mandelbrot.o: ../FL/Fl_Rect.H
-mandelbrot.o: ../FL/Fl_RGB_Image.H
-mandelbrot.o: ../FL/Fl_Slider.H
-mandelbrot.o: ../FL/fl_types.h
-mandelbrot.o: ../FL/fl_utf8.h
-mandelbrot.o: ../FL/Fl_Valuator.H
-mandelbrot.o: ../FL/Fl_Widget.H
-mandelbrot.o: ../FL/Fl_Widget_Surface.H
-mandelbrot.o: ../FL/Fl_Window.H
-mandelbrot.o: ../FL/platform_types.h
-mandelbrot.o: mandelbrot.h
-mandelbrot.o: mandelbrot_ui.h
-menubar.o: ../FL/Enumerations.H
-menubar.o: ../FL/Fl.H
-menubar.o: ../FL/fl_ask.H
-menubar.o: ../FL/fl_attr.h
-menubar.o: ../FL/Fl_Bitmap.H
-menubar.o: ../FL/Fl_Box.H
-menubar.o: ../FL/Fl_Button.H
-menubar.o: ../FL/Fl_Cairo.H
-menubar.o: ../FL/fl_casts.H
-menubar.o: ../FL/Fl_Choice.H
-menubar.o: ../FL/fl_config.h
-menubar.o: ../FL/Fl_Device.H
-menubar.o: ../FL/Fl_Double_Window.H
-menubar.o: ../FL/fl_draw.H
-menubar.o: ../FL/Fl_Export.H
-menubar.o: ../FL/Fl_Graphics_Driver.H
-menubar.o: ../FL/Fl_Group.H
-menubar.o: ../FL/Fl_Image.H
-menubar.o: ../FL/Fl_Menu_.H
-menubar.o: ../FL/Fl_Menu_Bar.H
-menubar.o: ../FL/Fl_Menu_Button.H
-menubar.o: ../FL/Fl_Menu_Item.H
-menubar.o: ../FL/Fl_Multi_Label.H
-menubar.o: ../FL/Fl_Pixmap.H
-menubar.o: ../FL/Fl_Plugin.H
-menubar.o: ../FL/Fl_Preferences.H
-menubar.o: ../FL/Fl_Rect.H
-menubar.o: ../FL/Fl_RGB_Image.H
-menubar.o: ../FL/Fl_Scheme.H
-menubar.o: ../FL/Fl_Scheme_Choice.H
-menubar.o: ../FL/Fl_Scrollbar.H
-menubar.o: ../FL/Fl_Slider.H
-menubar.o: ../FL/fl_string_functions.h
-menubar.o: ../FL/Fl_Sys_Menu_Bar.H
-menubar.o: ../FL/Fl_Terminal.H
-menubar.o: ../FL/Fl_Toggle_Button.H
-menubar.o: ../FL/fl_types.h
-menubar.o: ../FL/fl_utf8.h
-menubar.o: ../FL/Fl_Valuator.H
-menubar.o: ../FL/Fl_Value_Slider.H
-menubar.o: ../FL/Fl_Widget.H
-menubar.o: ../FL/Fl_Window.H
-menubar.o: ../FL/platform_types.h
-message.o: ../FL/Enumerations.H
-message.o: ../FL/Fl.H
-message.o: ../FL/fl_ask.H
-message.o: ../FL/fl_attr.h
-message.o: ../FL/Fl_Cairo.H
-message.o: ../FL/fl_casts.H
-message.o: ../FL/fl_config.h
-message.o: ../FL/Fl_Export.H
-message.o: ../FL/fl_types.h
-message.o: ../FL/fl_utf8.h
-message.o: ../FL/Fl_Window.H
-message.o: ../FL/platform_types.h
-minimum.o: ../FL/Enumerations.H
-minimum.o: ../FL/Fl.H
-minimum.o: ../FL/fl_attr.h
-minimum.o: ../FL/Fl_Bitmap.H
-minimum.o: ../FL/Fl_Box.H
-minimum.o: ../FL/Fl_Button.H
-minimum.o: ../FL/Fl_Cairo.H
-minimum.o: ../FL/fl_casts.H
-minimum.o: ../FL/fl_config.h
-minimum.o: ../FL/Fl_Double_Window.H
-minimum.o: ../FL/Fl_Export.H
-minimum.o: ../FL/Fl_Group.H
-minimum.o: ../FL/Fl_Image.H
-minimum.o: ../FL/Fl_Return_Button.H
-minimum.o: ../FL/Fl_Slider.H
-minimum.o: ../FL/fl_types.h
-minimum.o: ../FL/fl_utf8.h
-minimum.o: ../FL/Fl_Valuator.H
-minimum.o: ../FL/Fl_Widget.H
-minimum.o: ../FL/Fl_Window.H
-minimum.o: ../FL/platform_types.h
-native-filechooser.o: ../FL/Enumerations.H
-native-filechooser.o: ../FL/filename.H
-native-filechooser.o: ../FL/Fl.H
-native-filechooser.o: ../FL/fl_ask.H
-native-filechooser.o: ../FL/fl_attr.h
-native-filechooser.o: ../FL/Fl_Bitmap.H
-native-filechooser.o: ../FL/Fl_Box.H
-native-filechooser.o: ../FL/Fl_Browser.H
-native-filechooser.o: ../FL/Fl_Browser_.H
-native-filechooser.o: ../FL/Fl_Button.H
-native-filechooser.o: ../FL/Fl_Cairo.H
-native-filechooser.o: ../FL/fl_casts.H
-native-filechooser.o: ../FL/Fl_Check_Button.H
-native-filechooser.o: ../FL/Fl_Choice.H
-native-filechooser.o: ../FL/fl_config.h
-native-filechooser.o: ../FL/Fl_Device.H
-native-filechooser.o: ../FL/Fl_Double_Window.H
-native-filechooser.o: ../FL/fl_draw.H
-native-filechooser.o: ../FL/Fl_Export.H
-native-filechooser.o: ../FL/Fl_File_Browser.H
-native-filechooser.o: ../FL/Fl_File_Chooser.H
-native-filechooser.o: ../FL/Fl_File_Icon.H
-native-filechooser.o: ../FL/Fl_File_Input.H
-native-filechooser.o: ../FL/Fl_Graphics_Driver.H
-native-filechooser.o: ../FL/Fl_Group.H
-native-filechooser.o: ../FL/Fl_Help_View.H
-native-filechooser.o: ../FL/Fl_Image.H
-native-filechooser.o: ../FL/Fl_Input.H
-native-filechooser.o: ../FL/Fl_Input_.H
-native-filechooser.o: ../FL/Fl_Light_Button.H
-native-filechooser.o: ../FL/Fl_Menu_.H
-native-filechooser.o: ../FL/Fl_Menu_Button.H
-native-filechooser.o: ../FL/Fl_Menu_Item.H
-native-filechooser.o: ../FL/Fl_Multiline_Input.H
-native-filechooser.o: ../FL/Fl_Multi_Label.H
-native-filechooser.o: ../FL/Fl_Native_File_Chooser.H
-native-filechooser.o: ../FL/Fl_Pixmap.H
-native-filechooser.o: ../FL/Fl_Plugin.H
-native-filechooser.o: ../FL/Fl_Preferences.H
-native-filechooser.o: ../FL/Fl_Rect.H
-native-filechooser.o: ../FL/Fl_Return_Button.H
-native-filechooser.o: ../FL/Fl_RGB_Image.H
-native-filechooser.o: ../FL/Fl_Scrollbar.H
-native-filechooser.o: ../FL/Fl_Shared_Image.H
-native-filechooser.o: ../FL/Fl_Slider.H
-native-filechooser.o: ../FL/Fl_Terminal.H
-native-filechooser.o: ../FL/Fl_Tile.H
-native-filechooser.o: ../FL/fl_types.h
-native-filechooser.o: ../FL/fl_utf8.h
-native-filechooser.o: ../FL/Fl_Valuator.H
-native-filechooser.o: ../FL/Fl_Widget.H
-native-filechooser.o: ../FL/Fl_Window.H
-native-filechooser.o: ../FL/platform_types.h
-navigation.o: ../FL/Enumerations.H
-navigation.o: ../FL/Fl.H
-navigation.o: ../FL/fl_attr.h
-navigation.o: ../FL/Fl_Cairo.H
-navigation.o: ../FL/fl_casts.H
-navigation.o: ../FL/fl_config.h
-navigation.o: ../FL/Fl_Export.H
-navigation.o: ../FL/Fl_Input.H
-navigation.o: ../FL/Fl_Input_.H
-navigation.o: ../FL/Fl_Light_Button.H
-navigation.o: ../FL/fl_types.h
-navigation.o: ../FL/fl_utf8.h
-navigation.o: ../FL/Fl_Window.H
-navigation.o: ../FL/platform_types.h
-offscreen.o: ../FL/Enumerations.H
-offscreen.o: ../FL/Fl.H
-offscreen.o: ../FL/fl_attr.h
-offscreen.o: ../FL/Fl_Bitmap.H
-offscreen.o: ../FL/Fl_Box.H
-offscreen.o: ../FL/Fl_Cairo.H
-offscreen.o: ../FL/fl_casts.H
-offscreen.o: ../FL/fl_config.h
-offscreen.o: ../FL/Fl_Device.H
-offscreen.o: ../FL/Fl_Double_Window.H
-offscreen.o: ../FL/fl_draw.H
-offscreen.o: ../FL/Fl_Export.H
-offscreen.o: ../FL/Fl_Graphics_Driver.H
-offscreen.o: ../FL/Fl_Group.H
-offscreen.o: ../FL/Fl_Image.H
-offscreen.o: ../FL/Fl_Pixmap.H
-offscreen.o: ../FL/Fl_Plugin.H
-offscreen.o: ../FL/Fl_Preferences.H
-offscreen.o: ../FL/Fl_Rect.H
-offscreen.o: ../FL/Fl_RGB_Image.H
-offscreen.o: ../FL/fl_types.h
-offscreen.o: ../FL/fl_utf8.h
-offscreen.o: ../FL/Fl_Widget.H
-offscreen.o: ../FL/Fl_Window.H
-offscreen.o: ../FL/platform.H
-offscreen.o: ../FL/platform_types.h
-offscreen.o: ../FL/x11.H
-output.o: ../FL/Enumerations.H
-output.o: ../FL/Fl.H
-output.o: ../FL/fl_attr.h
-output.o: ../FL/Fl_Bitmap.H
-output.o: ../FL/Fl_Box.H
-output.o: ../FL/Fl_Button.H
-output.o: ../FL/Fl_Cairo.H
-output.o: ../FL/fl_casts.H
-output.o: ../FL/fl_config.h
-output.o: ../FL/Fl_Device.H
-output.o: ../FL/Fl_Double_Window.H
-output.o: ../FL/fl_draw.H
-output.o: ../FL/Fl_Export.H
-output.o: ../FL/Fl_Graphics_Driver.H
-output.o: ../FL/Fl_Group.H
-output.o: ../FL/Fl_Hor_Value_Slider.H
-output.o: ../FL/Fl_Image.H
-output.o: ../FL/Fl_Input.H
-output.o: ../FL/Fl_Input_.H
-output.o: ../FL/Fl_Multiline_Output.H
-output.o: ../FL/Fl_Output.H
-output.o: ../FL/Fl_Pixmap.H
-output.o: ../FL/Fl_Plugin.H
-output.o: ../FL/Fl_Preferences.H
-output.o: ../FL/Fl_Rect.H
-output.o: ../FL/Fl_RGB_Image.H
-output.o: ../FL/Fl_Slider.H
-output.o: ../FL/Fl_Toggle_Button.H
-output.o: ../FL/fl_types.h
-output.o: ../FL/fl_utf8.h
-output.o: ../FL/Fl_Valuator.H
-output.o: ../FL/Fl_Value_Input.H
-output.o: ../FL/Fl_Value_Slider.H
-output.o: ../FL/Fl_Widget.H
-output.o: ../FL/Fl_Window.H
-output.o: ../FL/platform_types.h
-overlay.o: ../FL/Enumerations.H
-overlay.o: ../FL/Fl.H
-overlay.o: ../FL/fl_attr.h
-overlay.o: ../FL/Fl_Bitmap.H
-overlay.o: ../FL/Fl_Button.H
-overlay.o: ../FL/Fl_Cairo.H
-overlay.o: ../FL/fl_casts.H
-overlay.o: ../FL/fl_config.h
-overlay.o: ../FL/Fl_Device.H
-overlay.o: ../FL/Fl_Double_Window.H
-overlay.o: ../FL/fl_draw.H
-overlay.o: ../FL/Fl_Export.H
-overlay.o: ../FL/Fl_Graphics_Driver.H
-overlay.o: ../FL/Fl_Group.H
-overlay.o: ../FL/Fl_Image.H
-overlay.o: ../FL/Fl_Overlay_Window.H
-overlay.o: ../FL/Fl_Pixmap.H
-overlay.o: ../FL/Fl_Plugin.H
-overlay.o: ../FL/Fl_Preferences.H
-overlay.o: ../FL/Fl_Rect.H
-overlay.o: ../FL/Fl_RGB_Image.H
-overlay.o: ../FL/fl_types.h
-overlay.o: ../FL/fl_utf8.h
-overlay.o: ../FL/Fl_Widget.H
-overlay.o: ../FL/Fl_Window.H
-overlay.o: ../FL/platform_types.h
-pack.o: ../FL/Enumerations.H
-pack.o: ../FL/Fl.H
-pack.o: ../FL/fl_attr.h
-pack.o: ../FL/Fl_Bitmap.H
-pack.o: ../FL/Fl_Button.H
-pack.o: ../FL/Fl_Cairo.H
-pack.o: ../FL/fl_casts.H
-pack.o: ../FL/fl_config.h
-pack.o: ../FL/Fl_Double_Window.H
-pack.o: ../FL/Fl_Export.H
-pack.o: ../FL/Fl_Flex.H
-pack.o: ../FL/Fl_Group.H
-pack.o: ../FL/Fl_Image.H
-pack.o: ../FL/Fl_Light_Button.H
-pack.o: ../FL/Fl_Pack.H
-pack.o: ../FL/Fl_Scroll.H
-pack.o: ../FL/Fl_Scrollbar.H
-pack.o: ../FL/Fl_Slider.H
-pack.o: ../FL/fl_types.h
-pack.o: ../FL/fl_utf8.h
-pack.o: ../FL/Fl_Valuator.H
-pack.o: ../FL/Fl_Value_Slider.H
-pack.o: ../FL/Fl_Widget.H
-pack.o: ../FL/Fl_Window.H
-pack.o: ../FL/platform_types.h
-pixmap.o: ../FL/Enumerations.H
-pixmap.o: ../FL/Fl.H
-pixmap.o: ../FL/Fl_Anim_GIF_Image.H
-pixmap.o: ../FL/fl_attr.h
-pixmap.o: ../FL/Fl_Bitmap.H
-pixmap.o: ../FL/Fl_Button.H
-pixmap.o: ../FL/Fl_Cairo.H
-pixmap.o: ../FL/fl_casts.H
-pixmap.o: ../FL/fl_config.h
-pixmap.o: ../FL/Fl_Double_Window.H
-pixmap.o: ../FL/Fl_Export.H
-pixmap.o: ../FL/Fl_GIF_Image.H
-pixmap.o: ../FL/Fl_Group.H
-pixmap.o: ../FL/Fl_Image.H
-pixmap.o: ../FL/Fl_Multi_Label.H
-pixmap.o: ../FL/Fl_Pixmap.H
-pixmap.o: ../FL/Fl_Toggle_Button.H
-pixmap.o: ../FL/fl_types.h
-pixmap.o: ../FL/fl_utf8.h
-pixmap.o: ../FL/Fl_Widget.H
-pixmap.o: ../FL/Fl_Window.H
-pixmap.o: ../FL/platform_types.h
-pixmap.o: pixmaps/animated_fluid_gif.h
-pixmap_browser.o: ../config.h
-pixmap_browser.o: ../FL/Enumerations.H
-pixmap_browser.o: ../FL/filename.H
-pixmap_browser.o: ../FL/Fl.H
-pixmap_browser.o: ../FL/fl_ask.H
-pixmap_browser.o: ../FL/fl_attr.h
-pixmap_browser.o: ../FL/Fl_Bitmap.H
-pixmap_browser.o: ../FL/Fl_Box.H
-pixmap_browser.o: ../FL/Fl_Browser.H
-pixmap_browser.o: ../FL/Fl_Browser_.H
-pixmap_browser.o: ../FL/Fl_Button.H
-pixmap_browser.o: ../FL/Fl_Cairo.H
-pixmap_browser.o: ../FL/fl_casts.H
-pixmap_browser.o: ../FL/Fl_Check_Button.H
-pixmap_browser.o: ../FL/Fl_Choice.H
-pixmap_browser.o: ../FL/fl_config.h
-pixmap_browser.o: ../FL/Fl_Device.H
-pixmap_browser.o: ../FL/Fl_Double_Window.H
-pixmap_browser.o: ../FL/Fl_Export.H
-pixmap_browser.o: ../FL/Fl_File_Browser.H
-pixmap_browser.o: ../FL/Fl_File_Chooser.H
-pixmap_browser.o: ../FL/Fl_File_Icon.H
-pixmap_browser.o: ../FL/Fl_File_Input.H
-pixmap_browser.o: ../FL/Fl_GIF_Image.H
-pixmap_browser.o: ../FL/Fl_Group.H
-pixmap_browser.o: ../FL/Fl_Image.H
-pixmap_browser.o: ../FL/Fl_Input.H
-pixmap_browser.o: ../FL/Fl_Input_.H
-pixmap_browser.o: ../FL/Fl_Light_Button.H
-pixmap_browser.o: ../FL/Fl_Menu_.H
-pixmap_browser.o: ../FL/Fl_Menu_Button.H
-pixmap_browser.o: ../FL/Fl_Menu_Item.H
-pixmap_browser.o: ../FL/fl_message.H
-pixmap_browser.o: ../FL/Fl_Multi_Label.H
-pixmap_browser.o: ../FL/Fl_Native_File_Chooser.H
-pixmap_browser.o: ../FL/Fl_Paged_Device.H
-pixmap_browser.o: ../FL/Fl_Pixmap.H
-pixmap_browser.o: ../FL/Fl_Plugin.H
-pixmap_browser.o: ../FL/Fl_Preferences.H
-pixmap_browser.o: ../FL/Fl_Printer.H
-pixmap_browser.o: ../FL/Fl_Return_Button.H
-pixmap_browser.o: ../FL/Fl_Scrollbar.H
-pixmap_browser.o: ../FL/Fl_Shared_Image.H
-pixmap_browser.o: ../FL/Fl_Slider.H
-pixmap_browser.o: ../FL/Fl_SVG_File_Surface.H
-pixmap_browser.o: ../FL/Fl_Tile.H
-pixmap_browser.o: ../FL/fl_types.h
-pixmap_browser.o: ../FL/fl_utf8.h
-pixmap_browser.o: ../FL/Fl_Valuator.H
-pixmap_browser.o: ../FL/Fl_Widget.H
-pixmap_browser.o: ../FL/Fl_Widget_Surface.H
-pixmap_browser.o: ../FL/Fl_Window.H
-pixmap_browser.o: ../FL/platform.H
-pixmap_browser.o: ../FL/platform_types.h
-pixmap_browser.o: ../FL/x11.H
-preferences.o: ../FL/Enumerations.H
-preferences.o: ../FL/filename.H
-preferences.o: ../FL/Fl.H
-preferences.o: ../FL/fl_ask.H
-preferences.o: ../FL/fl_attr.h
-preferences.o: ../FL/Fl_Bitmap.H
-preferences.o: ../FL/Fl_Box.H
-preferences.o: ../FL/Fl_Button.H
-preferences.o: ../FL/Fl_Cairo.H
-preferences.o: ../FL/fl_casts.H
-preferences.o: ../FL/Fl_Check_Button.H
-preferences.o: ../FL/Fl_Choice.H
-preferences.o: ../FL/fl_config.h
-preferences.o: ../FL/Fl_Double_Window.H
-preferences.o: ../FL/Fl_Export.H
-preferences.o: ../FL/Fl_Group.H
-preferences.o: ../FL/Fl_Image.H
-preferences.o: ../FL/Fl_Input.H
-preferences.o: ../FL/Fl_Input_.H
-preferences.o: ../FL/Fl_Int_Input.H
-preferences.o: ../FL/Fl_Light_Button.H
-preferences.o: ../FL/Fl_Menu_.H
-preferences.o: ../FL/Fl_Menu_Item.H
-preferences.o: ../FL/Fl_Multi_Label.H
-preferences.o: ../FL/Fl_Preferences.H
-preferences.o: ../FL/Fl_Round_Button.H
-preferences.o: ../FL/Fl_Slider.H
-preferences.o: ../FL/fl_types.h
-preferences.o: ../FL/fl_utf8.h
-preferences.o: ../FL/Fl_Valuator.H
-preferences.o: ../FL/Fl_Value_Slider.H
-preferences.o: ../FL/Fl_Widget.H
-preferences.o: ../FL/Fl_Window.H
-preferences.o: ../FL/platform_types.h
-preferences.o: preferences.h
-radio.o: ../FL/Enumerations.H
-radio.o: ../FL/Fl.H
-radio.o: ../FL/fl_attr.h
-radio.o: ../FL/Fl_Bitmap.H
-radio.o: ../FL/Fl_Button.H
-radio.o: ../FL/Fl_Cairo.H
-radio.o: ../FL/fl_casts.H
-radio.o: ../FL/Fl_Check_Button.H
-radio.o: ../FL/fl_config.h
-radio.o: ../FL/Fl_Double_Window.H
-radio.o: ../FL/Fl_Export.H
-radio.o: ../FL/Fl_Group.H
-radio.o: ../FL/Fl_Image.H
-radio.o: ../FL/Fl_Input.H
-radio.o: ../FL/Fl_Input_.H
-radio.o: ../FL/Fl_Light_Button.H
-radio.o: ../FL/Fl_Output.H
-radio.o: ../FL/Fl_Return_Button.H
-radio.o: ../FL/Fl_Round_Button.H
-radio.o: ../FL/fl_types.h
-radio.o: ../FL/fl_utf8.h
-radio.o: ../FL/Fl_Widget.H
-radio.o: ../FL/Fl_Window.H
-radio.o: ../FL/platform_types.h
-radio.o: radio.h
-resize-example1.o: ../FL/Enumerations.H
-resize-example1.o: ../FL/Fl.H
-resize-example1.o: ../FL/fl_attr.h
-resize-example1.o: ../FL/Fl_Bitmap.H
-resize-example1.o: ../FL/Fl_Box.H
-resize-example1.o: ../FL/Fl_Cairo.H
-resize-example1.o: ../FL/fl_casts.H
-resize-example1.o: ../FL/fl_config.h
-resize-example1.o: ../FL/Fl_Double_Window.H
-resize-example1.o: ../FL/Fl_Export.H
-resize-example1.o: ../FL/Fl_Group.H
-resize-example1.o: ../FL/Fl_Image.H
-resize-example1.o: ../FL/fl_types.h
-resize-example1.o: ../FL/fl_utf8.h
-resize-example1.o: ../FL/Fl_Widget.H
-resize-example1.o: ../FL/Fl_Window.H
-resize-example1.o: ../FL/platform_types.h
-resize-example1.o: resize-arrows.h
-resize-example2.o: ../FL/Enumerations.H
-resize-example2.o: ../FL/Fl.H
-resize-example2.o: ../FL/fl_attr.h
-resize-example2.o: ../FL/Fl_Bitmap.H
-resize-example2.o: ../FL/Fl_Box.H
-resize-example2.o: ../FL/Fl_Cairo.H
-resize-example2.o: ../FL/fl_casts.H
-resize-example2.o: ../FL/fl_config.h
-resize-example2.o: ../FL/Fl_Double_Window.H
-resize-example2.o: ../FL/Fl_Export.H
-resize-example2.o: ../FL/Fl_Group.H
-resize-example2.o: ../FL/Fl_Image.H
-resize-example2.o: ../FL/fl_types.h
-resize-example2.o: ../FL/fl_utf8.h
-resize-example2.o: ../FL/Fl_Widget.H
-resize-example2.o: ../FL/Fl_Window.H
-resize-example2.o: ../FL/platform_types.h
-resize-example2.o: resize-arrows.h
-resize-example3a.o: ../FL/Enumerations.H
-resize-example3a.o: ../FL/Fl.H
-resize-example3a.o: ../FL/fl_attr.h
-resize-example3a.o: ../FL/Fl_Bitmap.H
-resize-example3a.o: ../FL/Fl_Box.H
-resize-example3a.o: ../FL/Fl_Button.H
-resize-example3a.o: ../FL/Fl_Cairo.H
-resize-example3a.o: ../FL/fl_casts.H
-resize-example3a.o: ../FL/fl_config.h
-resize-example3a.o: ../FL/Fl_Double_Window.H
-resize-example3a.o: ../FL/Fl_Export.H
-resize-example3a.o: ../FL/Fl_Group.H
-resize-example3a.o: ../FL/Fl_Image.H
-resize-example3a.o: ../FL/fl_types.h
-resize-example3a.o: ../FL/fl_utf8.h
-resize-example3a.o: ../FL/Fl_Widget.H
-resize-example3a.o: ../FL/Fl_Window.H
-resize-example3a.o: ../FL/platform_types.h
-resize-example3a.o: resize-arrows.h
-resize-example3b.o: ../FL/Enumerations.H
-resize-example3b.o: ../FL/Fl.H
-resize-example3b.o: ../FL/fl_attr.h
-resize-example3b.o: ../FL/Fl_Bitmap.H
-resize-example3b.o: ../FL/Fl_Box.H
-resize-example3b.o: ../FL/Fl_Button.H
-resize-example3b.o: ../FL/Fl_Cairo.H
-resize-example3b.o: ../FL/fl_casts.H
-resize-example3b.o: ../FL/fl_config.h
-resize-example3b.o: ../FL/Fl_Double_Window.H
-resize-example3b.o: ../FL/Fl_Export.H
-resize-example3b.o: ../FL/Fl_Group.H
-resize-example3b.o: ../FL/Fl_Image.H
-resize-example3b.o: ../FL/fl_types.h
-resize-example3b.o: ../FL/fl_utf8.h
-resize-example3b.o: ../FL/Fl_Widget.H
-resize-example3b.o: ../FL/Fl_Window.H
-resize-example3b.o: ../FL/platform_types.h
-resize-example3b.o: resize-arrows.h
-resize-example3c.o: ../FL/Enumerations.H
-resize-example3c.o: ../FL/Fl.H
-resize-example3c.o: ../FL/fl_attr.h
-resize-example3c.o: ../FL/Fl_Bitmap.H
-resize-example3c.o: ../FL/Fl_Box.H
-resize-example3c.o: ../FL/Fl_Button.H
-resize-example3c.o: ../FL/Fl_Cairo.H
-resize-example3c.o: ../FL/fl_casts.H
-resize-example3c.o: ../FL/fl_config.h
-resize-example3c.o: ../FL/Fl_Double_Window.H
-resize-example3c.o: ../FL/Fl_Export.H
-resize-example3c.o: ../FL/Fl_Group.H
-resize-example3c.o: ../FL/Fl_Image.H
-resize-example3c.o: ../FL/fl_types.h
-resize-example3c.o: ../FL/fl_utf8.h
-resize-example3c.o: ../FL/Fl_Widget.H
-resize-example3c.o: ../FL/Fl_Window.H
-resize-example3c.o: ../FL/platform_types.h
-resize-example3c.o: resize-arrows.h
-resize-example4a.o: ../FL/Enumerations.H
-resize-example4a.o: ../FL/Fl.H
-resize-example4a.o: ../FL/fl_attr.h
-resize-example4a.o: ../FL/Fl_Bitmap.H
-resize-example4a.o: ../FL/Fl_Box.H
-resize-example4a.o: ../FL/Fl_Cairo.H
-resize-example4a.o: ../FL/fl_casts.H
-resize-example4a.o: ../FL/fl_config.h
-resize-example4a.o: ../FL/Fl_Double_Window.H
-resize-example4a.o: ../FL/Fl_Export.H
-resize-example4a.o: ../FL/Fl_Group.H
-resize-example4a.o: ../FL/Fl_Image.H
-resize-example4a.o: ../FL/fl_types.h
-resize-example4a.o: ../FL/fl_utf8.h
-resize-example4a.o: ../FL/Fl_Widget.H
-resize-example4a.o: ../FL/Fl_Window.H
-resize-example4a.o: ../FL/platform_types.h
-resize-example4a.o: resize-arrows.h
-resize-example4b.o: ../FL/Enumerations.H
-resize-example4b.o: ../FL/Fl.H
-resize-example4b.o: ../FL/fl_attr.h
-resize-example4b.o: ../FL/Fl_Bitmap.H
-resize-example4b.o: ../FL/Fl_Box.H
-resize-example4b.o: ../FL/Fl_Cairo.H
-resize-example4b.o: ../FL/fl_casts.H
-resize-example4b.o: ../FL/fl_config.h
-resize-example4b.o: ../FL/Fl_Double_Window.H
-resize-example4b.o: ../FL/Fl_Export.H
-resize-example4b.o: ../FL/Fl_Group.H
-resize-example4b.o: ../FL/Fl_Image.H
-resize-example4b.o: ../FL/fl_types.h
-resize-example4b.o: ../FL/fl_utf8.h
-resize-example4b.o: ../FL/Fl_Widget.H
-resize-example4b.o: ../FL/Fl_Window.H
-resize-example4b.o: ../FL/platform_types.h
-resize-example4b.o: resize-arrows.h
-resize-example5a.o: ../FL/Enumerations.H
-resize-example5a.o: ../FL/Fl.H
-resize-example5a.o: ../FL/fl_attr.h
-resize-example5a.o: ../FL/Fl_Bitmap.H
-resize-example5a.o: ../FL/Fl_Box.H
-resize-example5a.o: ../FL/Fl_Cairo.H
-resize-example5a.o: ../FL/fl_casts.H
-resize-example5a.o: ../FL/fl_config.h
-resize-example5a.o: ../FL/Fl_Double_Window.H
-resize-example5a.o: ../FL/Fl_Export.H
-resize-example5a.o: ../FL/Fl_Group.H
-resize-example5a.o: ../FL/Fl_Image.H
-resize-example5a.o: ../FL/fl_types.h
-resize-example5a.o: ../FL/fl_utf8.h
-resize-example5a.o: ../FL/Fl_Widget.H
-resize-example5a.o: ../FL/Fl_Window.H
-resize-example5a.o: ../FL/platform_types.h
-resize-example5a.o: resize-arrows.h
-resize-example5b.o: ../FL/Enumerations.H
-resize-example5b.o: ../FL/Fl.H
-resize-example5b.o: ../FL/fl_attr.h
-resize-example5b.o: ../FL/Fl_Bitmap.H
-resize-example5b.o: ../FL/Fl_Box.H
-resize-example5b.o: ../FL/Fl_Cairo.H
-resize-example5b.o: ../FL/fl_casts.H
-resize-example5b.o: ../FL/fl_config.h
-resize-example5b.o: ../FL/Fl_Double_Window.H
-resize-example5b.o: ../FL/Fl_Export.H
-resize-example5b.o: ../FL/Fl_Group.H
-resize-example5b.o: ../FL/Fl_Image.H
-resize-example5b.o: ../FL/fl_types.h
-resize-example5b.o: ../FL/fl_utf8.h
-resize-example5b.o: ../FL/Fl_Widget.H
-resize-example5b.o: ../FL/Fl_Window.H
-resize-example5b.o: ../FL/platform_types.h
-resize-example5b.o: resize-arrows.h
-resize-example5c.o: ../FL/Enumerations.H
-resize-example5c.o: ../FL/Fl.H
-resize-example5c.o: ../FL/fl_attr.h
-resize-example5c.o: ../FL/Fl_Bitmap.H
-resize-example5c.o: ../FL/Fl_Box.H
-resize-example5c.o: ../FL/Fl_Cairo.H
-resize-example5c.o: ../FL/fl_casts.H
-resize-example5c.o: ../FL/fl_config.h
-resize-example5c.o: ../FL/Fl_Double_Window.H
-resize-example5c.o: ../FL/Fl_Export.H
-resize-example5c.o: ../FL/Fl_Group.H
-resize-example5c.o: ../FL/Fl_Image.H
-resize-example5c.o: ../FL/fl_types.h
-resize-example5c.o: ../FL/fl_utf8.h
-resize-example5c.o: ../FL/Fl_Widget.H
-resize-example5c.o: ../FL/Fl_Window.H
-resize-example5c.o: ../FL/platform_types.h
-resize-example5c.o: resize-arrows.h
-resize.o: ../FL/Enumerations.H
-resize.o: ../FL/Fl.H
-resize.o: ../FL/fl_attr.h
-resize.o: ../FL/Fl_Bitmap.H
-resize.o: ../FL/Fl_Box.H
-resize.o: ../FL/Fl_Button.H
-resize.o: ../FL/Fl_Cairo.H
-resize.o: ../FL/fl_casts.H
-resize.o: ../FL/fl_config.h
-resize.o: ../FL/Fl_Double_Window.H
-resize.o: ../FL/Fl_Export.H
-resize.o: ../FL/Fl_Group.H
-resize.o: ../FL/Fl_Image.H
-resize.o: ../FL/fl_types.h
-resize.o: ../FL/fl_utf8.h
-resize.o: ../FL/Fl_Widget.H
-resize.o: ../FL/Fl_Window.H
-resize.o: ../FL/platform_types.h
-resize.o: resize.h
-resizebox.o: ../FL/Enumerations.H
-resizebox.o: ../FL/Fl.H
-resizebox.o: ../FL/fl_ask.H
-resizebox.o: ../FL/fl_attr.h
-resizebox.o: ../FL/Fl_Bitmap.H
-resizebox.o: ../FL/Fl_Box.H
-resizebox.o: ../FL/Fl_Button.H
-resizebox.o: ../FL/Fl_Cairo.H
-resizebox.o: ../FL/fl_casts.H
-resizebox.o: ../FL/fl_config.h
-resizebox.o: ../FL/Fl_Device.H
-resizebox.o: ../FL/Fl_Double_Window.H
-resizebox.o: ../FL/fl_draw.H
-resizebox.o: ../FL/Fl_Export.H
-resizebox.o: ../FL/Fl_Graphics_Driver.H
-resizebox.o: ../FL/Fl_Group.H
-resizebox.o: ../FL/Fl_Image.H
-resizebox.o: ../FL/fl_message.H
-resizebox.o: ../FL/Fl_Pixmap.H
-resizebox.o: ../FL/Fl_Plugin.H
-resizebox.o: ../FL/Fl_Preferences.H
-resizebox.o: ../FL/Fl_Radio_Button.H
-resizebox.o: ../FL/Fl_Rect.H
-resizebox.o: ../FL/Fl_RGB_Image.H
-resizebox.o: ../FL/fl_types.h
-resizebox.o: ../FL/fl_utf8.h
-resizebox.o: ../FL/Fl_Widget.H
-resizebox.o: ../FL/Fl_Window.H
-resizebox.o: ../FL/platform_types.h
-rotated_text.o: ../FL/Enumerations.H
-rotated_text.o: ../FL/Fl.H
-rotated_text.o: ../FL/fl_attr.h
-rotated_text.o: ../FL/Fl_Bitmap.H
-rotated_text.o: ../FL/Fl_Box.H
-rotated_text.o: ../FL/Fl_Button.H
-rotated_text.o: ../FL/Fl_Cairo.H
-rotated_text.o: ../FL/fl_casts.H
-rotated_text.o: ../FL/Fl_Choice.H
-rotated_text.o: ../FL/fl_config.h
-rotated_text.o: ../FL/Fl_Device.H
-rotated_text.o: ../FL/Fl_Double_Window.H
-rotated_text.o: ../FL/fl_draw.H
-rotated_text.o: ../FL/Fl_Export.H
-rotated_text.o: ../FL/Fl_Graphics_Driver.H
-rotated_text.o: ../FL/Fl_Group.H
-rotated_text.o: ../FL/Fl_Hor_Value_Slider.H
-rotated_text.o: ../FL/Fl_Image.H
-rotated_text.o: ../FL/Fl_Input.H
-rotated_text.o: ../FL/Fl_Input_.H
-rotated_text.o: ../FL/Fl_Menu_.H
-rotated_text.o: ../FL/Fl_Menu_Item.H
-rotated_text.o: ../FL/Fl_Multi_Label.H
-rotated_text.o: ../FL/Fl_Pixmap.H
-rotated_text.o: ../FL/Fl_Plugin.H
-rotated_text.o: ../FL/Fl_Preferences.H
-rotated_text.o: ../FL/Fl_Rect.H
-rotated_text.o: ../FL/Fl_RGB_Image.H
-rotated_text.o: ../FL/Fl_Slider.H
-rotated_text.o: ../FL/Fl_Toggle_Button.H
-rotated_text.o: ../FL/fl_types.h
-rotated_text.o: ../FL/fl_utf8.h
-rotated_text.o: ../FL/Fl_Valuator.H
-rotated_text.o: ../FL/Fl_Value_Slider.H
-rotated_text.o: ../FL/Fl_Widget.H
-rotated_text.o: ../FL/Fl_Window.H
-rotated_text.o: ../FL/platform_types.h
-scroll.o: ../FL/Enumerations.H
-scroll.o: ../FL/Fl.H
-scroll.o: ../FL/fl_attr.h
-scroll.o: ../FL/Fl_Bitmap.H
-scroll.o: ../FL/Fl_Box.H
-scroll.o: ../FL/Fl_Cairo.H
-scroll.o: ../FL/fl_casts.H
-scroll.o: ../FL/Fl_Choice.H
-scroll.o: ../FL/fl_config.h
-scroll.o: ../FL/Fl_Device.H
-scroll.o: ../FL/Fl_Double_Window.H
-scroll.o: ../FL/fl_draw.H
-scroll.o: ../FL/Fl_Export.H
-scroll.o: ../FL/Fl_Graphics_Driver.H
-scroll.o: ../FL/Fl_Group.H
-scroll.o: ../FL/Fl_Image.H
-scroll.o: ../FL/Fl_Light_Button.H
-scroll.o: ../FL/Fl_Menu_.H
-scroll.o: ../FL/Fl_Menu_Item.H
-scroll.o: ../FL/Fl_Multi_Label.H
-scroll.o: ../FL/Fl_Pixmap.H
-scroll.o: ../FL/Fl_Plugin.H
-scroll.o: ../FL/Fl_Preferences.H
-scroll.o: ../FL/Fl_Rect.H
-scroll.o: ../FL/Fl_RGB_Image.H
-scroll.o: ../FL/Fl_Scroll.H
-scroll.o: ../FL/Fl_Scrollbar.H
-scroll.o: ../FL/Fl_Slider.H
-scroll.o: ../FL/fl_types.h
-scroll.o: ../FL/fl_utf8.h
-scroll.o: ../FL/Fl_Valuator.H
-scroll.o: ../FL/Fl_Widget.H
-scroll.o: ../FL/Fl_Window.H
-scroll.o: ../FL/math.h
-scroll.o: ../FL/platform_types.h
-shape.o: ../config.h
-shape.o: ../FL/Enumerations.H
-shape.o: ../FL/Fl.H
-shape.o: ../FL/fl_attr.h
-shape.o: ../FL/Fl_Bitmap.H
-shape.o: ../FL/Fl_Cairo.H
-shape.o: ../FL/fl_casts.H
-shape.o: ../FL/fl_config.h
-shape.o: ../FL/Fl_Export.H
-shape.o: ../FL/Fl_Gl_Window.H
-shape.o: ../FL/Fl_Group.H
-shape.o: ../FL/Fl_Hor_Slider.H
-shape.o: ../FL/Fl_Image.H
-shape.o: ../FL/Fl_Slider.H
-shape.o: ../FL/fl_types.h
-shape.o: ../FL/fl_utf8.h
-shape.o: ../FL/Fl_Valuator.H
-shape.o: ../FL/Fl_Widget.H
-shape.o: ../FL/Fl_Window.H
-shape.o: ../FL/gl.h
-shape.o: ../FL/math.h
-shape.o: ../FL/platform_types.h
-subwindow.o: ../FL/Enumerations.H
-subwindow.o: ../FL/Fl.H
-subwindow.o: ../FL/fl_attr.h
-subwindow.o: ../FL/Fl_Box.H
-subwindow.o: ../FL/Fl_Button.H
-subwindow.o: ../FL/Fl_Cairo.H
-subwindow.o: ../FL/fl_casts.H
-subwindow.o: ../FL/fl_config.h
-subwindow.o: ../FL/Fl_Export.H
-subwindow.o: ../FL/Fl_Image.H
-subwindow.o: ../FL/Fl_Input.H
-subwindow.o: ../FL/Fl_Input_.H
-subwindow.o: ../FL/Fl_Menu_.H
-subwindow.o: ../FL/Fl_Menu_Button.H
-subwindow.o: ../FL/Fl_Menu_Item.H
-subwindow.o: ../FL/Fl_Multi_Label.H
-subwindow.o: ../FL/Fl_Toggle_Button.H
-subwindow.o: ../FL/fl_types.h
-subwindow.o: ../FL/fl_utf8.h
-subwindow.o: ../FL/Fl_Widget.H
-subwindow.o: ../FL/Fl_Window.H
-subwindow.o: ../FL/platform_types.h
-sudoku.o: ../config.h
-sudoku.o: ../FL/Enumerations.H
-sudoku.o: ../FL/filename.H
-sudoku.o: ../FL/Fl.H
-sudoku.o: ../FL/fl_ask.H
-sudoku.o: ../FL/fl_attr.h
-sudoku.o: ../FL/Fl_Bitmap.H
-sudoku.o: ../FL/Fl_Box.H
-sudoku.o: ../FL/Fl_Button.H
-sudoku.o: ../FL/Fl_Cairo.H
-sudoku.o: ../FL/fl_casts.H
-sudoku.o: ../FL/fl_config.h
-sudoku.o: ../FL/Fl_Device.H
-sudoku.o: ../FL/Fl_Double_Window.H
-sudoku.o: ../FL/fl_draw.H
-sudoku.o: ../FL/Fl_Export.H
-sudoku.o: ../FL/Fl_Graphics_Driver.H
-sudoku.o: ../FL/Fl_Group.H
-sudoku.o: ../FL/Fl_Help_Dialog.H
-sudoku.o: ../FL/Fl_Help_View.H
-sudoku.o: ../FL/Fl_Image.H
-sudoku.o: ../FL/Fl_Image_Surface.H
-sudoku.o: ../FL/Fl_Input.H
-sudoku.o: ../FL/Fl_Input_.H
-sudoku.o: ../FL/Fl_Menu_.H
-sudoku.o: ../FL/Fl_Menu_Bar.H
-sudoku.o: ../FL/Fl_Menu_Item.H
-sudoku.o: ../FL/Fl_Multi_Label.H
-sudoku.o: ../FL/Fl_Pixmap.H
-sudoku.o: ../FL/Fl_Plugin.H
-sudoku.o: ../FL/Fl_Preferences.H
-sudoku.o: ../FL/Fl_Rect.H
-sudoku.o: ../FL/Fl_RGB_Image.H
-sudoku.o: ../FL/Fl_Scrollbar.H
-sudoku.o: ../FL/Fl_Shared_Image.H
-sudoku.o: ../FL/Fl_Slider.H
-sudoku.o: ../FL/Fl_Sys_Menu_Bar.H
-sudoku.o: ../FL/fl_types.h
-sudoku.o: ../FL/fl_utf8.h
-sudoku.o: ../FL/Fl_Valuator.H
-sudoku.o: ../FL/Fl_Widget.H
-sudoku.o: ../FL/Fl_Widget_Surface.H
-sudoku.o: ../FL/Fl_Window.H
-sudoku.o: ../FL/math.h
-sudoku.o: ../FL/platform.H
-sudoku.o: ../FL/platform_types.h
-sudoku.o: ../FL/x11.H
-sudoku.o: pixmaps/sudoku.xbm
-symbols.o: ../FL/Enumerations.H
-symbols.o: ../FL/Fl.H
-symbols.o: ../FL/fl_attr.h
-symbols.o: ../FL/Fl_Bitmap.H
-symbols.o: ../FL/Fl_Box.H
-symbols.o: ../FL/Fl_Cairo.H
-symbols.o: ../FL/fl_casts.H
-symbols.o: ../FL/fl_config.h
-symbols.o: ../FL/Fl_Device.H
-symbols.o: ../FL/Fl_Double_Window.H
-symbols.o: ../FL/fl_draw.H
-symbols.o: ../FL/Fl_Export.H
-symbols.o: ../FL/Fl_Graphics_Driver.H
-symbols.o: ../FL/Fl_Group.H
-symbols.o: ../FL/Fl_Image.H
-symbols.o: ../FL/Fl_Pixmap.H
-symbols.o: ../FL/Fl_Plugin.H
-symbols.o: ../FL/Fl_Preferences.H
-symbols.o: ../FL/Fl_Rect.H
-symbols.o: ../FL/Fl_RGB_Image.H
-symbols.o: ../FL/Fl_Slider.H
-symbols.o: ../FL/fl_types.h
-symbols.o: ../FL/fl_utf8.h
-symbols.o: ../FL/Fl_Valuator.H
-symbols.o: ../FL/Fl_Value_Slider.H
-symbols.o: ../FL/Fl_Widget.H
-symbols.o: ../FL/Fl_Window.H
-symbols.o: ../FL/platform_types.h
-table.o: ../FL/Enumerations.H
-table.o: ../FL/Fl.H
-table.o: ../FL/fl_ask.H
-table.o: ../FL/fl_attr.h
-table.o: ../FL/Fl_Bitmap.H
-table.o: ../FL/Fl_Button.H
-table.o: ../FL/Fl_Cairo.H
-table.o: ../FL/fl_casts.H
-table.o: ../FL/Fl_Check_Button.H
-table.o: ../FL/Fl_Choice.H
-table.o: ../FL/fl_config.h
-table.o: ../FL/Fl_Device.H
-table.o: ../FL/fl_draw.H
-table.o: ../FL/Fl_Export.H
-table.o: ../FL/Fl_Graphics_Driver.H
-table.o: ../FL/Fl_Group.H
-table.o: ../FL/Fl_Image.H
-table.o: ../FL/Fl_Input.H
-table.o: ../FL/Fl_Input_.H
-table.o: ../FL/Fl_Light_Button.H
-table.o: ../FL/Fl_Menu_.H
-table.o: ../FL/Fl_Menu_Item.H
-table.o: ../FL/Fl_Multi_Label.H
-table.o: ../FL/Fl_Pixmap.H
-table.o: ../FL/Fl_Plugin.H
-table.o: ../FL/Fl_Preferences.H
-table.o: ../FL/Fl_Rect.H
-table.o: ../FL/Fl_RGB_Image.H
-table.o: ../FL/Fl_Scroll.H
-table.o: ../FL/Fl_Scrollbar.H
-table.o: ../FL/Fl_Slider.H
-table.o: ../FL/Fl_Table.H
-table.o: ../FL/Fl_Table_Row.H
-table.o: ../FL/Fl_Terminal.H
-table.o: ../FL/fl_types.h
-table.o: ../FL/fl_utf8.h
-table.o: ../FL/Fl_Valuator.H
-table.o: ../FL/Fl_Widget.H
-table.o: ../FL/Fl_Window.H
-table.o: ../FL/platform_types.h
-tabs.o: ../FL/Enumerations.H
-tabs.o: ../FL/Fl.H
-tabs.o: ../FL/fl_ask.H
-tabs.o: ../FL/fl_attr.h
-tabs.o: ../FL/Fl_Bitmap.H
-tabs.o: ../FL/Fl_Box.H
-tabs.o: ../FL/Fl_Button.H
-tabs.o: ../FL/Fl_Cairo.H
-tabs.o: ../FL/fl_casts.H
-tabs.o: ../FL/Fl_Choice.H
-tabs.o: ../FL/Fl_Clock.H
-tabs.o: ../FL/fl_config.h
-tabs.o: ../FL/Fl_Double_Window.H
-tabs.o: ../FL/Fl_Export.H
-tabs.o: ../FL/Fl_Group.H
-tabs.o: ../FL/Fl_Image.H
-tabs.o: ../FL/Fl_Input.H
-tabs.o: ../FL/Fl_Input_.H
-tabs.o: ../FL/Fl_Menu_.H
-tabs.o: ../FL/Fl_Menu_Item.H
-tabs.o: ../FL/Fl_Multi_Label.H
-tabs.o: ../FL/Fl_Return_Button.H
-tabs.o: ../FL/Fl_Tabs.H
-tabs.o: ../FL/fl_types.h
-tabs.o: ../FL/fl_utf8.h
-tabs.o: ../FL/Fl_Widget.H
-tabs.o: ../FL/Fl_Window.H
-tabs.o: ../FL/Fl_Wizard.H
-tabs.o: ../FL/platform_types.h
-tabs.o: tabs.h
-terminal.o: ../FL/Enumerations.H
-terminal.o: ../FL/Fl.H
-terminal.o: ../FL/fl_ask.H
-terminal.o: ../FL/fl_attr.h
-terminal.o: ../FL/Fl_Bitmap.H
-terminal.o: ../FL/Fl_Box.H
-terminal.o: ../FL/Fl_Button.H
-terminal.o: ../FL/Fl_Cairo.H
-terminal.o: ../FL/fl_casts.H
-terminal.o: ../FL/Fl_Check_Button.H
-terminal.o: ../FL/Fl_Choice.H
-terminal.o: ../FL/fl_config.h
-terminal.o: ../FL/Fl_Double_Window.H
-terminal.o: ../FL/Fl_Export.H
-terminal.o: ../FL/Fl_Group.H
-terminal.o: ../FL/Fl_Image.H
-terminal.o: ../FL/Fl_Input.H
-terminal.o: ../FL/Fl_Input_.H
-terminal.o: ../FL/Fl_Light_Button.H
-terminal.o: ../FL/Fl_Menu_.H
-terminal.o: ../FL/Fl_Menu_Item.H
-terminal.o: ../FL/Fl_Multi_Label.H
-terminal.o: ../FL/Fl_Rect.H
-terminal.o: ../FL/Fl_Repeat_Button.H
-terminal.o: ../FL/Fl_Scheme.H
-terminal.o: ../FL/Fl_Scheme_Choice.H
-terminal.o: ../FL/Fl_Scrollbar.H
-terminal.o: ../FL/Fl_Spinner.H
-terminal.o: ../FL/Fl_Terminal.H
-terminal.o: ../FL/fl_types.h
-terminal.o: ../FL/fl_utf8.h
-terminal.o: ../FL/Fl_Widget.H
-terminal.o: ../FL/Fl_Window.H
-terminal.o: ../FL/platform_types.h
-terminal.o: terminal.h
-threads.o: ../config.h
-threads.o: ../FL/Enumerations.H
-threads.o: ../FL/Fl.H
-threads.o: ../FL/fl_ask.H
-threads.o: ../FL/fl_attr.h
-threads.o: ../FL/Fl_Bitmap.H
-threads.o: ../FL/Fl_Browser.H
-threads.o: ../FL/Fl_Browser_.H
-threads.o: ../FL/Fl_Cairo.H
-threads.o: ../FL/fl_casts.H
-threads.o: ../FL/fl_config.h
-threads.o: ../FL/Fl_Double_Window.H
-threads.o: ../FL/Fl_Export.H
-threads.o: ../FL/Fl_Group.H
-threads.o: ../FL/Fl_Image.H
-threads.o: ../FL/Fl_Scrollbar.H
-threads.o: ../FL/Fl_Slider.H
-threads.o: ../FL/fl_types.h
-threads.o: ../FL/fl_utf8.h
-threads.o: ../FL/Fl_Valuator.H
-threads.o: ../FL/Fl_Value_Output.H
-threads.o: ../FL/Fl_Widget.H
-threads.o: ../FL/Fl_Window.H
-threads.o: ../FL/platform_types.h
-threads.o: threads.h
-tile.o: ../FL/Enumerations.H
-tile.o: ../FL/Fl.H
-tile.o: ../FL/fl_attr.h
-tile.o: ../FL/Fl_Bitmap.H
-tile.o: ../FL/Fl_Box.H
-tile.o: ../FL/Fl_Cairo.H
-tile.o: ../FL/fl_casts.H
-tile.o: ../FL/fl_config.h
-tile.o: ../FL/Fl_Double_Window.H
-tile.o: ../FL/Fl_Export.H
-tile.o: ../FL/Fl_Group.H
-tile.o: ../FL/Fl_Image.H
-tile.o: ../FL/Fl_Tile.H
-tile.o: ../FL/fl_types.h
-tile.o: ../FL/fl_utf8.h
-tile.o: ../FL/Fl_Widget.H
-tile.o: ../FL/Fl_Window.H
-tile.o: ../FL/platform_types.h
-tiled_image.o: ../config.h
-tiled_image.o: ../FL/Enumerations.H
-tiled_image.o: ../FL/Fl.H
-tiled_image.o: ../FL/fl_attr.h
-tiled_image.o: ../FL/Fl_Bitmap.H
-tiled_image.o: ../FL/Fl_Button.H
-tiled_image.o: ../FL/Fl_Cairo.H
-tiled_image.o: ../FL/fl_casts.H
-tiled_image.o: ../FL/fl_config.h
-tiled_image.o: ../FL/Fl_Double_Window.H
-tiled_image.o: ../FL/Fl_Export.H
-tiled_image.o: ../FL/Fl_Group.H
-tiled_image.o: ../FL/Fl_Image.H
-tiled_image.o: ../FL/Fl_Pixmap.H
-tiled_image.o: ../FL/Fl_Tiled_Image.H
-tiled_image.o: ../FL/fl_types.h
-tiled_image.o: ../FL/fl_utf8.h
-tiled_image.o: ../FL/Fl_Widget.H
-tiled_image.o: ../FL/Fl_Window.H
-tiled_image.o: ../FL/platform.H
-tiled_image.o: ../FL/platform_types.h
-tiled_image.o: ../FL/x11.H
-tiled_image.o: list_visuals.cxx
-tiled_image.o: pixmaps/tile.xpm
-tree.o: ../FL/Enumerations.H
-tree.o: ../FL/filename.H
-tree.o: ../FL/Fl.H
-tree.o: ../FL/fl_ask.H
-tree.o: ../FL/fl_attr.h
-tree.o: ../FL/Fl_Bitmap.H
-tree.o: ../FL/Fl_Box.H
-tree.o: ../FL/Fl_Browser.H
-tree.o: ../FL/Fl_Browser_.H
-tree.o: ../FL/Fl_Button.H
-tree.o: ../FL/Fl_Cairo.H
-tree.o: ../FL/fl_casts.H
-tree.o: ../FL/Fl_Check_Button.H
-tree.o: ../FL/Fl_Choice.H
-tree.o: ../FL/Fl_Color_Chooser.H
-tree.o: ../FL/fl_config.h
-tree.o: ../FL/Fl_Device.H
-tree.o: ../FL/Fl_Double_Window.H
-tree.o: ../FL/fl_draw.H
-tree.o: ../FL/Fl_Export.H
-tree.o: ../FL/Fl_File_Browser.H
-tree.o: ../FL/Fl_File_Chooser.H
-tree.o: ../FL/Fl_File_Icon.H
-tree.o: ../FL/Fl_File_Input.H
-tree.o: ../FL/Fl_Graphics_Driver.H
-tree.o: ../FL/Fl_Group.H
-tree.o: ../FL/Fl_Image.H
-tree.o: ../FL/Fl_Input.H
-tree.o: ../FL/Fl_Input_.H
-tree.o: ../FL/Fl_Light_Button.H
-tree.o: ../FL/Fl_Menu_.H
-tree.o: ../FL/Fl_Menu_Button.H
-tree.o: ../FL/Fl_Menu_Item.H
-tree.o: ../FL/fl_message.H
-tree.o: ../FL/Fl_Multi_Label.H
-tree.o: ../FL/Fl_Pixmap.H
-tree.o: ../FL/Fl_Plugin.H
-tree.o: ../FL/Fl_Preferences.H
-tree.o: ../FL/Fl_Rect.H
-tree.o: ../FL/Fl_Return_Button.H
-tree.o: ../FL/Fl_RGB_Image.H
-tree.o: ../FL/Fl_Scrollbar.H
-tree.o: ../FL/Fl_Slider.H
-tree.o: ../FL/Fl_Terminal.H
-tree.o: ../FL/Fl_Text_Buffer.H
-tree.o: ../FL/Fl_Text_Display.H
-tree.o: ../FL/Fl_Tile.H
-tree.o: ../FL/Fl_Tooltip.H
-tree.o: ../FL/Fl_Tree.H
-tree.o: ../FL/Fl_Tree_Item.H
-tree.o: ../FL/Fl_Tree_Item_Array.H
-tree.o: ../FL/Fl_Tree_Prefs.H
-tree.o: ../FL/fl_types.h
-tree.o: ../FL/fl_utf8.h
-tree.o: ../FL/Fl_Valuator.H
-tree.o: ../FL/Fl_Value_Input.H
-tree.o: ../FL/Fl_Value_Slider.H
-tree.o: ../FL/Fl_Widget.H
-tree.o: ../FL/Fl_Window.H
-tree.o: ../FL/platform_types.h
-tree.o: tree.h
-twowin.o: ../FL/Enumerations.H
-twowin.o: ../FL/Fl.H
-twowin.o: ../FL/fl_attr.h
-twowin.o: ../FL/Fl_Bitmap.H
-twowin.o: ../FL/Fl_Button.H
-twowin.o: ../FL/Fl_Cairo.H
-twowin.o: ../FL/fl_casts.H
-twowin.o: ../FL/fl_config.h
-twowin.o: ../FL/Fl_Double_Window.H
-twowin.o: ../FL/Fl_Export.H
-twowin.o: ../FL/Fl_Group.H
-twowin.o: ../FL/Fl_Image.H
-twowin.o: ../FL/Fl_Input.H
-twowin.o: ../FL/Fl_Input_.H
-twowin.o: ../FL/fl_types.h
-twowin.o: ../FL/fl_utf8.h
-twowin.o: ../FL/Fl_Widget.H
-twowin.o: ../FL/Fl_Window.H
-twowin.o: ../FL/platform_types.h
-unittests.o: ../FL/Enumerations.H
-unittests.o: ../FL/filename.H
-unittests.o: ../FL/Fl.H
-unittests.o: ../FL/fl_ask.H
-unittests.o: ../FL/fl_attr.h
-unittests.o: ../FL/Fl_Bitmap.H
-unittests.o: ../FL/Fl_Box.H
-unittests.o: ../FL/Fl_Browser.H
-unittests.o: ../FL/Fl_Browser_.H
-unittests.o: ../FL/Fl_Cairo.H
-unittests.o: ../FL/fl_casts.H
-unittests.o: ../FL/fl_config.h
-unittests.o: ../FL/Fl_Device.H
-unittests.o: ../FL/Fl_Double_Window.H
-unittests.o: ../FL/fl_draw.H
-unittests.o: ../FL/Fl_Export.H
-unittests.o: ../FL/Fl_Graphics_Driver.H
-unittests.o: ../FL/Fl_Group.H
-unittests.o: ../FL/Fl_Help_View.H
-unittests.o: ../FL/Fl_Hold_Browser.H
-unittests.o: ../FL/Fl_Image.H
-unittests.o: ../FL/Fl_Pixmap.H
-unittests.o: ../FL/Fl_Plugin.H
-unittests.o: ../FL/Fl_Preferences.H
-unittests.o: ../FL/Fl_Rect.H
-unittests.o: ../FL/Fl_RGB_Image.H
-unittests.o: ../FL/Fl_Scrollbar.H
-unittests.o: ../FL/Fl_Slider.H
-unittests.o: ../FL/fl_string_functions.h
-unittests.o: ../FL/Fl_Terminal.H
-unittests.o: ../FL/fl_types.h
-unittests.o: ../FL/fl_utf8.h
-unittests.o: ../FL/Fl_Valuator.H
-unittests.o: ../FL/Fl_Widget.H
-unittests.o: ../FL/Fl_Window.H
-unittests.o: ../FL/platform_types.h
-unittests.o: unittests.h
-unittest_about.o: ../FL/Enumerations.H
-unittest_about.o: ../FL/filename.H
-unittest_about.o: ../FL/Fl.H
-unittest_about.o: ../FL/fl_attr.h
-unittest_about.o: ../FL/Fl_Bitmap.H
-unittest_about.o: ../FL/Fl_Cairo.H
-unittest_about.o: ../FL/fl_casts.H
-unittest_about.o: ../FL/fl_config.h
-unittest_about.o: ../FL/Fl_Device.H
-unittest_about.o: ../FL/Fl_Double_Window.H
-unittest_about.o: ../FL/fl_draw.H
-unittest_about.o: ../FL/Fl_Export.H
-unittest_about.o: ../FL/Fl_Graphics_Driver.H
-unittest_about.o: ../FL/Fl_Group.H
-unittest_about.o: ../FL/Fl_Help_View.H
-unittest_about.o: ../FL/Fl_Image.H
-unittest_about.o: ../FL/Fl_Pixmap.H
-unittest_about.o: ../FL/Fl_Plugin.H
-unittest_about.o: ../FL/Fl_Preferences.H
-unittest_about.o: ../FL/Fl_Rect.H
-unittest_about.o: ../FL/Fl_RGB_Image.H
-unittest_about.o: ../FL/Fl_Scrollbar.H
-unittest_about.o: ../FL/Fl_Slider.H
-unittest_about.o: ../FL/fl_types.h
-unittest_about.o: ../FL/fl_utf8.h
-unittest_about.o: ../FL/Fl_Valuator.H
-unittest_about.o: ../FL/Fl_Widget.H
-unittest_about.o: ../FL/Fl_Window.H
-unittest_about.o: ../FL/platform_types.h
-unittest_about.o: unittests.h
-unittest_circles.o: ../config.h
-unittest_circles.o: ../FL/Enumerations.H
-unittest_circles.o: ../FL/Fl.H
-unittest_circles.o: ../FL/fl_attr.h
-unittest_circles.o: ../FL/Fl_Bitmap.H
-unittest_circles.o: ../FL/Fl_Box.H
-unittest_circles.o: ../FL/Fl_Cairo.H
-unittest_circles.o: ../FL/fl_casts.H
-unittest_circles.o: ../FL/fl_config.h
-unittest_circles.o: ../FL/Fl_Device.H
-unittest_circles.o: ../FL/Fl_Double_Window.H
-unittest_circles.o: ../FL/fl_draw.H
-unittest_circles.o: ../FL/Fl_Export.H
-unittest_circles.o: ../FL/Fl_Gl_Window.H
-unittest_circles.o: ../FL/Fl_Graphics_Driver.H
-unittest_circles.o: ../FL/Fl_Group.H
-unittest_circles.o: ../FL/Fl_Image.H
-unittest_circles.o: ../FL/Fl_Pixmap.H
-unittest_circles.o: ../FL/Fl_Plugin.H
-unittest_circles.o: ../FL/Fl_Preferences.H
-unittest_circles.o: ../FL/Fl_Rect.H
-unittest_circles.o: ../FL/Fl_RGB_Image.H
-unittest_circles.o: ../FL/fl_types.h
-unittest_circles.o: ../FL/fl_utf8.h
-unittest_circles.o: ../FL/Fl_Widget.H
-unittest_circles.o: ../FL/Fl_Window.H
-unittest_circles.o: ../FL/math.h
-unittest_circles.o: ../FL/platform_types.h
-unittest_circles.o: unittests.h
-unittest_complex_shapes.o: ../config.h
-unittest_complex_shapes.o: ../FL/Enumerations.H
-unittest_complex_shapes.o: ../FL/Fl.H
-unittest_complex_shapes.o: ../FL/fl_attr.h
-unittest_complex_shapes.o: ../FL/Fl_Bitmap.H
-unittest_complex_shapes.o: ../FL/Fl_Box.H
-unittest_complex_shapes.o: ../FL/Fl_Cairo.H
-unittest_complex_shapes.o: ../FL/fl_casts.H
-unittest_complex_shapes.o: ../FL/fl_config.h
-unittest_complex_shapes.o: ../FL/Fl_Device.H
-unittest_complex_shapes.o: ../FL/Fl_Dial.H
-unittest_complex_shapes.o: ../FL/Fl_Double_Window.H
-unittest_complex_shapes.o: ../FL/fl_draw.H
-unittest_complex_shapes.o: ../FL/Fl_Export.H
-unittest_complex_shapes.o: ../FL/Fl_Gl_Window.H
-unittest_complex_shapes.o: ../FL/Fl_Graphics_Driver.H
-unittest_complex_shapes.o: ../FL/Fl_Group.H
-unittest_complex_shapes.o: ../FL/Fl_Hor_Value_Slider.H
-unittest_complex_shapes.o: ../FL/Fl_Image.H
-unittest_complex_shapes.o: ../FL/Fl_Pixmap.H
-unittest_complex_shapes.o: ../FL/Fl_Plugin.H
-unittest_complex_shapes.o: ../FL/Fl_Positioner.H
-unittest_complex_shapes.o: ../FL/Fl_Preferences.H
-unittest_complex_shapes.o: ../FL/Fl_Rect.H
-unittest_complex_shapes.o: ../FL/Fl_RGB_Image.H
-unittest_complex_shapes.o: ../FL/Fl_Slider.H
-unittest_complex_shapes.o: ../FL/fl_types.h
-unittest_complex_shapes.o: ../FL/fl_utf8.h
-unittest_complex_shapes.o: ../FL/Fl_Valuator.H
-unittest_complex_shapes.o: ../FL/Fl_Value_Slider.H
-unittest_complex_shapes.o: ../FL/Fl_Widget.H
-unittest_complex_shapes.o: ../FL/Fl_Window.H
-unittest_complex_shapes.o: ../FL/platform_types.h
-unittest_complex_shapes.o: unittests.h
-unittest_core.o: ../FL/Enumerations.H
-unittest_core.o: ../FL/filename.H
-unittest_core.o: ../FL/Fl.H
-unittest_core.o: ../FL/fl_attr.h
-unittest_core.o: ../FL/Fl_Bitmap.H
-unittest_core.o: ../FL/Fl_Button.H
-unittest_core.o: ../FL/Fl_Cairo.H
-unittest_core.o: ../FL/fl_callback_macros.H
-unittest_core.o: ../FL/fl_casts.H
-unittest_core.o: ../FL/fl_config.h
-unittest_core.o: ../FL/Fl_Double_Window.H
-unittest_core.o: ../FL/Fl_Export.H
-unittest_core.o: ../FL/Fl_Group.H
-unittest_core.o: ../FL/Fl_Image.H
-unittest_core.o: ../FL/Fl_Preferences.H
-unittest_core.o: ../FL/Fl_Rect.H
-unittest_core.o: ../FL/Fl_Scrollbar.H
-unittest_core.o: ../FL/Fl_Terminal.H
-unittest_core.o: ../FL/fl_types.h
-unittest_core.o: ../FL/fl_utf8.h
-unittest_core.o: ../FL/Fl_Widget.H
-unittest_core.o: ../FL/Fl_Window.H
-unittest_core.o: ../FL/platform_types.h
-unittest_core.o: ../src/Fl_String.H
-unittest_core.o: unittests.h
-unittest_fast_shapes.o: ../config.h
-unittest_fast_shapes.o: ../FL/Enumerations.H
-unittest_fast_shapes.o: ../FL/Fl.H
-unittest_fast_shapes.o: ../FL/fl_attr.h
-unittest_fast_shapes.o: ../FL/Fl_Bitmap.H
-unittest_fast_shapes.o: ../FL/Fl_Box.H
-unittest_fast_shapes.o: ../FL/Fl_Cairo.H
-unittest_fast_shapes.o: ../FL/fl_casts.H
-unittest_fast_shapes.o: ../FL/fl_config.h
-unittest_fast_shapes.o: ../FL/Fl_Device.H
-unittest_fast_shapes.o: ../FL/Fl_Double_Window.H
-unittest_fast_shapes.o: ../FL/fl_draw.H
-unittest_fast_shapes.o: ../FL/Fl_Export.H
-unittest_fast_shapes.o: ../FL/Fl_Gl_Window.H
-unittest_fast_shapes.o: ../FL/Fl_Graphics_Driver.H
-unittest_fast_shapes.o: ../FL/Fl_Group.H
-unittest_fast_shapes.o: ../FL/Fl_Image.H
-unittest_fast_shapes.o: ../FL/Fl_Pixmap.H
-unittest_fast_shapes.o: ../FL/Fl_Plugin.H
-unittest_fast_shapes.o: ../FL/Fl_Preferences.H
-unittest_fast_shapes.o: ../FL/Fl_Rect.H
-unittest_fast_shapes.o: ../FL/Fl_RGB_Image.H
-unittest_fast_shapes.o: ../FL/fl_types.h
-unittest_fast_shapes.o: ../FL/fl_utf8.h
-unittest_fast_shapes.o: ../FL/Fl_Widget.H
-unittest_fast_shapes.o: ../FL/Fl_Window.H
-unittest_fast_shapes.o: ../FL/platform_types.h
-unittest_fast_shapes.o: unittests.h
-unittest_images.o: ../FL/Enumerations.H
-unittest_images.o: ../FL/Fl.H
-unittest_images.o: ../FL/fl_attr.h
-unittest_images.o: ../FL/Fl_Bitmap.H
-unittest_images.o: ../FL/Fl_Button.H
-unittest_images.o: ../FL/Fl_Cairo.H
-unittest_images.o: ../FL/fl_casts.H
-unittest_images.o: ../FL/Fl_Check_Button.H
-unittest_images.o: ../FL/fl_config.h
-unittest_images.o: ../FL/Fl_Device.H
-unittest_images.o: ../FL/Fl_Double_Window.H
-unittest_images.o: ../FL/fl_draw.H
-unittest_images.o: ../FL/Fl_Export.H
-unittest_images.o: ../FL/Fl_Graphics_Driver.H
-unittest_images.o: ../FL/Fl_Group.H
-unittest_images.o: ../FL/Fl_Image.H
-unittest_images.o: ../FL/Fl_Light_Button.H
-unittest_images.o: ../FL/Fl_Pixmap.H
-unittest_images.o: ../FL/Fl_Plugin.H
-unittest_images.o: ../FL/Fl_Preferences.H
-unittest_images.o: ../FL/Fl_Radio_Button.H
-unittest_images.o: ../FL/Fl_Rect.H
-unittest_images.o: ../FL/Fl_RGB_Image.H
-unittest_images.o: ../FL/fl_types.h
-unittest_images.o: ../FL/fl_utf8.h
-unittest_images.o: ../FL/Fl_Widget.H
-unittest_images.o: ../FL/Fl_Window.H
-unittest_images.o: ../FL/platform_types.h
-unittest_images.o: unittests.h
-unittest_points.o: ../config.h
-unittest_points.o: ../FL/Enumerations.H
-unittest_points.o: ../FL/Fl.H
-unittest_points.o: ../FL/fl_attr.h
-unittest_points.o: ../FL/Fl_Bitmap.H
-unittest_points.o: ../FL/Fl_Box.H
-unittest_points.o: ../FL/Fl_Cairo.H
-unittest_points.o: ../FL/fl_casts.H
-unittest_points.o: ../FL/fl_config.h
-unittest_points.o: ../FL/Fl_Device.H
-unittest_points.o: ../FL/Fl_Double_Window.H
-unittest_points.o: ../FL/fl_draw.H
-unittest_points.o: ../FL/Fl_Export.H
-unittest_points.o: ../FL/Fl_Gl_Window.H
-unittest_points.o: ../FL/Fl_Graphics_Driver.H
-unittest_points.o: ../FL/Fl_Group.H
-unittest_points.o: ../FL/Fl_Image.H
-unittest_points.o: ../FL/Fl_Pixmap.H
-unittest_points.o: ../FL/Fl_Plugin.H
-unittest_points.o: ../FL/Fl_Preferences.H
-unittest_points.o: ../FL/Fl_Rect.H
-unittest_points.o: ../FL/Fl_RGB_Image.H
-unittest_points.o: ../FL/fl_types.h
-unittest_points.o: ../FL/fl_utf8.h
-unittest_points.o: ../FL/Fl_Widget.H
-unittest_points.o: ../FL/Fl_Window.H
-unittest_points.o: ../FL/platform_types.h
-unittest_points.o: unittests.h
-unittest_schemes.o: ../FL/Enumerations.H
-unittest_schemes.o: ../FL/Fl.H
-unittest_schemes.o: ../FL/Fl_Adjuster.H
-unittest_schemes.o: ../FL/fl_attr.h
-unittest_schemes.o: ../FL/Fl_Bitmap.H
-unittest_schemes.o: ../FL/Fl_Box.H
-unittest_schemes.o: ../FL/Fl_Button.H
-unittest_schemes.o: ../FL/Fl_Cairo.H
-unittest_schemes.o: ../FL/fl_casts.H
-unittest_schemes.o: ../FL/Fl_Check_Button.H
-unittest_schemes.o: ../FL/Fl_Choice.H
-unittest_schemes.o: ../FL/Fl_Clock.H
-unittest_schemes.o: ../FL/fl_config.h
-unittest_schemes.o: ../FL/Fl_Counter.H
-unittest_schemes.o: ../FL/Fl_Device.H
-unittest_schemes.o: ../FL/Fl_Double_Window.H
-unittest_schemes.o: ../FL/fl_draw.H
-unittest_schemes.o: ../FL/Fl_Export.H
-unittest_schemes.o: ../FL/Fl_File_Input.H
-unittest_schemes.o: ../FL/Fl_Graphics_Driver.H
-unittest_schemes.o: ../FL/Fl_Group.H
-unittest_schemes.o: ../FL/Fl_Image.H
-unittest_schemes.o: ../FL/Fl_Input.H
-unittest_schemes.o: ../FL/Fl_Input_.H
-unittest_schemes.o: ../FL/Fl_Light_Button.H
-unittest_schemes.o: ../FL/Fl_Menu_.H
-unittest_schemes.o: ../FL/Fl_Menu_Item.H
-unittest_schemes.o: ../FL/Fl_Multi_Label.H
-unittest_schemes.o: ../FL/Fl_Output.H
-unittest_schemes.o: ../FL/Fl_Pixmap.H
-unittest_schemes.o: ../FL/Fl_Plugin.H
-unittest_schemes.o: ../FL/Fl_Preferences.H
-unittest_schemes.o: ../FL/Fl_Progress.H
-unittest_schemes.o: ../FL/Fl_Radio_Round_Button.H
-unittest_schemes.o: ../FL/Fl_Rect.H
-unittest_schemes.o: ../FL/Fl_RGB_Image.H
-unittest_schemes.o: ../FL/Fl_Roller.H
-unittest_schemes.o: ../FL/Fl_Round_Button.H
-unittest_schemes.o: ../FL/Fl_Scheme.H
-unittest_schemes.o: ../FL/Fl_Scheme_Choice.H
-unittest_schemes.o: ../FL/Fl_Scrollbar.H
-unittest_schemes.o: ../FL/Fl_Slider.H
-unittest_schemes.o: ../FL/Fl_Tabs.H
-unittest_schemes.o: ../FL/Fl_Text_Buffer.H
-unittest_schemes.o: ../FL/Fl_Text_Display.H
-unittest_schemes.o: ../FL/Fl_Text_Editor.H
-unittest_schemes.o: ../FL/fl_types.h
-unittest_schemes.o: ../FL/fl_utf8.h
-unittest_schemes.o: ../FL/Fl_Valuator.H
-unittest_schemes.o: ../FL/Fl_Value_Input.H
-unittest_schemes.o: ../FL/Fl_Value_Output.H
-unittest_schemes.o: ../FL/Fl_Value_Slider.H
-unittest_schemes.o: ../FL/Fl_Widget.H
-unittest_schemes.o: ../FL/Fl_Window.H
-unittest_schemes.o: ../FL/platform_types.h
-unittest_schemes.o: unittests.h
-unittest_scrollbarsize.o: ../FL/Enumerations.H
-unittest_scrollbarsize.o: ../FL/Fl.H
-unittest_scrollbarsize.o: ../FL/fl_attr.h
-unittest_scrollbarsize.o: ../FL/Fl_Bitmap.H
-unittest_scrollbarsize.o: ../FL/Fl_Box.H
-unittest_scrollbarsize.o: ../FL/Fl_Browser.H
-unittest_scrollbarsize.o: ../FL/Fl_Browser_.H
-unittest_scrollbarsize.o: ../FL/Fl_Cairo.H
-unittest_scrollbarsize.o: ../FL/fl_casts.H
-unittest_scrollbarsize.o: ../FL/fl_config.h
-unittest_scrollbarsize.o: ../FL/Fl_Device.H
-unittest_scrollbarsize.o: ../FL/Fl_Double_Window.H
-unittest_scrollbarsize.o: ../FL/fl_draw.H
-unittest_scrollbarsize.o: ../FL/Fl_Export.H
-unittest_scrollbarsize.o: ../FL/Fl_Graphics_Driver.H
-unittest_scrollbarsize.o: ../FL/Fl_Group.H
-unittest_scrollbarsize.o: ../FL/Fl_Image.H
-unittest_scrollbarsize.o: ../FL/Fl_Pixmap.H
-unittest_scrollbarsize.o: ../FL/Fl_Plugin.H
-unittest_scrollbarsize.o: ../FL/Fl_Preferences.H
-unittest_scrollbarsize.o: ../FL/Fl_Rect.H
-unittest_scrollbarsize.o: ../FL/Fl_RGB_Image.H
-unittest_scrollbarsize.o: ../FL/Fl_Scroll.H
-unittest_scrollbarsize.o: ../FL/Fl_Scrollbar.H
-unittest_scrollbarsize.o: ../FL/Fl_Slider.H
-unittest_scrollbarsize.o: ../FL/Fl_Table.H
-unittest_scrollbarsize.o: ../FL/Fl_Terminal.H
-unittest_scrollbarsize.o: ../FL/Fl_Text_Buffer.H
-unittest_scrollbarsize.o: ../FL/Fl_Text_Display.H
-unittest_scrollbarsize.o: ../FL/Fl_Tree.H
-unittest_scrollbarsize.o: ../FL/Fl_Tree_Item.H
-unittest_scrollbarsize.o: ../FL/Fl_Tree_Item_Array.H
-unittest_scrollbarsize.o: ../FL/Fl_Tree_Prefs.H
-unittest_scrollbarsize.o: ../FL/fl_types.h
-unittest_scrollbarsize.o: ../FL/fl_utf8.h
-unittest_scrollbarsize.o: ../FL/Fl_Valuator.H
-unittest_scrollbarsize.o: ../FL/Fl_Value_Slider.H
-unittest_scrollbarsize.o: ../FL/Fl_Widget.H
-unittest_scrollbarsize.o: ../FL/Fl_Window.H
-unittest_scrollbarsize.o: ../FL/platform_types.h
-unittest_scrollbarsize.o: unittests.h
-unittest_symbol.o: ../FL/Enumerations.H
-unittest_symbol.o: ../FL/Fl.H
-unittest_symbol.o: ../FL/fl_attr.h
-unittest_symbol.o: ../FL/Fl_Bitmap.H
-unittest_symbol.o: ../FL/Fl_Box.H
-unittest_symbol.o: ../FL/Fl_Cairo.H
-unittest_symbol.o: ../FL/fl_casts.H
-unittest_symbol.o: ../FL/fl_config.h
-unittest_symbol.o: ../FL/Fl_Device.H
-unittest_symbol.o: ../FL/Fl_Double_Window.H
-unittest_symbol.o: ../FL/fl_draw.H
-unittest_symbol.o: ../FL/Fl_Export.H
-unittest_symbol.o: ../FL/Fl_Graphics_Driver.H
-unittest_symbol.o: ../FL/Fl_Group.H
-unittest_symbol.o: ../FL/Fl_Image.H
-unittest_symbol.o: ../FL/Fl_Pixmap.H
-unittest_symbol.o: ../FL/Fl_Plugin.H
-unittest_symbol.o: ../FL/Fl_Preferences.H
-unittest_symbol.o: ../FL/Fl_Rect.H
-unittest_symbol.o: ../FL/Fl_RGB_Image.H
-unittest_symbol.o: ../FL/fl_types.h
-unittest_symbol.o: ../FL/fl_utf8.h
-unittest_symbol.o: ../FL/Fl_Widget.H
-unittest_symbol.o: ../FL/Fl_Window.H
-unittest_symbol.o: ../FL/platform_types.h
-unittest_symbol.o: unittests.h
-unittest_terminal.o: ../FL/Enumerations.H
-unittest_terminal.o: ../FL/Fl.H
-unittest_terminal.o: ../FL/fl_attr.h
-unittest_terminal.o: ../FL/Fl_Bitmap.H
-unittest_terminal.o: ../FL/Fl_Cairo.H
-unittest_terminal.o: ../FL/fl_casts.H
-unittest_terminal.o: ../FL/fl_config.h
-unittest_terminal.o: ../FL/Fl_Double_Window.H
-unittest_terminal.o: ../FL/Fl_Export.H
-unittest_terminal.o: ../FL/Fl_Group.H
-unittest_terminal.o: ../FL/Fl_Image.H
-unittest_terminal.o: ../FL/Fl_Rect.H
-unittest_terminal.o: ../FL/Fl_Scrollbar.H
-unittest_terminal.o: ../FL/Fl_Terminal.H
-unittest_terminal.o: ../FL/fl_types.h
-unittest_terminal.o: ../FL/fl_utf8.h
-unittest_terminal.o: ../FL/Fl_Widget.H
-unittest_terminal.o: ../FL/Fl_Window.H
-unittest_terminal.o: ../FL/platform_types.h
-unittest_terminal.o: unittests.h
-unittest_text.o: ../FL/Enumerations.H
-unittest_text.o: ../FL/Fl.H
-unittest_text.o: ../FL/fl_attr.h
-unittest_text.o: ../FL/Fl_Bitmap.H
-unittest_text.o: ../FL/Fl_Box.H
-unittest_text.o: ../FL/Fl_Button.H
-unittest_text.o: ../FL/Fl_Cairo.H
-unittest_text.o: ../FL/fl_casts.H
-unittest_text.o: ../FL/Fl_Check_Button.H
-unittest_text.o: ../FL/fl_config.h
-unittest_text.o: ../FL/Fl_Device.H
-unittest_text.o: ../FL/Fl_Double_Window.H
-unittest_text.o: ../FL/fl_draw.H
-unittest_text.o: ../FL/Fl_Export.H
-unittest_text.o: ../FL/Fl_Graphics_Driver.H
-unittest_text.o: ../FL/Fl_Group.H
-unittest_text.o: ../FL/Fl_Image.H
-unittest_text.o: ../FL/Fl_Light_Button.H
-unittest_text.o: ../FL/Fl_Pixmap.H
-unittest_text.o: ../FL/Fl_Plugin.H
-unittest_text.o: ../FL/Fl_Preferences.H
-unittest_text.o: ../FL/Fl_Rect.H
-unittest_text.o: ../FL/Fl_RGB_Image.H
-unittest_text.o: ../FL/fl_types.h
-unittest_text.o: ../FL/fl_utf8.h
-unittest_text.o: ../FL/Fl_Widget.H
-unittest_text.o: ../FL/Fl_Window.H
-unittest_text.o: ../FL/platform_types.h
-unittest_text.o: unittests.h
-unittest_unicode.o: ../FL/Enumerations.H
-unittest_unicode.o: ../FL/Fl.H
-unittest_unicode.o: ../FL/fl_attr.h
-unittest_unicode.o: ../FL/Fl_Bitmap.H
-unittest_unicode.o: ../FL/Fl_Cairo.H
-unittest_unicode.o: ../FL/fl_casts.H
-unittest_unicode.o: ../FL/Fl_Choice.H
-unittest_unicode.o: ../FL/fl_config.h
-unittest_unicode.o: ../FL/Fl_Device.H
-unittest_unicode.o: ../FL/Fl_Double_Window.H
-unittest_unicode.o: ../FL/fl_draw.H
-unittest_unicode.o: ../FL/Fl_Export.H
-unittest_unicode.o: ../FL/Fl_Graphics_Driver.H
-unittest_unicode.o: ../FL/Fl_Group.H
-unittest_unicode.o: ../FL/Fl_Hor_Value_Slider.H
-unittest_unicode.o: ../FL/Fl_Image.H
-unittest_unicode.o: ../FL/Fl_Input.H
-unittest_unicode.o: ../FL/Fl_Input_.H
-unittest_unicode.o: ../FL/Fl_Menu_.H
-unittest_unicode.o: ../FL/Fl_Menu_Item.H
-unittest_unicode.o: ../FL/Fl_Multiline_Input.H
-unittest_unicode.o: ../FL/Fl_Multi_Label.H
-unittest_unicode.o: ../FL/Fl_Pixmap.H
-unittest_unicode.o: ../FL/Fl_Plugin.H
-unittest_unicode.o: ../FL/Fl_Preferences.H
-unittest_unicode.o: ../FL/Fl_Rect.H
-unittest_unicode.o: ../FL/Fl_RGB_Image.H
-unittest_unicode.o: ../FL/Fl_Scrollbar.H
-unittest_unicode.o: ../FL/Fl_Slider.H
-unittest_unicode.o: ../FL/Fl_Text_Buffer.H
-unittest_unicode.o: ../FL/Fl_Text_Display.H
-unittest_unicode.o: ../FL/fl_types.h
-unittest_unicode.o: ../FL/fl_utf8.h
-unittest_unicode.o: ../FL/Fl_Valuator.H
-unittest_unicode.o: ../FL/Fl_Value_Slider.H
-unittest_unicode.o: ../FL/Fl_Widget.H
-unittest_unicode.o: ../FL/Fl_Window.H
-unittest_unicode.o: ../FL/platform_types.h
-unittest_unicode.o: unittests.h
-unittest_viewport.o: ../FL/Enumerations.H
-unittest_viewport.o: ../FL/Fl.H
-unittest_viewport.o: ../FL/fl_attr.h
-unittest_viewport.o: ../FL/Fl_Bitmap.H
-unittest_viewport.o: ../FL/Fl_Box.H
-unittest_viewport.o: ../FL/Fl_Cairo.H
-unittest_viewport.o: ../FL/fl_casts.H
-unittest_viewport.o: ../FL/fl_config.h
-unittest_viewport.o: ../FL/Fl_Device.H
-unittest_viewport.o: ../FL/Fl_Double_Window.H
-unittest_viewport.o: ../FL/fl_draw.H
-unittest_viewport.o: ../FL/Fl_Export.H
-unittest_viewport.o: ../FL/Fl_Graphics_Driver.H
-unittest_viewport.o: ../FL/Fl_Group.H
-unittest_viewport.o: ../FL/Fl_Image.H
-unittest_viewport.o: ../FL/Fl_Pixmap.H
-unittest_viewport.o: ../FL/Fl_Plugin.H
-unittest_viewport.o: ../FL/Fl_Preferences.H
-unittest_viewport.o: ../FL/Fl_Rect.H
-unittest_viewport.o: ../FL/Fl_RGB_Image.H
-unittest_viewport.o: ../FL/fl_types.h
-unittest_viewport.o: ../FL/fl_utf8.h
-unittest_viewport.o: ../FL/Fl_Widget.H
-unittest_viewport.o: ../FL/Fl_Window.H
-unittest_viewport.o: ../FL/platform_types.h
-unittest_viewport.o: unittests.h
-utf8.o: ../FL/Enumerations.H
-utf8.o: ../FL/Fl.H
-utf8.o: ../FL/fl_attr.h
-utf8.o: ../FL/Fl_Bitmap.H
-utf8.o: ../FL/Fl_Box.H
-utf8.o: ../FL/Fl_Browser.H
-utf8.o: ../FL/Fl_Browser_.H
-utf8.o: ../FL/Fl_Button.H
-utf8.o: ../FL/Fl_Cairo.H
-utf8.o: ../FL/fl_casts.H
-utf8.o: ../FL/Fl_Check_Button.H
-utf8.o: ../FL/Fl_Choice.H
-utf8.o: ../FL/fl_config.h
-utf8.o: ../FL/Fl_Device.H
-utf8.o: ../FL/Fl_Double_Window.H
-utf8.o: ../FL/fl_draw.H
-utf8.o: ../FL/Fl_Export.H
-utf8.o: ../FL/Fl_Graphics_Driver.H
-utf8.o: ../FL/Fl_Group.H
-utf8.o: ../FL/Fl_Hold_Browser.H
-utf8.o: ../FL/Fl_Image.H
-utf8.o: ../FL/Fl_Input.H
-utf8.o: ../FL/Fl_Input_.H
-utf8.o: ../FL/Fl_Light_Button.H
-utf8.o: ../FL/Fl_Menu_.H
-utf8.o: ../FL/Fl_Menu_Item.H
-utf8.o: ../FL/Fl_Multi_Label.H
-utf8.o: ../FL/Fl_Output.H
-utf8.o: ../FL/Fl_Pixmap.H
-utf8.o: ../FL/Fl_Plugin.H
-utf8.o: ../FL/Fl_Preferences.H
-utf8.o: ../FL/Fl_Rect.H
-utf8.o: ../FL/Fl_RGB_Image.H
-utf8.o: ../FL/Fl_Scroll.H
-utf8.o: ../FL/Fl_Scrollbar.H
-utf8.o: ../FL/Fl_Slider.H
-utf8.o: ../FL/fl_string_functions.h
-utf8.o: ../FL/Fl_Tile.H
-utf8.o: ../FL/fl_types.h
-utf8.o: ../FL/fl_utf8.h
-utf8.o: ../FL/Fl_Valuator.H
-utf8.o: ../FL/Fl_Value_Output.H
-utf8.o: ../FL/Fl_Widget.H
-utf8.o: ../FL/Fl_Window.H
-utf8.o: ../FL/platform_types.h
-valuators.o: ../FL/Enumerations.H
-valuators.o: ../FL/Fl.H
-valuators.o: ../FL/Fl_Adjuster.H
-valuators.o: ../FL/fl_attr.h
-valuators.o: ../FL/Fl_Bitmap.H
-valuators.o: ../FL/Fl_Box.H
-valuators.o: ../FL/Fl_Button.H
-valuators.o: ../FL/Fl_Cairo.H
-valuators.o: ../FL/fl_casts.H
-valuators.o: ../FL/fl_config.h
-valuators.o: ../FL/Fl_Counter.H
-valuators.o: ../FL/Fl_Dial.H
-valuators.o: ../FL/Fl_Double_Window.H
-valuators.o: ../FL/Fl_Export.H
-valuators.o: ../FL/Fl_Group.H
-valuators.o: ../FL/Fl_Image.H
-valuators.o: ../FL/Fl_Input.H
-valuators.o: ../FL/Fl_Input_.H
-valuators.o: ../FL/Fl_Rect.H
-valuators.o: ../FL/Fl_Repeat_Button.H
-valuators.o: ../FL/Fl_Roller.H
-valuators.o: ../FL/Fl_Scrollbar.H
-valuators.o: ../FL/Fl_Slider.H
-valuators.o: ../FL/Fl_Spinner.H
-valuators.o: ../FL/Fl_Terminal.H
-valuators.o: ../FL/fl_types.h
-valuators.o: ../FL/fl_utf8.h
-valuators.o: ../FL/Fl_Valuator.H
-valuators.o: ../FL/Fl_Value_Input.H
-valuators.o: ../FL/Fl_Value_Output.H
-valuators.o: ../FL/Fl_Value_Slider.H
-valuators.o: ../FL/Fl_Widget.H
-valuators.o: ../FL/Fl_Window.H
-valuators.o: ../FL/platform_types.h
-valuators.o: valuators.h
-windowfocus.o: ../FL/Enumerations.H
-windowfocus.o: ../FL/Fl.H
-windowfocus.o: ../FL/fl_attr.h
-windowfocus.o: ../FL/Fl_Bitmap.H
-windowfocus.o: ../FL/Fl_Box.H
-windowfocus.o: ../FL/Fl_Cairo.H
-windowfocus.o: ../FL/fl_casts.H
-windowfocus.o: ../FL/fl_config.h
-windowfocus.o: ../FL/Fl_Double_Window.H
-windowfocus.o: ../FL/Fl_Export.H
-windowfocus.o: ../FL/Fl_Group.H
-windowfocus.o: ../FL/Fl_Image.H
-windowfocus.o: ../FL/Fl_Input.H
-windowfocus.o: ../FL/Fl_Input_.H
-windowfocus.o: ../FL/fl_types.h
-windowfocus.o: ../FL/fl_utf8.h
-windowfocus.o: ../FL/Fl_Widget.H
-windowfocus.o: ../FL/Fl_Window.H
-windowfocus.o: ../FL/platform_types.h
-wizard.o: ../FL/Enumerations.H
-wizard.o: ../FL/Fl.H
-wizard.o: ../FL/fl_attr.h
-wizard.o: ../FL/Fl_Button.H
-wizard.o: ../FL/Fl_Cairo.H
-wizard.o: ../FL/fl_casts.H
-wizard.o: ../FL/fl_config.h
-wizard.o: ../FL/Fl_Export.H
-wizard.o: ../FL/Fl_Group.H
-wizard.o: ../FL/fl_types.h
-wizard.o: ../FL/fl_utf8.h
-wizard.o: ../FL/Fl_Widget.H
-wizard.o: ../FL/Fl_Window.H
-wizard.o: ../FL/Fl_Wizard.H
-wizard.o: ../FL/platform_types.h
diff --git a/zlib/Makefile b/zlib/Makefile
deleted file mode 100644
index dea62afee..000000000
--- a/zlib/Makefile
+++ /dev/null
@@ -1,93 +0,0 @@
-#
-# ZIP library makefile for the Fast Light Toolkit (FLTK).
-#
-# Copyright 1998-2023 by Bill Spitzak and others.
-#
-# This library is free software. Distribution and use rights are outlined in
-# the file "COPYING" which should have been included with this file. If this
-# file is missing or damaged, see the license at:
-#
-# https://www.fltk.org/COPYING.php
-#
-# Please see the following page on how to report bugs and issues:
-#
-# https://www.fltk.org/bugs.php
-#
-
-include ../makeinclude
-
-#
-# Object files...
-#
-
-OBJS = adler32.o compress.o crc32.o uncompr.o deflate.o \
- trees.o zutil.o inflate.o inftrees.o inffast.o \
- gzclose.o gzlib.o gzread.o gzwrite.o infback.o
-
-LIBZ = ../lib/libfltk_z$(LIBEXT)
-
-#
-# Make all targets...
-#
-
-all: $(LIBZ)
-
-#
-# Clean all targets and object files...
-#
-
-clean:
- $(RM) $(OBJS)
- $(RM) $(LIBZ)
-
-#
-# Install everything...
-#
-
-install: $(LIBZ)
- echo "Installing libfltk_z$(LIBEXT) in $(libdir)..."
- -$(INSTALL_DIR) "$(DESTDIR)$(libdir)"
- $(INSTALL_LIB) $(LIBZ) "$(DESTDIR)$(libdir)"
- $(RANLIB) "$(DESTDIR)$(libdir)/libfltk_z$(LIBEXT)"
- echo "Installing zlib headers in $(includedir)/FL/images..."
- -$(INSTALL_DIR) "$(DESTDIR)$(includedir)/FL/images"
- $(INSTALL_DATA) zconf.h "$(DESTDIR)$(includedir)/FL/images"
- $(INSTALL_DATA) zlib.h "$(DESTDIR)$(includedir)/FL/images"
- $(INSTALL_DATA) zutil.h "$(DESTDIR)$(includedir)/FL/images"
-
-#
-# Uninstall everything...
-#
-
-uninstall:
- echo "Uninstalling libfltk_z$(LIBEXT) in $(libdir)..."
- $(RM) "$(libdir)/libfltk_z$(LIBEXT)"
- echo "Uninstalling zlib headers in $(includedir)/FL/images..."
- $(RM) "$(includedir)/FL/images/zconf.h"
- $(RM) "$(includedir)/FL/images/zlib.h"
- $(RM) "$(includedir)/FL/images/zutil.h"
-
-#
-# libfltk_z.a
-#
-
-$(LIBZ): $(OBJS)
- echo Archiving $@...
- $(RM) $@
- $(LIBCOMMAND) $@ $(OBJS)
- $(RANLIB) $@
-
-#
-# Make dependencies...
-#
-
-depend: $(OBJS:.o=.c)
- makedepend -Y -I.. -f makedepend -w 20 $(OBJS:.o=.c)
- echo "# DO NOT DELETE THIS LINE -- make depend depends on it." > makedepend.tmp
- echo "" >> makedepend.tmp
- grep '^[a-zA-Z]' makedepend | ( LC_ALL=C sort -u -f >> makedepend.tmp; )
- mv makedepend.tmp makedepend
-
-include makedepend
-
-$(OBJS): ../makeinclude
diff --git a/zlib/makedepend b/zlib/makedepend
deleted file mode 100644
index d61d4a3ce..000000000
--- a/zlib/makedepend
+++ /dev/null
@@ -1,62 +0,0 @@
-# DO NOT DELETE THIS LINE -- make depend depends on it.
-
-adler32.o: zconf.h
-adler32.o: zlib.h
-adler32.o: zutil.h
-compress.o: zconf.h
-compress.o: zlib.h
-crc32.o: crc32.h
-crc32.o: zconf.h
-crc32.o: zlib.h
-crc32.o: zutil.h
-deflate.o: deflate.h
-deflate.o: zconf.h
-deflate.o: zlib.h
-deflate.o: zutil.h
-gzclose.o: gzguts.h
-gzclose.o: zconf.h
-gzclose.o: zlib.h
-gzlib.o: gzguts.h
-gzlib.o: zconf.h
-gzlib.o: zlib.h
-gzread.o: gzguts.h
-gzread.o: zconf.h
-gzread.o: zlib.h
-gzwrite.o: gzguts.h
-gzwrite.o: zconf.h
-gzwrite.o: zlib.h
-infback.o: inffast.h
-infback.o: inffixed.h
-infback.o: inflate.h
-infback.o: inftrees.h
-infback.o: zconf.h
-infback.o: zlib.h
-infback.o: zutil.h
-inffast.o: inffast.h
-inffast.o: inflate.h
-inffast.o: inftrees.h
-inffast.o: zconf.h
-inffast.o: zlib.h
-inffast.o: zutil.h
-inflate.o: inffast.h
-inflate.o: inffixed.h
-inflate.o: inflate.h
-inflate.o: inftrees.h
-inflate.o: zconf.h
-inflate.o: zlib.h
-inflate.o: zutil.h
-inftrees.o: inftrees.h
-inftrees.o: zconf.h
-inftrees.o: zlib.h
-inftrees.o: zutil.h
-trees.o: deflate.h
-trees.o: trees.h
-trees.o: zconf.h
-trees.o: zlib.h
-trees.o: zutil.h
-uncompr.o: zconf.h
-uncompr.o: zlib.h
-zutil.o: gzguts.h
-zutil.o: zconf.h
-zutil.o: zlib.h
-zutil.o: zutil.h