Makefile.am 961 B

1234567891011121314151617181920212223
  1. # $Id: Makefile.am 1830 2007-04-21 07:33:54Z aturner $
  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. noinst_HEADERS += $(srcdir)/plugins/dlt_hdlc/hdlc.h
  10. EXTRA_DIST += $(srcdir)/plugins/dlt_hdlc/hdlc_opts.def
  11. # dependancies for your plugin source code. Edit as necessary
  12. $(srcdir)/plugins/dlt_hdlc/hdlc.c: $(srcdir)/tcpedit_stub.h $(srcdir)/plugins/dlt_utils.h \
  13. $(srcdir)/plugins/dlt_hdlc/hdlc.h $(srcdir)/plugins/dlt_plugins.h $(srcdir)/plugins/dlt_plugins-int.h
  14. # You probably don't want to touch anything below this line until the end of the plugin
  15. MOSTLYCLEANFILES += $(srcdir)/plugins/dlt_hdlc/*~
  16. # END OF: dlt_hdlc