GNUmakefile.am 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104
  1. ACLOCAL_AMFLAGS = -I config/m4
  2. AM_CPPFLAGS = \
  3. -I$(top_srcdir)/include \
  4. -I$(top_builddir)/include \
  5. $(linux_CFLAGS)
  6. # link every app against libcan, it's static so it wouldn't hurt
  7. LDADD = \
  8. libcan.la
  9. noinst_HEADERS = \
  10. canframelen.h \
  11. lib.h \
  12. libj1939.h \
  13. terminal.h \
  14. include/linux/can/bcm.h \
  15. include/linux/can/error.h \
  16. include/linux/can/gw.h \
  17. include/linux/can.h \
  18. include/linux/can/isotp.h \
  19. include/linux/can/j1939.h \
  20. include/linux/can/netlink.h \
  21. include/linux/can/raw.h \
  22. include/linux/can/vxcan.h
  23. noinst_LTLIBRARIES = \
  24. libcan.la \
  25. libj1939.la
  26. libcan_la_SOURCES = \
  27. lib.c \
  28. canframelen.c
  29. libj1939_la_SOURCES = \
  30. libj1939.c
  31. bin_PROGRAMS = \
  32. asc2log \
  33. bcmserver \
  34. can-calc-bit-timing \
  35. canbusload \
  36. candump \
  37. canfdtest \
  38. cangen \
  39. cangw \
  40. canlogserver \
  41. canplayer \
  42. cansend \
  43. cansniffer \
  44. isotpdump \
  45. isotpperf \
  46. isotprecv \
  47. isotpsend \
  48. isotpserver \
  49. isotpsniffer \
  50. isotptun \
  51. jacd \
  52. jspy \
  53. jsr \
  54. log2asc \
  55. log2long \
  56. slcan_attach \
  57. slcand \
  58. slcanpty \
  59. testj1939
  60. jacd_LDADD = libj1939.la
  61. jspy_LDADD = libj1939.la
  62. jsr_LDADD = libj1939.la
  63. testj1939_LDADD = libj1939.la
  64. EXTRA_DIST = \
  65. .travis.yml \
  66. Android.mk \
  67. README.md \
  68. autogen.sh \
  69. can-j1939-kickstart.md
  70. can-j1939.md
  71. MAINTAINERCLEANFILES = \
  72. configure \
  73. GNUmakefile.in \
  74. aclocal.m4 \
  75. config/autoconf/compile \
  76. config/autoconf/config.guess \
  77. config/autoconf/config.sub \
  78. config/autoconf/depcomp \
  79. config/autoconf/install-sh \
  80. config/autoconf/ltmain.sh \
  81. config/autoconf/mdate-sh \
  82. config/autoconf/missing \
  83. config/autoconf/texinfo.tex \
  84. config/m4/libtool.m4 \
  85. config/m4/ltoptions.m4 \
  86. config/m4/ltsugar.m4 \
  87. config/m4/ltversion.m4 \
  88. config/m4/lt~obsolete.m4 \
  89. $(DIST_ARCHIVES)
  90. maintainer-clean-local:
  91. -chmod -R a+rw $(distdir)
  92. -rm -fr $(distdir)