Makefile.am 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  1. #
  2. # /*
  3. # * This program is free software: you can redistribute it and/or modify
  4. # * it under the terms of the GNU General Public License as published by
  5. # * the Free Software Foundation, either version 3 of the License, or
  6. # * (at your option) any later version.
  7. # *
  8. # * This program is distributed in the hope that it will be useful,
  9. # * but WITHOUT ANY WARRANTY; without even the implied warranty of
  10. # * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  11. # * GNU General Public License for more details.
  12. # *
  13. # * You should have received a copy of the GNU General Public License
  14. # * along with this program. If not, see <http://www.gnu.org/licenses/>.
  15. # *
  16. # * SPDX-License-Identifier: GPL-3.0+
  17. # * License-Filename: LICENSE
  18. # *
  19. # */
  20. #
  21. #
  22. ACLOCAL_AMFLAGS = -I m4 ${ACLOCAL_FLAGS}
  23. #
  24. AM_MAKEFLAGS = --no-print-directory
  25. #
  26. AUTOMAKE_OPTIONS = foreign subdir-objects
  27. # dirs with makefile.am
  28. SUBDIRS = . src/Layout
  29. # indent sources
  30. indent:
  31. cd src/Layout && make indent
  32. cd src/test1 && make indent
  33. #
  34. distclean:
  35. make cleaner
  36. #
  37. cleaner:
  38. cd src && make cleaner
  39. cd src/Layout && make cleaner
  40. cd src/test1 && make cleaner
  41. rm -v -f -r -d html
  42. rm -v -f -r -d m4
  43. rm -v -f -r -d autom4te.cache
  44. rm -v -f aclocal.m4
  45. rm -v -f ar-lib
  46. rm -v -f compile
  47. rm -v -f config.guess
  48. rm -v -f config.h.in
  49. rm -v -f config.h.in~
  50. rm -v -f config.log
  51. rm -v -f config.status
  52. rm -v -f config.sub
  53. rm -v -f configure
  54. rm -v -f depcomp
  55. rm -v -f dsmake.*
  56. rm -v -f install-sh
  57. rm -v -f libtool
  58. rm -v -f ltmain.sh
  59. rm -v -f Makefile
  60. rm -v -f Makefile.in
  61. rm -v -f missing
  62. rm -v -f stamp-h1
  63. rm -v -f O1
  64. rm -v -f O2
  65. # end.