blob: 00503e4e45424b6fb317787f4dae0a708c102a9c [file] [log] [blame]
DRC2ff39b82011-07-28 08:38:59 +00001#
2# "$Id: Makefile.in 7913 2010-11-29 18:18:27Z greg.ercolano $"
3#
4# Header makefile for the Fast Light Tool Kit (FLTK).
5#
6# Copyright 1998-2010 by Bill Spitzak and others.
7#
8# This library is free software; you can redistribute it and/or
9# modify it under the terms of the GNU Library General Public
10# License as published by the Free Software Foundation; either
11# version 2 of the License, or (at your option) any later version.
12#
13# This library is distributed in the hope that it will be useful,
14# but WITHOUT ANY WARRANTY; without even the implied warranty of
15# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16# Library General Public License for more details.
17#
18# You should have received a copy of the GNU Library General Public
19# License along with this library; if not, write to the Free Software
20# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
21# USA.
22#
23# Please report all bugs and problems on the following page:
24#
25# http://www.fltk.org/str.php
26#
27
28include ../makeinclude
29
30all:
31
32clean:
33
34depend:
35
36install:
37 echo "Installing include files in $(DESTDIR)$(includedir)..."
38 $(RMDIR) $(DESTDIR)$(includedir)/FL
39 $(INSTALL_DIR) $(DESTDIR)$(includedir)/FL
40 for file in *.[hH]; do \
41 $(INSTALL_DATA) $$file $(DESTDIR)$(includedir)/FL; \
42 done
43@HLINKS@ cd $(DESTDIR)$(includedir)/FL;\
44@HLINKS@ for file in *.H; do\
45@HLINKS@ $(RM) "`basename $$file H`h";\
46@HLINKS@ $(LN) $$file "`basename $$file H`h";\
47@HLINKS@ done
48@HLINKS@ $(RM) $(DESTDIR)$(includedir)/FL/fl_file_chooser.H
49@HLINKS@ $(LN) Fl_File_Chooser.H $(DESTDIR)$(includedir)/FL/fl_file_chooser.H
50@HLINKS@ $(RM) $(DESTDIR)$(includedir)/FL/fl_file_chooser.h
51@HLINKS@ $(LN) Fl_File_Chooser.H $(DESTDIR)$(includedir)/FL/fl_file_chooser.h
52@HLINKS@ $(RM) $(DESTDIR)$(includedir)/Fl
53@HLINKS@ $(LN) FL $(DESTDIR)$(includedir)/Fl
54
55uninstall:
56 echo "Uninstalling include files..."
57 $(RMDIR) $(DESTDIR)$(includedir)/FL
58@HLINKS@ $(RM) $(DESTDIR)$(includedir)/Fl
59
60
61#
62# End of "$Id: Makefile.in 7913 2010-11-29 18:18:27Z greg.ercolano $".
63#