1998-10-21 01:06:19 +04:00
|
|
|
#
|
2001-03-14 20:20:02 +03:00
|
|
|
# "$Id: Makefile,v 1.12.2.6 2001/03/14 17:20:01 spitzak Exp $"
|
1998-10-21 01:06:19 +04:00
|
|
|
#
|
|
|
|
# Top-level makefile for the Fast Light Tool Kit (FLTK).
|
|
|
|
#
|
2001-01-22 18:13:41 +03:00
|
|
|
# Copyright 1998-2001 by Bill Spitzak and others.
|
1998-10-21 01:06:19 +04: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.
|
|
|
|
#
|
2000-06-06 01:21:24 +04:00
|
|
|
# Please report all bugs and problems to "fltk-bugs@fltk.org".
|
1998-10-21 01:06:19 +04:00
|
|
|
#
|
1998-10-06 22:21:25 +04:00
|
|
|
|
1998-10-21 01:06:19 +04:00
|
|
|
SHELL=/bin/sh
|
1998-10-06 22:21:25 +04:00
|
|
|
|
1999-01-13 19:25:17 +03:00
|
|
|
DIRS = src fluid test
|
1998-10-21 01:06:19 +04:00
|
|
|
|
1998-11-05 19:04:53 +03:00
|
|
|
all: makeinclude
|
|
|
|
@for dir in $(DIRS); do\
|
1998-10-21 01:06:19 +04:00
|
|
|
echo "=== making $$dir ===";\
|
1998-10-21 20:49:59 +04:00
|
|
|
if test ! -f $$dir/makedepend; then\
|
|
|
|
touch $$dir/makedepend;\
|
|
|
|
fi;\
|
2000-06-30 08:23:13 +04:00
|
|
|
(cd $$dir; $(MAKE) $(MFLAGS)) || break;\
|
1998-10-21 01:06:19 +04:00
|
|
|
done
|
|
|
|
|
1998-11-05 19:04:53 +03:00
|
|
|
install: makeinclude
|
|
|
|
@for dir in $(DIRS); do\
|
1998-10-21 01:06:19 +04:00
|
|
|
echo "=== installing $$dir ===";\
|
1998-10-21 20:49:59 +04:00
|
|
|
if test ! -f $$dir/makedepend; then\
|
|
|
|
touch $$dir/makedepend;\
|
|
|
|
fi;\
|
2000-06-30 08:23:13 +04:00
|
|
|
(cd $$dir; $(MAKE) $(MFLAGS) install) || break;\
|
1998-10-21 18:00:53 +04:00
|
|
|
done
|
2000-06-30 08:23:13 +04:00
|
|
|
(cd documentation; $(MAKE) $(MFLAGS) install)
|
1998-10-21 18:00:53 +04:00
|
|
|
|
1998-11-05 19:04:53 +03:00
|
|
|
depend: makeinclude
|
|
|
|
@for dir in $(DIRS); do\
|
1998-10-21 18:00:53 +04:00
|
|
|
echo "=== making dependencies in $$dir ===";\
|
|
|
|
if test ! -f $$dir/makedepend; then\
|
1998-10-21 20:49:59 +04:00
|
|
|
touch $$dir/makedepend;\
|
1998-10-21 18:00:53 +04:00
|
|
|
fi;\
|
2000-06-30 08:23:13 +04:00
|
|
|
(cd $$dir; $(MAKE) $(MFLAGS) depend) || break;\
|
1998-10-21 01:06:19 +04:00
|
|
|
done
|
|
|
|
|
|
|
|
clean:
|
|
|
|
-@ rm -f core config.cache *.o *.bck
|
1998-11-05 19:04:53 +03:00
|
|
|
@for dir in $(DIRS); do\
|
1998-10-21 01:06:19 +04:00
|
|
|
echo "=== cleaning $$dir ===";\
|
2000-06-30 08:23:13 +04:00
|
|
|
(cd $$dir; $(MAKE) $(MFLAGS) clean) || break;\
|
1998-10-21 01:06:19 +04:00
|
|
|
done
|
|
|
|
|
1999-02-25 22:45:04 +03:00
|
|
|
distclean: clean
|
|
|
|
rm -f config.log config.h config.status makeinclude
|
|
|
|
|
1998-11-05 19:04:53 +03:00
|
|
|
makeinclude: configure configh.in makeinclude.in
|
|
|
|
./configure
|
|
|
|
|
2001-03-14 20:20:02 +03:00
|
|
|
configure: configure.in
|
|
|
|
autoconf
|
|
|
|
|
1998-10-21 01:06:19 +04:00
|
|
|
#
|
2001-03-14 20:20:02 +03:00
|
|
|
# End of "$Id: Makefile,v 1.12.2.6 2001/03/14 17:20:01 spitzak Exp $".
|
1998-10-21 01:06:19 +04:00
|
|
|
#
|