| 12345678910111213141516171819202122232425262728293031 | # $Id:$# START OF: dlt_jnpr_ether# Note, if you add any files to your plugin, you will need to edit dlt_jnpr_ether/Makefile.am# add your .c files to libtcpedit_a_SOURCES# add your .h files to noinst_HEADERS# add any other files (like documentation, notes, etc) to EXTRA_DIST# add your dependancy information (see comment below)libtcpedit_a_SOURCES += $(srcdir)/plugins/dlt_jnpr_ether/jnpr_ether.c \		$(srcdir)/plugins/dlt_jnpr_ether/jnpr_ether.cnoinst_HEADERS += $(srcdir)/plugins/dlt_jnpr_ether/jnpr_ether.h \		$(srcdir)/plugins/dlt_jnpr_ether/jnpr_ether_api.h \		$(srcdir)/plugins/dlt_jnpr_ether/jnpr_ether_types.hEXTRA_DIST += $(srcdir)/plugins/dlt_jnpr_ether/jnpr_ether_opts.def# dependancies for your plugin source code.  Edit as necessary$(srcdir)/plugins/dlt_jnpr_ether/jnpr_ether.c:  $(srcdir)/tcpedit_stub.h $(srcdir)/plugins/dlt_utils.h \	$(srcdir)/plugins.h $(srcdir)/plugins_api.h $(srcdir)/plugins_types.h \	$(srcdir)/tcpedit_api.h $(srcdir)/plugins/dlt_jnpr_ether/jnpr_ether.h $(srcdir)/plugins/dlt_jnpr_ether/jnpr_ether_api.h \	$(srcdir)/plugins/dlt_jnpr_ether/jnpr_ether_types.h 	# Note:# You probably don't want to touch anything below this line until the end of the pluginDLT_STUB_DEPS += $(srcdir)/plugins/dlt_jnpr_ether/jnpr_ether_opts.defMOSTLYCLEANFILES += $(srcdir)/plugins/dlt_jnpr_ether/*~# END OF: dlt_jnpr_ether
 |