Makefile.am 1.1 KB

1234567891011121314151617181920212223242526272829
  1. # $Id:$
  2. # START OF: dlt_hdlc
  3. # Note, if you add any files to your plugin, you will need to edit dlt_<plugin>/Makefile.am
  4. # add your .c files to libtcpedit_a_SOURCES
  5. # add your .h files to noinst_HEADERS
  6. # add any other files (like documentation, notes, etc) to EXTRA_DIST
  7. # add your dependancy information (see comment below)
  8. libtcpedit_a_SOURCES += $(srcdir)/plugins/dlt_hdlc/hdlc.c \
  9. $(srcdir)/plugins/dlt_hdlc/hdlc_api.c
  10. noinst_HEADERS += $(srcdir)/plugins/dlt_hdlc/hdlc.h \
  11. $(srcdir)/plugins/dlt_hdlc/hdlc_api.h \
  12. $(srcdir)/plugins/dlt_hdlc/hdlc_types.h
  13. EXTRA_DIST += $(srcdir)/plugins/dlt_hdlc/hdlc_opts.def
  14. # dependancies for your plugin source code. Edit as necessary
  15. $(srcdir)/plugins/dlt_hdlc/hdlc.c: $(srcdir)/tcpedit_stub.h $(srcdir)/plugins/dlt_utils.h \
  16. $(srcdir)/plugins.h $(srcdir)/plugins_api.h $(srcdir)/plugins_types.h \
  17. $(srcdir)/tcpedit_api.h $(srcdir)/plugins/dlt_hdlc/hdlc.h $(srcdir)/plugins/dlt_hdlc/hdlc_api.h \
  18. $(srcdir)/plugins/dlt_hdlc/hdlc_types.h
  19. # Note:
  20. # You probably don't want to touch anything below this line until the end of the plugin
  21. MOSTLYCLEANFILES += $(srcdir)/plugins/dlt_hdlc/*~
  22. # END OF: dlt_hdlc