Makefile.am 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  1. # Process this file with automake to produce Makefile.in
  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. ACLOCAL_AMFLAGS = -I m4
  16. GCCPLUGINS_DIR = `$(CC) -print-file-name=plugin`
  17. AM_CPPFLAGS = -Wall -I $(GCCPLUGINS_DIR)/include
  18. pkglib_LTLIBRARIES = scallgraph_plugin.la
  19. scallgraph_plugin_la_SOURCES = \
  20. scallgraph.cpp
  21. scallgraph_plugin_la_LDFLAGS = -module
  22. scallgraph_plugin_la_LIBADD =
  23. #
  24. clean:
  25. make clean-generic
  26. #
  27. clean-generic:
  28. rm -v -f *.o
  29. #
  30. distclean:
  31. rm -v -fr .libs
  32. rm -v -fr .deps
  33. rm -v -fr autom4te.cache
  34. rm -v -fr m4
  35. rm -v -f *.lo
  36. rm -v -f *.la
  37. rm -v -f *.o
  38. rm -v -f *.output
  39. rm -v -f Makefile.in
  40. rm -v -f Makefile
  41. rm -v -f aclocal.m4
  42. rm -v -f configure
  43. rm -v -f config.sub
  44. rm -v -f config.guess
  45. rm -v -f config.status
  46. rm -v -f compile
  47. rm -v -f depcomp
  48. rm -v -f install-sh
  49. rm -v -f ltmain.sh
  50. rm -v -f missing
  51. rm -v -f config.h.in
  52. rm -v -f dmake.output
  53. rm -v -f dsmake.output
  54. rm -v -f dsmake.errors
  55. rm -v -f dsmake.warnings
  56. rm -v -f autoscan.log
  57. rm -v -f configure.scan
  58. rm -v -f config.h.in~
  59. rm -v -f config.log
  60. rm -v -f stamp-h1
  61. rm -v -f libtool
  62. # end.