1998-10-20 21:06:19 +00:00
|
|
|
#
|
2021-02-15 19:45:20 +01:00
|
|
|
# Top-level Makefile for the Fast Light Tool Kit (FLTK).
|
1998-10-20 21:06:19 +00:00
|
|
|
#
|
2023-03-09 13:21:49 +02:00
|
|
|
# Copyright 1998-2023 by Bill Spitzak and others.
|
1998-10-20 21:06:19 +00:00
|
|
|
#
|
2011-07-19 04:49:30 +00:00
|
|
|
# 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:
|
|
|
|
#
|
2020-07-01 18:03:10 +02:00
|
|
|
# https://www.fltk.org/COPYING.php
|
1998-10-20 21:06:19 +00:00
|
|
|
#
|
2020-07-01 18:03:10 +02:00
|
|
|
# Please see the following page on how to report bugs and issues:
|
2005-04-16 00:13:17 +00:00
|
|
|
#
|
2020-07-01 18:03:10 +02:00
|
|
|
# https://www.fltk.org/bugs.php
|
1998-10-20 21:06:19 +00:00
|
|
|
#
|
1998-10-06 18:21:25 +00:00
|
|
|
|
2001-09-30 12:30:13 +00:00
|
|
|
include makeinclude
|
|
|
|
|
2023-05-09 16:19:12 +02:00
|
|
|
DIRS = $(IMAGEDIRS) $(LIBDECORDIR) src $(CAIRODIR) $(FLUIDDIR) fltk-options test \
|
|
|
|
documentation
|
1998-10-20 21:06:19 +00:00
|
|
|
|
2007-11-20 21:15:08 +00:00
|
|
|
all: makeinclude fltk-config
|
2002-07-26 14:22:02 +00:00
|
|
|
for dir in $(DIRS); do\
|
1998-10-20 21:06:19 +00:00
|
|
|
echo "=== making $$dir ===";\
|
2006-08-24 21:46:38 +00:00
|
|
|
(cd $$dir; $(MAKE) $(MFLAGS)) || exit 1;\
|
1998-10-20 21:06:19 +00:00
|
|
|
done
|
|
|
|
|
1998-11-05 16:04:53 +00:00
|
|
|
install: makeinclude
|
2004-10-18 20:22:25 +00:00
|
|
|
-mkdir -p $(DESTDIR)$(bindir)
|
|
|
|
$(RM) $(DESTDIR)$(bindir)/fltk-config
|
2007-02-06 19:35:28 +00:00
|
|
|
$(INSTALL_SCRIPT) fltk-config $(DESTDIR)$(bindir)
|
2002-07-26 14:22:02 +00:00
|
|
|
for dir in FL $(DIRS); do\
|
2002-05-01 19:35:53 +00:00
|
|
|
echo "=== installing $$dir ===";\
|
2006-08-24 21:46:38 +00:00
|
|
|
(cd $$dir; $(MAKE) $(MFLAGS) install) || exit 1;\
|
2002-05-01 19:35:53 +00:00
|
|
|
done
|
1998-10-21 14:00:53 +00:00
|
|
|
|
2006-01-15 15:15:34 +00:00
|
|
|
install-desktop: makeinclude
|
2006-01-15 18:36:16 +00:00
|
|
|
cd documentation; $(MAKE) $(MFLAGS) $(INSTALL_DESKTOP)
|
2006-01-15 15:15:34 +00:00
|
|
|
cd fluid; $(MAKE) $(MFLAGS) $(INSTALL_DESKTOP)
|
2023-01-21 17:14:41 +01:00
|
|
|
cd fltk-options; $(MAKE) $(MFLAGS) $(INSTALL_DESKTOP)
|
2006-01-15 18:02:44 +00:00
|
|
|
cd test; $(MAKE) $(MFLAGS) $(INSTALL_DESKTOP)
|
2006-01-15 15:15:34 +00:00
|
|
|
|
2001-11-19 21:25:35 +00:00
|
|
|
uninstall: makeinclude
|
2004-10-18 20:22:25 +00:00
|
|
|
$(RM) $(DESTDIR)$(bindir)/fltk-config
|
2002-07-26 14:22:02 +00:00
|
|
|
for dir in FL $(DIRS); do\
|
2001-11-19 21:25:35 +00:00
|
|
|
echo "=== uninstalling $$dir ===";\
|
2006-08-24 21:46:38 +00:00
|
|
|
(cd $$dir; $(MAKE) $(MFLAGS) uninstall) || exit 1;\
|
2001-11-19 21:25:35 +00:00
|
|
|
done
|
|
|
|
|
2006-01-15 15:15:34 +00:00
|
|
|
uninstall-desktop: makeinclude
|
2006-01-15 18:36:16 +00:00
|
|
|
cd documentation; $(MAKE) $(MFLAGS) $(UNINSTALL_DESKTOP)
|
2006-01-15 15:15:34 +00:00
|
|
|
cd fluid; $(MAKE) $(MFLAGS) $(UNINSTALL_DESKTOP)
|
2023-01-21 17:14:41 +01:00
|
|
|
cd fltk-options; $(MAKE) $(MFLAGS) $(UNINSTALL_DESKTOP)
|
2006-01-15 18:02:44 +00:00
|
|
|
cd test; $(MAKE) $(MFLAGS) $(UNINSTALL_DESKTOP)
|
2006-01-15 15:15:34 +00:00
|
|
|
|
1998-11-05 16:04:53 +00:00
|
|
|
depend: makeinclude
|
2002-07-26 14:22:02 +00:00
|
|
|
for dir in $(DIRS); do\
|
1998-10-21 14:00:53 +00:00
|
|
|
echo "=== making dependencies in $$dir ===";\
|
2006-08-24 21:46:38 +00:00
|
|
|
(cd $$dir; $(MAKE) $(MFLAGS) depend) || exit 1;\
|
1998-10-20 21:06:19 +00:00
|
|
|
done
|
|
|
|
|
|
|
|
clean:
|
2002-07-26 14:22:02 +00:00
|
|
|
-$(RM) core *.o
|
2014-08-01 20:56:09 +00:00
|
|
|
for dir in examples $(DIRS); do\
|
1998-10-20 21:06:19 +00:00
|
|
|
echo "=== cleaning $$dir ===";\
|
2006-08-24 21:46:38 +00:00
|
|
|
(cd $$dir; $(MAKE) $(MFLAGS) clean) || exit 1;\
|
1998-10-20 21:06:19 +00:00
|
|
|
done
|
|
|
|
|
1999-02-25 19:45:04 +00:00
|
|
|
distclean: clean
|
2013-09-24 09:10:04 +00:00
|
|
|
$(RM) config.h config.log config.status
|
2002-07-26 14:22:02 +00:00
|
|
|
$(RM) fltk-config fltk.list makeinclude
|
2007-05-01 14:28:23 +00:00
|
|
|
$(RM) fltk.spec
|
2002-07-26 14:22:02 +00:00
|
|
|
$(RM) FL/Makefile
|
2021-12-18 22:42:30 +01:00
|
|
|
$(RM) FL/fl_config.h
|
2002-07-30 14:07:24 +00:00
|
|
|
$(RM) documentation/*.$(CAT1EXT)
|
|
|
|
$(RM) documentation/*.$(CAT3EXT)
|
2007-05-01 14:25:07 +00:00
|
|
|
$(RM) documentation/*.$(CAT6EXT)
|
2002-07-30 14:07:24 +00:00
|
|
|
$(RM) documentation/fltk.ps
|
|
|
|
$(RM) -r documentation/fltk.d
|
2002-07-26 14:22:02 +00:00
|
|
|
for file in test/*.fl; do\
|
2006-04-28 01:10:00 +00:00
|
|
|
$(RM) test/`basename $$file .fl`.cxx; \
|
|
|
|
$(RM) test/`basename $$file .fl`.h; \
|
2002-07-26 14:22:02 +00:00
|
|
|
done
|
2020-03-14 14:31:42 -04:00
|
|
|
$(RM) -rf autom4te.cache/
|
|
|
|
$(RM) configure
|
1999-02-25 19:45:04 +00:00
|
|
|
|
2007-11-20 21:15:08 +00:00
|
|
|
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
|
|
|
|
|
2021-11-24 14:57:41 +01:00
|
|
|
makeinclude: configure configh.in makeinclude.in
|
2001-08-01 21:24:49 +00:00
|
|
|
if test -f config.status; then \
|
2001-08-02 20:09:25 +00:00
|
|
|
./config.status --recheck; \
|
2001-08-02 18:08:36 +00:00
|
|
|
./config.status; \
|
2001-08-01 21:24:49 +00:00
|
|
|
else \
|
|
|
|
./configure; \
|
|
|
|
fi
|
2002-01-06 13:40:32 +00:00
|
|
|
touch config.h
|
2005-04-15 20:45:07 +00:00
|
|
|
chmod +x fltk-config
|
1998-11-05 16:04:53 +00:00
|
|
|
|
2016-09-30 21:09:59 +00:00
|
|
|
configure: configure.ac
|
2001-03-14 17:20:02 +00:00
|
|
|
autoconf
|
|
|
|
|
2002-01-06 13:40:32 +00:00
|
|
|
portable-dist:
|
2003-06-15 05:39:12 +00:00
|
|
|
epm -v -s fltk.xpm fltk
|
2002-01-06 13:40:32 +00:00
|
|
|
|
|
|
|
native-dist:
|
|
|
|
epm -v -f native fltk
|
|
|
|
|
2007-04-04 07:56:47 +00:00
|
|
|
etags:
|
2023-03-09 13:21:49 +02:00
|
|
|
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
|
2002-01-06 13:40:32 +00:00
|
|
|
|
2011-02-15 15:29:03 +00:00
|
|
|
#
|
|
|
|
# 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
|