1998-10-21 01:06:19 +04:00
|
|
|
#
|
2002-01-06 16:40:32 +03:00
|
|
|
# "$Id: Makefile,v 1.12.2.6.2.10 2002/01/06 13:40:27 easysw Exp $"
|
1998-10-21 01:06:19 +04:00
|
|
|
#
|
|
|
|
# Top-level makefile for the Fast Light Tool Kit (FLTK).
|
|
|
|
#
|
2002-01-01 18:11:33 +03:00
|
|
|
# Copyright 1998-2002 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
|
|
|
|
2001-09-30 16:30:13 +04:00
|
|
|
include makeinclude
|
|
|
|
|
2001-08-02 01:24:49 +04:00
|
|
|
SHELL = /bin/sh
|
2002-01-06 16:40:32 +03:00
|
|
|
DIRS = src fluid test documentation
|
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 ===";\
|
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
|
2002-01-06 16:40:32 +03:00
|
|
|
@for dir in FL $(DIRS); do\
|
1998-10-21 01:06:19 +04:00
|
|
|
echo "=== installing $$dir ===";\
|
2000-06-30 08:23:13 +04:00
|
|
|
(cd $$dir; $(MAKE) $(MFLAGS) install) || break;\
|
1998-10-21 18:00:53 +04:00
|
|
|
done
|
2001-09-29 19:57:32 +04:00
|
|
|
-mkdir -p $(bindir)
|
|
|
|
rm -f $(bindir)/fltk-config
|
|
|
|
-cp fltk-config $(bindir)
|
2002-01-06 16:40:32 +03:00
|
|
|
-chmod 755 $(bindir)/fltk-config
|
1998-10-21 18:00:53 +04:00
|
|
|
|
2001-11-20 00:25:35 +03:00
|
|
|
uninstall: makeinclude
|
2002-01-06 16:40:32 +03:00
|
|
|
@for dir in FL $(DIRS); do\
|
2001-11-20 00:25:35 +03:00
|
|
|
echo "=== uninstalling $$dir ===";\
|
|
|
|
(cd $$dir; $(MAKE) $(MFLAGS) uninstall) || break;\
|
|
|
|
done
|
|
|
|
rm -f $(bindir)/fltk-config
|
|
|
|
|
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 ===";\
|
2000-06-30 08:23:13 +04:00
|
|
|
(cd $$dir; $(MAKE) $(MFLAGS) depend) || break;\
|
1998-10-21 01:06:19 +04:00
|
|
|
done
|
|
|
|
|
|
|
|
clean:
|
2001-12-19 22:23:32 +03:00
|
|
|
-@ rm -f core *.o
|
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
|
2001-12-19 22:23:32 +03:00
|
|
|
rm -f config.* makeinclude
|
1999-02-25 22:45:04 +03:00
|
|
|
|
1998-11-05 19:04:53 +03:00
|
|
|
makeinclude: configure configh.in makeinclude.in
|
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
|
1998-11-05 19:04:53 +03:00
|
|
|
|
2001-03-14 20:20:02 +03:00
|
|
|
configure: configure.in
|
|
|
|
autoconf
|
|
|
|
|
2002-01-06 16:40:32 +03:00
|
|
|
portable-dist:
|
|
|
|
epm -v fltk
|
|
|
|
|
|
|
|
native-dist:
|
|
|
|
epm -v -f native fltk
|
|
|
|
|
|
|
|
|
1998-10-21 01:06:19 +04:00
|
|
|
#
|
2002-01-06 16:40:32 +03:00
|
|
|
# End of "$Id: Makefile,v 1.12.2.6.2.10 2002/01/06 13:40:27 easysw Exp $".
|
1998-10-21 01:06:19 +04:00
|
|
|
#
|