A shell that runs x86_64 assembly
c
x86-64
Du kannst nicht mehr als 25 Themen auswählen Themen müssen mit entweder einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.

Makefile.am 896B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. SUBDIRS = . src docs
  2. EXTRA_DIST = regen.sh
  3. ALL_CHECKS=
  4. LINT=
  5. if CHECK
  6. SUBDIRS += tests
  7. ALL_CHECKS += check
  8. CHECK_STAMP=tests/test-suite.log
  9. $(CHECK_STAMP):
  10. $(MAKE) check
  11. if HAVE_GCOV
  12. if HAVE_LCOV
  13. LCOV_INFO=lcov.info
  14. LCOV_HTML=lcov_html
  15. TO_LOCAL_CLEAN = $(LCOV_INFO) $(LCOV_HTML)
  16. $(LCOV_INFO): $(CHECK_STAMP)
  17. $(LCOV) --base-directory $(top_builddir)/src/ --capture --directory $(top_builddir)/src/ --output-file $@
  18. $(LCOV_HTML): $(LCOV_INFO)
  19. genhtml $< --output-directory $@
  20. clean-local:
  21. -rm -rf $(TO_LOCAL_CLEAN)
  22. endif # HAVE_LCOV
  23. endif # HAVE_GCOV
  24. ALL_CHECKS += coverage
  25. coverage: $(LCOV_HTML)
  26. endif # CHECK
  27. if HAVE_CPPCHECK
  28. LINT += cppcheck
  29. cppcheck:
  30. $(CPPCHECK) --enable=all --inline-suppr --check-config --suppress=missingIncludeSystem -q $(top_builddir)/src -I $(top_builddir)/src/
  31. endif # HAVE_CPPCHECK
  32. checks: $(ALL_CHECKS)
  33. lint: $(LINT)
  34. doxygen:
  35. $(MAKE) -C docs