Makefile 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. #
  2. # "$Id: Makefile.in 8864 2011-07-19 04:49:30Z 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. Distribution and use rights are outlined in
  9. # the file "COPYING" which should have been included with this file. If this
  10. # file is missing or damaged, see the license at:
  11. #
  12. # http://www.fltk.org/COPYING.php
  13. #
  14. # Please report all bugs and problems on the following page:
  15. #
  16. # http://www.fltk.org/str.php
  17. #
  18. include ../makeinclude
  19. all:
  20. clean:
  21. depend:
  22. install:
  23. echo "Installing include files in $(DESTDIR)$(includedir)..."
  24. $(RMDIR) $(DESTDIR)$(includedir)/FL
  25. $(INSTALL_DIR) $(DESTDIR)$(includedir)/FL
  26. for file in *.[hH]; do \
  27. $(INSTALL_DATA) $$file $(DESTDIR)$(includedir)/FL; \
  28. done
  29. # cd $(DESTDIR)$(includedir)/FL;\
  30. # for file in *.H; do\
  31. # $(RM) "`basename $$file H`h";\
  32. # $(LN) $$file "`basename $$file H`h";\
  33. # done
  34. # $(RM) $(DESTDIR)$(includedir)/FL/fl_file_chooser.H
  35. # $(LN) Fl_File_Chooser.H $(DESTDIR)$(includedir)/FL/fl_file_chooser.H
  36. # $(RM) $(DESTDIR)$(includedir)/FL/fl_file_chooser.h
  37. # $(LN) Fl_File_Chooser.H $(DESTDIR)$(includedir)/FL/fl_file_chooser.h
  38. # $(RM) $(DESTDIR)$(includedir)/Fl
  39. # $(LN) FL $(DESTDIR)$(includedir)/Fl
  40. uninstall:
  41. echo "Uninstalling include files..."
  42. $(RMDIR) $(DESTDIR)$(includedir)/FL
  43. # $(RM) $(DESTDIR)$(includedir)/Fl
  44. #
  45. # End of "$Id: Makefile.in 8864 2011-07-19 04:49:30Z greg.ercolano $".
  46. #