1998-10-21 01:06:19 +04:00
|
|
|
#
|
1999-01-13 19:25:17 +03:00
|
|
|
# "$Id: Makefile,v 1.11 1999/01/13 16:25:14 mike Exp $"
|
1998-10-21 01:06:19 +04:00
|
|
|
#
|
|
|
|
# Top-level makefile for the Fast Light Tool Kit (FLTK).
|
|
|
|
#
|
1999-01-07 22:18:01 +03:00
|
|
|
# Copyright 1998-1999 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.
|
|
|
|
#
|
|
|
|
# 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
|
|
|
|
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;\
|
1998-10-21 18:00:53 +04:00
|
|
|
(cd $$dir;$(MAKE));\
|
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;\
|
1998-10-21 18:00:53 +04:00
|
|
|
(cd $$dir;$(MAKE) install);\
|
|
|
|
done
|
1998-12-18 16:53:27 +03:00
|
|
|
@if test "$(LIBNAME)" = libfltk.so.1; then\
|
|
|
|
ln -s libfltk.so.1 $(libdir)/libfltk.so;\
|
|
|
|
fi
|
|
|
|
@if test "$(LIBNAME)" = libfltk.sl.1; then\
|
|
|
|
ln -s libfltk.sl.1 $(libdir)/libfltk.sl;\
|
|
|
|
fi
|
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;\
|
|
|
|
(cd $$dir;$(MAKE) depend);\
|
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 ===";\
|
1998-10-21 18:00:53 +04:00
|
|
|
(cd $$dir;$(MAKE) clean);\
|
1998-10-21 01:06:19 +04:00
|
|
|
done
|
|
|
|
|
1998-11-05 19:04:53 +03:00
|
|
|
makeinclude: configure configh.in makeinclude.in
|
|
|
|
./configure
|
|
|
|
|
1998-10-21 01:06:19 +04:00
|
|
|
#
|
1999-01-13 19:25:17 +03:00
|
|
|
# End of "$Id: Makefile,v 1.11 1999/01/13 16:25:14 mike Exp $".
|
1998-10-21 01:06:19 +04:00
|
|
|
#
|