Makefile.am 624 B

1234567891011121314151617181920212223
  1. EXTRA_DIST= access-pkt-packet.cocci \
  2. banned-functions.cocci \
  3. direct-packet.cocci \
  4. malloc-error-check.cocci \
  5. pktnotset-packet.cocci \
  6. realloc.cocci \
  7. siginit.cocci \
  8. size_t.cocci \
  9. sz3.cocci \
  10. uint.cocci \
  11. run_check.sh struct-flags.py
  12. if HAVE_COCCINELLE
  13. struct-flags.cocci:
  14. $(srcdir)/struct-flags.py $(top_srcdir)/src > $(top_builddir)/qa/coccinelle/struct-flags.cocci
  15. check: struct-flags.cocci
  16. TOP_BUILDDIR=${abs_top_builddir} TOP_SRCDIR=$(abs_top_srcdir) $(top_srcdir)/qa/coccinelle/run_check.sh
  17. distclean-local:
  18. -rm $(top_builddir)/qa/coccinelle/struct-flags.cocci
  19. endif