1998-10-21 01:06:19 +04:00
|
|
|
#
|
2005-02-25 00:55:12 +03:00
|
|
|
# "$Id$"
|
1998-10-21 01:06:19 +04:00
|
|
|
#
|
|
|
|
# Top-level makefile for the Fast Light Tool Kit (FLTK).
|
|
|
|
#
|
2010-07-10 13:44:45 +04:00
|
|
|
# Copyright 1998-2010 by Bill Spitzak and others.
|
1998-10-21 01:06:19 +04:00
|
|
|
#
|
2011-07-19 08:49:30 +04: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:
|
|
|
|
#
|
|
|
|
# http://www.fltk.org/COPYING.php
|
1998-10-21 01:06:19 +04:00
|
|
|
#
|
2005-04-16 04:13:17 +04:00
|
|
|
# Please report all bugs and problems on the following page:
|
|
|
|
#
|
|
|
|
# http://www.fltk.org/str.php
|
1998-10-21 01:06:19 +04:00
|
|
|
#
|
1998-10-06 22:21:25 +04:00
|
|
|
|
2001-09-30 16:30:13 +04:00
|
|
|
include makeinclude
|
|
|
|
|
2008-10-25 22:31:44 +04:00
|
|
|
DIRS = $(IMAGEDIRS) src $(CAIRODIR) fluid test documentation
|
1998-10-21 01:06:19 +04:00
|
|
|
|
2007-11-21 00:15:08 +03:00
|
|
|
all: makeinclude fltk-config
|
2002-07-26 18:22:02 +04:00
|
|
|
for dir in $(DIRS); do\
|
1998-10-21 01:06:19 +04:00
|
|
|
echo "=== making $$dir ===";\
|
2006-08-25 01:46:38 +04:00
|
|
|
(cd $$dir; $(MAKE) $(MFLAGS)) || exit 1;\
|
1998-10-21 01:06:19 +04:00
|
|
|
done
|
|
|
|
|
1998-11-05 19:04:53 +03:00
|
|
|
install: makeinclude
|
2004-10-19 00:22:25 +04:00
|
|
|
-mkdir -p $(DESTDIR)$(bindir)
|
|
|
|
$(RM) $(DESTDIR)$(bindir)/fltk-config
|
2007-02-06 22:35:28 +03:00
|
|
|
$(INSTALL_SCRIPT) fltk-config $(DESTDIR)$(bindir)
|
2002-07-26 18:22:02 +04:00
|
|
|
for dir in FL $(DIRS); do\
|
2002-05-01 23:35:53 +04:00
|
|
|
echo "=== installing $$dir ===";\
|
2006-08-25 01:46:38 +04:00
|
|
|
(cd $$dir; $(MAKE) $(MFLAGS) install) || exit 1;\
|
2002-05-01 23:35:53 +04:00
|
|
|
done
|
1998-10-21 18:00:53 +04:00
|
|
|
|
2006-01-15 18:15:34 +03:00
|
|
|
install-desktop: makeinclude
|
2006-01-15 21:36:16 +03:00
|
|
|
cd documentation; $(MAKE) $(MFLAGS) $(INSTALL_DESKTOP)
|
2006-01-15 18:15:34 +03:00
|
|
|
cd fluid; $(MAKE) $(MFLAGS) $(INSTALL_DESKTOP)
|
2006-01-15 21:02:44 +03:00
|
|
|
cd test; $(MAKE) $(MFLAGS) $(INSTALL_DESKTOP)
|
2006-01-15 18:15:34 +03:00
|
|
|
|
2001-11-20 00:25:35 +03:00
|
|
|
uninstall: makeinclude
|
2004-10-19 00:22:25 +04:00
|
|
|
$(RM) $(DESTDIR)$(bindir)/fltk-config
|
2002-07-26 18:22:02 +04:00
|
|
|
for dir in FL $(DIRS); do\
|
2001-11-20 00:25:35 +03:00
|
|
|
echo "=== uninstalling $$dir ===";\
|
2006-08-25 01:46:38 +04:00
|
|
|
(cd $$dir; $(MAKE) $(MFLAGS) uninstall) || exit 1;\
|
2001-11-20 00:25:35 +03:00
|
|
|
done
|
|
|
|
|
2006-01-15 18:15:34 +03:00
|
|
|
uninstall-desktop: makeinclude
|
2006-01-15 21:36:16 +03:00
|
|
|
cd documentation; $(MAKE) $(MFLAGS) $(UNINSTALL_DESKTOP)
|
2006-01-15 18:15:34 +03:00
|
|
|
cd fluid; $(MAKE) $(MFLAGS) $(UNINSTALL_DESKTOP)
|
2006-01-15 21:02:44 +03:00
|
|
|
cd test; $(MAKE) $(MFLAGS) $(UNINSTALL_DESKTOP)
|
2006-01-15 18:15:34 +03:00
|
|
|
|
1998-11-05 19:04:53 +03:00
|
|
|
depend: makeinclude
|
2002-07-26 18:22:02 +04:00
|
|
|
for dir in $(DIRS); do\
|
1998-10-21 18:00:53 +04:00
|
|
|
echo "=== making dependencies in $$dir ===";\
|
2006-08-25 01:46:38 +04:00
|
|
|
(cd $$dir; $(MAKE) $(MFLAGS) depend) || exit 1;\
|
1998-10-21 01:06:19 +04:00
|
|
|
done
|
|
|
|
|
|
|
|
clean:
|
2002-07-26 18:22:02 +04:00
|
|
|
-$(RM) core *.o
|
2014-08-02 00:56:09 +04:00
|
|
|
for dir in examples $(DIRS); do\
|
1998-10-21 01:06:19 +04:00
|
|
|
echo "=== cleaning $$dir ===";\
|
2006-08-25 01:46:38 +04:00
|
|
|
(cd $$dir; $(MAKE) $(MFLAGS) clean) || exit 1;\
|
1998-10-21 01:06:19 +04:00
|
|
|
done
|
|
|
|
|
1999-02-25 22:45:04 +03:00
|
|
|
distclean: clean
|
2013-09-24 13:10:04 +04:00
|
|
|
$(RM) config.h config.log config.status
|
2002-07-26 18:22:02 +04:00
|
|
|
$(RM) fltk-config fltk.list makeinclude
|
2007-05-01 18:28:23 +04:00
|
|
|
$(RM) fltk.spec
|
2002-07-26 18:22:02 +04:00
|
|
|
$(RM) FL/Makefile
|
2015-07-12 22:23:55 +03:00
|
|
|
$(RM) FL/abi-version.h
|
2002-07-30 18:07:24 +04:00
|
|
|
$(RM) documentation/*.$(CAT1EXT)
|
|
|
|
$(RM) documentation/*.$(CAT3EXT)
|
2007-05-01 18:25:07 +04:00
|
|
|
$(RM) documentation/*.$(CAT6EXT)
|
2002-07-30 18:07:24 +04:00
|
|
|
$(RM) documentation/fltk.ps
|
|
|
|
$(RM) -r documentation/fltk.d
|
2002-07-26 18:22:02 +04:00
|
|
|
for file in test/*.fl; do\
|
2006-04-28 05:10:00 +04:00
|
|
|
$(RM) test/`basename $$file .fl`.cxx; \
|
|
|
|
$(RM) test/`basename $$file .fl`.h; \
|
2002-07-26 18:22:02 +04:00
|
|
|
done
|
1999-02-25 22:45:04 +03:00
|
|
|
|
2007-11-21 00:15:08 +03: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
|
|
|
|
|
2013-09-24 13:10:04 +04:00
|
|
|
makeinclude: configure configh.in makeinclude.in config.guess config.sub
|
2001-08-02 01:24:49 +04:00
|
|
|
if test -f config.status; then \
|
2001-08-03 00:09:25 +04:00
|
|
|
./config.status --recheck; \
|
2001-08-02 22:08:36 +04:00
|
|
|
./config.status; \
|
2001-08-02 01:24:49 +04:00
|
|
|
else \
|
|
|
|
./configure; \
|
|
|
|
fi
|
2002-01-06 16:40:32 +03:00
|
|
|
touch config.h
|
2005-04-16 00:45:07 +04:00
|
|
|
chmod +x fltk-config
|
1998-11-05 19:04:53 +03:00
|
|
|
|
2016-10-01 00:09:59 +03:00
|
|
|
configure: configure.ac
|
2001-03-14 20:20:02 +03:00
|
|
|
autoconf
|
|
|
|
|
2013-09-24 13:10:04 +04:00
|
|
|
config.guess config.sub:
|
|
|
|
-automake --add-missing 2> /dev/null
|
|
|
|
if [ ! -e config.sub ]; then echo NOTE: Using frozen copy of config.sub; cp misc/config.sub . ; fi
|
|
|
|
if [ ! -e config.guess ]; then echo NOTE: Using frozen copy of config.guess; cp misc/config.guess . ; fi
|
|
|
|
|
2002-01-06 16:40:32 +03:00
|
|
|
portable-dist:
|
2003-06-15 09:39:12 +04:00
|
|
|
epm -v -s fltk.xpm fltk
|
2002-01-06 16:40:32 +03:00
|
|
|
|
|
|
|
native-dist:
|
|
|
|
epm -v -f native fltk
|
|
|
|
|
2007-04-04 11:56:47 +04:00
|
|
|
etags:
|
2009-06-27 20:39:36 +04:00
|
|
|
etags FL/*.H FL/*.h src/*.cxx src/*.c src/*.h src/xutf8/*.h src/xutf8/*.c cairo/*.cxx fluid/*.h fluid/*.cxx test/*.h test/*.cxx
|
2002-01-06 16:40:32 +03:00
|
|
|
|
2011-02-15 18:29:03 +03: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
|
|
|
|
|
|
|
|
|
1998-10-21 01:06:19 +04:00
|
|
|
#
|
2005-02-25 00:55:12 +03:00
|
|
|
# End of "$Id$".
|
1998-10-21 01:06:19 +04:00
|
|
|
#
|