1998-10-20 21:06:19 +00:00
|
|
|
#
|
2005-02-24 21:55:12 +00:00
|
|
|
# "$Id$"
|
1998-10-20 21:06:19 +00:00
|
|
|
#
|
|
|
|
# Top-level makefile for the Fast Light Tool Kit (FLTK).
|
|
|
|
#
|
2010-07-10 09:44:45 +00:00
|
|
|
# Copyright 1998-2010 by Bill Spitzak and others.
|
1998-10-20 21:06:19 +00:00
|
|
|
#
|
|
|
|
# This library is free software; you can redistribute it and/or
|
|
|
|
# modify it under the terms of the GNU Library General Public
|
|
|
|
# License as published by the Free Software Foundation; either
|
|
|
|
# version 2 of the License, or (at your option) any later version.
|
|
|
|
#
|
|
|
|
# This library is distributed in the hope that it will be useful,
|
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
# Library General Public License for more details.
|
|
|
|
#
|
|
|
|
# You should have received a copy of the GNU Library General Public
|
|
|
|
# License along with this library; if not, write to the Free Software
|
|
|
|
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
|
|
|
|
# USA.
|
|
|
|
#
|
2005-04-16 00:13:17 +00:00
|
|
|
# Please report all bugs and problems on the following page:
|
|
|
|
#
|
|
|
|
# http://www.fltk.org/str.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
|
|
|
|
|
2008-10-25 18:31:44 +00:00
|
|
|
DIRS = $(IMAGEDIRS) src $(CAIRODIR) fluid 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)
|
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)
|
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
|
|
|
|
for dir in $(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
|
2002-07-30 14:07:24 +00:00
|
|
|
$(RM) config.*
|
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
|
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
|
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
|
|
|
|
|
1998-11-05 16:04:53 +00: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
|
|
|
|
2001-03-14 17:20:02 +00:00
|
|
|
configure: configure.in
|
|
|
|
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:
|
2009-06-27 16:39:36 +00: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 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
|
|
|
|
|
|
|
|
|
1998-10-20 21:06:19 +00:00
|
|
|
#
|
2005-02-24 21:55:12 +00:00
|
|
|
# End of "$Id$".
|
1998-10-20 21:06:19 +00:00
|
|
|
#
|