Makefile.am 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. ACLOCAL_AMFLAGS = -I m4
  2. include_HEADERS = cudd/cudd.h
  3. if DDDMP
  4. include_HEADERS += dddmp/dddmp.h
  5. endif
  6. if OBJ
  7. include_HEADERS += cplusplus/cuddObj.hh
  8. endif
  9. check_PROGRAMS =
  10. check_SCRIPTS =
  11. dist_check_DATA =
  12. EXTRA_DIST = README RELEASE.NOTES LICENSE groups.dox
  13. TESTS =
  14. CLEANFILES =
  15. noinst_LTLIBRARIES =
  16. TEST_LOG_DRIVER = env AM_TAP_AWK='$(AWK)' $(SHELL) \
  17. $(top_srcdir)/build-aux/tap-driver.sh
  18. do_subst = sed \
  19. -e 's,[@]EXEEXT[@],$(EXEEXT),g' \
  20. -e 's,[@]srcdir[@],$(srcdir),g'
  21. include $(top_srcdir)/cudd/Included.am
  22. include $(top_srcdir)/util/Included.am
  23. include $(top_srcdir)/st/Included.am
  24. include $(top_srcdir)/epd/Included.am
  25. include $(top_srcdir)/mtr/Included.am
  26. include $(top_srcdir)/dddmp/Included.am
  27. include $(top_srcdir)/cplusplus/Included.am
  28. include $(top_srcdir)/nanotrav/Included.am
  29. include $(top_srcdir)/doc/Included.am
  30. dist-hook:
  31. rm -rf `find $(distdir) -name .svn`
  32. .PHONY :
  33. all: html/index.html doc/cudd.pdf
  34. if HAVE_DOXYGEN
  35. html/index.html: Doxyfile $(lib_LTLIBRARIES)
  36. @if $(AM_V_P); then dest='2>&1'; else dest='> /dev/null 2>&1'; fi; \
  37. eval "$(DOXYGEN) $< $${dest}"
  38. clean-local:
  39. rm -rf html doxygen_sqlite3.db
  40. else
  41. html/index.html:
  42. endif
  43. CLEANFILES += $(check_SCRIPTS)