2001-11-20 00:25:35 +03:00
|
|
|
#
|
2021-02-15 21:45:20 +03:00
|
|
|
# Header Makefile for the Fast Light Tool Kit (FLTK).
|
2001-11-20 00:25:35 +03:00
|
|
|
#
|
2021-02-15 21:45:20 +03:00
|
|
|
# Copyright 1998-2021 by Bill Spitzak and others.
|
2001-11-20 00:25:35 +03:00
|
|
|
#
|
2011-07-19 08:49:30 +04:00
|
|
|
# This library is free software. Distribution and use rights are outlined in
|
|
|
|
# the file "COPYING" which should have been included with this file. If this
|
|
|
|
# file is missing or damaged, see the license at:
|
2001-11-20 00:25:35 +03:00
|
|
|
#
|
2020-07-01 19:03:10 +03:00
|
|
|
# https://www.fltk.org/COPYING.php
|
2001-11-20 00:25:35 +03:00
|
|
|
#
|
2020-07-01 19:03:10 +03:00
|
|
|
# Please see the following page on how to report bugs and issues:
|
2005-04-16 04:13:17 +04:00
|
|
|
#
|
2020-07-01 19:03:10 +03:00
|
|
|
# https://www.fltk.org/bugs.php
|
2001-11-20 00:25:35 +03:00
|
|
|
#
|
|
|
|
|
|
|
|
include ../makeinclude
|
|
|
|
|
|
|
|
all:
|
|
|
|
|
2005-04-16 04:01:49 +04:00
|
|
|
clean:
|
|
|
|
|
|
|
|
depend:
|
|
|
|
|
2001-11-20 00:25:35 +03:00
|
|
|
install:
|
2004-10-19 00:22:25 +04:00
|
|
|
echo "Installing include files in $(DESTDIR)$(includedir)..."
|
|
|
|
$(RMDIR) $(DESTDIR)$(includedir)/FL
|
2007-02-06 22:35:28 +03:00
|
|
|
$(INSTALL_DIR) $(DESTDIR)$(includedir)/FL
|
2008-07-14 01:39:07 +04:00
|
|
|
for file in *.[hH]; do \
|
2007-02-06 22:35:28 +03:00
|
|
|
$(INSTALL_DATA) $$file $(DESTDIR)$(includedir)/FL; \
|
|
|
|
done
|
2004-10-19 00:22:25 +04:00
|
|
|
@HLINKS@ cd $(DESTDIR)$(includedir)/FL;\
|
2001-11-20 00:25:35 +03:00
|
|
|
@HLINKS@ for file in *.H; do\
|
2002-07-14 21:03:31 +04:00
|
|
|
@HLINKS@ $(RM) "`basename $$file H`h";\
|
|
|
|
@HLINKS@ $(LN) $$file "`basename $$file H`h";\
|
2001-11-20 00:25:35 +03:00
|
|
|
@HLINKS@ done
|
2004-10-19 00:22:25 +04:00
|
|
|
@HLINKS@ $(RM) $(DESTDIR)$(includedir)/FL/fl_file_chooser.H
|
|
|
|
@HLINKS@ $(LN) Fl_File_Chooser.H $(DESTDIR)$(includedir)/FL/fl_file_chooser.H
|
|
|
|
@HLINKS@ $(RM) $(DESTDIR)$(includedir)/FL/fl_file_chooser.h
|
|
|
|
@HLINKS@ $(LN) Fl_File_Chooser.H $(DESTDIR)$(includedir)/FL/fl_file_chooser.h
|
|
|
|
@HLINKS@ $(RM) $(DESTDIR)$(includedir)/Fl
|
|
|
|
@HLINKS@ $(LN) FL $(DESTDIR)$(includedir)/Fl
|
2001-11-20 00:25:35 +03:00
|
|
|
|
|
|
|
uninstall:
|
|
|
|
echo "Uninstalling include files..."
|
2004-10-19 00:22:25 +04:00
|
|
|
$(RMDIR) $(DESTDIR)$(includedir)/FL
|
|
|
|
@HLINKS@ $(RM) $(DESTDIR)$(includedir)/Fl
|