Makefile.am 1.0 KB

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