Makefile.am 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091
  1. ####
  2. #### Copyright (C) 2015
  3. #### David Pirotte <david at altosw dot be>
  4. #### This file is part of Guile-Squee.
  5. #### Guile-Squee is free software: you can redistribute it and/or
  6. #### modify it under the terms of the GNU Lesser General Public
  7. #### License as published by the Free Software Foundation, either
  8. #### version 3 of the License, or (at your option) any later version.
  9. #### Guile-Squee is distributed in the hope that it will be useful,
  10. #### but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. #### MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  12. #### Lesser General Public License for more details.
  13. #### You should have received a copy of the GNU Lesser General Public
  14. #### License along with Guile-Squee. If not, see
  15. #### <http://www.gnu.org/licenses/>.
  16. ####
  17. include $(top_srcdir)/am/guile.mk
  18. moddir=$(ggsdir)
  19. godir=$(gscdir)
  20. pkgconfigdir=$(libdir)/pkgconfig
  21. pkgconfig_DATA=meta/guile-squee-1.0.pc
  22. SOURCES = \
  23. squee/reexport.scm \
  24. squee/enum.scm \
  25. squee/squee.scm \
  26. squee.scm
  27. # NOCOMP_SOURCES = \
  28. # squee/...
  29. EXTRA_DIST = \
  30. AUTHORS \
  31. ChangeLog \
  32. COPYING \
  33. INSTALL \
  34. LICENSE \
  35. NEWS \
  36. README \
  37. env.in \
  38. meta/guile-squee-1.0.pc.in \
  39. $(wildcard am/*) \
  40. $(wildcard m4/*) \
  41. $(SOURCES)
  42. # $(NOCOMP_SOURCES)
  43. # bin_SCRIPTS = \
  44. # squee/...
  45. CLEANFILES = \
  46. meta/guile-squee-1.0.pc \
  47. $(GOBJECTS)
  48. # $(bin_SCRIPTS)
  49. # ETAGS_ARGS = \
  50. # $(SOURCES)
  51. SUBDIRS = \
  52. doc
  53. distclean-local:
  54. rm -f Makefile.in
  55. rm -f aclocal.m4
  56. rm -rf autom4te.cache
  57. rm -rf build-aux
  58. rm -f configure
  59. rm -f *~
  60. rm -f guile-squee-*.tar.gz
  61. rm -rf doc/squee
  62. rm -f doc/*.info
  63. rm -f doc/*.pdf
  64. rm -f doc/*~
  65. rm -f doc/*.aux doc/*.cp doc/*.cps doc/*.fn doc/*.ky
  66. rm -f doc/*.log doc/*.pg doc/*.toc doc/*.tp doc/*.vr
  67. rm -f doc/Makefile.in
  68. rm -f doc/stamp-vti
  69. rm -f squee/*~
  70. rm -f squee/TAGS
  71. # Makefile.am ends here