Makefile.os2x 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  1. #
  2. # "$Id: Makefile.os2x 4052 2005-02-24 21:55:12Z mike $"
  3. #
  4. # Top-level makefile for the Fast Light Tool Kit (FLTK).
  5. #
  6. # Copyright 1998-2000 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 to "[email protected]".
  24. #
  25. # SHELL=cmd.exe
  26. all: makeinclude config.h
  27. echo "=== making src ==="
  28. touch src/makedepend
  29. cd src & $(MAKE)
  30. echo "=== making fluid ==="
  31. touch fluid/makedepend
  32. cd fluid & $(MAKE)
  33. echo "=== making test ==="
  34. touch test/makedepend
  35. cd test & $(MAKE)
  36. install:
  37. echo "=== installing src ==="
  38. touch src/makedepend
  39. cd src & $(MAKE) install
  40. echo "=== installing fluid ==="
  41. touch fluid/makedepend
  42. cd fluid & $(MAKE) install
  43. depend:
  44. echo "=== making src dependencies ==="
  45. touch src/makedepend
  46. cd src & $(MAKE) depend
  47. echo "=== making fluid dependencies ==="
  48. touch fluid/makedepend
  49. cd fluid & $(MAKE) depend
  50. echo "=== making test dependencies ==="
  51. touch test/makedepend
  52. cd test & $(MAKE) depend
  53. clean:
  54. -@ rm -f core config.cache *.o *.bck
  55. echo "=== cleaning src ==="
  56. touch src/makedepend
  57. cd src & $(MAKE) clean
  58. echo "=== cleaning fluid ==="
  59. touch fluid/makedepend
  60. cd fluid & $(MAKE) clean
  61. echo "=== cleaning test ==="
  62. touch test/makedepend
  63. cd test & $(MAKE) clean
  64. config.h: makefiles/config.os2x
  65. cp $< $@
  66. makeinclude: makefiles/makeinclude.os2x
  67. cp $< $@
  68. #
  69. # End of "$Id: Makefile.os2x 4052 2005-02-24 21:55:12Z mike $".
  70. #