Hi Dave, thanks for your request. Unfortunately FLTK 1.4 is in
maintenance mode (end of active development) and receives only bug fixes
and some selected backports from 1.5 development. There are no plans to
change configure/Makefiles in 1.4 because configure/make support will be
dropped in the next minor release (1.5.0). It has already been removed
from 1.5 (git).
That said, I can see two (or even three) options for what you likely
want to achieve:
1. With configure you can use the DESTDIR environment variable to
install to a custom prefix, although this still uses the /Applications
folder as in "$(DESTDIR)/Applications/...".
2. You can use CMake to build and install FLTK, for a start please see
README.CMake.txt. With CMake you can use the CMake variable
`CMAKE_INSTALL_PREFIX` to change the installation prefix.
3. You can use FLTK directly from its build folder which is particularly
useful if you build with CMake. CMake can use out-of-tree builds, i.e.
the build folder can be any folder on your system which not be related
to the source folder. Theoretically you can delete the source tree after
building.
We recommend everybody to use CMake to build FLTK 1.4.x to be prepared
for 1.5 where configure will no longer be available. Building FLTK with
CMake is particularly useful if you also build your own application(s)
with CMake.
I hope this helps. If you have further questions, please feel free to
ask ...