1998-10-21 01:06:19 +04:00
|
|
|
#
|
1998-10-22 02:03:53 +04:00
|
|
|
# "$Id: Makefile,v 1.6 1998/10/21 22:03:51 mike Exp $"
|
1998-10-21 01:06:19 +04:00
|
|
|
#
|
|
|
|
# Top-level makefile for the Fast Light Tool Kit (FLTK).
|
|
|
|
#
|
|
|
|
# Copyright 1998 by Bill Spitzak and others.
|
|
|
|
#
|
|
|
|
# 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.
|
|
|
|
#
|
|
|
|
# Please report all bugs and problems to "fltk-bugs@easysw.com".
|
|
|
|
#
|
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
|
|
|
|
1998-10-21 01:06:19 +04:00
|
|
|
DIRS = src fluid test
|
|
|
|
|
1998-10-21 20:49:59 +04:00
|
|
|
all:
|
1998-10-21 01:06:19 +04:00
|
|
|
for dir in $(DIRS); do\
|
|
|
|
echo "=== making $$dir ===";\
|
1998-10-21 20:49:59 +04:00
|
|
|
if test ! -f $$dir/makedepend; then\
|
|
|
|
touch $$dir/makedepend;\
|
|
|
|
fi;\
|
1998-10-21 18:00:53 +04:00
|
|
|
(cd $$dir;$(MAKE));\
|
1998-10-21 01:06:19 +04:00
|
|
|
done
|
|
|
|
|
1998-10-22 02:03:53 +04:00
|
|
|
install:
|
1998-10-21 01:06:19 +04:00
|
|
|
for dir in $(DIRS); do\
|
|
|
|
echo "=== installing $$dir ===";\
|
1998-10-21 20:49:59 +04:00
|
|
|
if test ! -f $$dir/makedepend; then\
|
|
|
|
touch $$dir/makedepend;\
|
|
|
|
fi;\
|
1998-10-21 18:00:53 +04:00
|
|
|
(cd $$dir;$(MAKE) install);\
|
|
|
|
done
|
|
|
|
|
|
|
|
depend:
|
|
|
|
for dir in $(DIRS); do\
|
|
|
|
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;\
|
|
|
|
(cd $$dir;$(MAKE) depend);\
|
1998-10-21 01:06:19 +04:00
|
|
|
done
|
|
|
|
|
|
|
|
clean:
|
|
|
|
-@ rm -f core config.cache *.o *.bck
|
|
|
|
for dir in $(DIRS); do\
|
|
|
|
echo "=== cleaning $$dir ===";\
|
1998-10-21 18:00:53 +04:00
|
|
|
(cd $$dir;$(MAKE) clean);\
|
1998-10-21 01:06:19 +04:00
|
|
|
done
|
|
|
|
|
|
|
|
#
|
1998-10-22 02:03:53 +04:00
|
|
|
# End of "$Id: Makefile,v 1.6 1998/10/21 22:03:51 mike Exp $".
|
1998-10-21 01:06:19 +04:00
|
|
|
#
|