Makefile.am 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. # Process this file with automake to produce Makefile.in
  2. #
  3. #
  4. # This program is free software: you can redistribute it and/or modify
  5. # it under the terms of the GNU General Public License as published by
  6. # the Free Software Foundation, either version 3 of the License, or
  7. # (at your option) any later version.
  8. #
  9. # This program 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
  12. # GNU General Public License for more details.
  13. #
  14. # You should have received a copy of the GNU General Public License
  15. # along with this program. If not, see <http://www.gnu.org/licenses/>.
  16. GCCPLUGINS_DIR = `$(CC) -print-file-name=plugin`
  17. AM_CPPFLAGS = -Wall -I $(GCCPLUGINS_DIR)/include $(GMP_INC)
  18. pkglib_LTLIBRARIES = gml4gtk_plugin.la
  19. EXTRA_DIST = gml4gtk_plugin.gdbinit
  20. gml4gtk_plugin_la_SOURCES = \
  21. gcc-bb.c \
  22. gcc-dominance.c \
  23. gcc-cgraph.c \
  24. gcc-function.c \
  25. gcc-gimple-hierarchy.c \
  26. gcc-loop.c \
  27. gcc-passes.c \
  28. gcc-plugin-api.c \
  29. gcc-rtx.c \
  30. gcc-tree.c \
  31. gcc-tree-hierarchy.c \
  32. g.c \
  33. gml4gtk-plugin.c \
  34. gml4gtk-plugin.h
  35. gml4gtk_plugin_la_LDFLAGS = -module
  36. gml4gtk_plugin_la_LIBADD =
  37. #
  38. clean:
  39. make clean-generic
  40. #
  41. clean-generic:
  42. rm -v -fr .libs
  43. rm -v -fr .deps
  44. rm -v -f *.lo
  45. rm -v -f *.la
  46. rm -v -f Makefile.in
  47. rm -v -f Makefile