Makefile.am 724 B

1234567891011121314151617181920212223242526
  1. # $Id:$
  2. # START OF: dlt_raw
  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 dependency information (see comment below)
  8. libtcpedit_a_SOURCES += %reldir%/raw.c
  9. noinst_HEADERS += %reldir%/raw.h
  10. EXTRA_DIST += %reldir%/raw_opts.def
  11. # dependencies for your plugin source code. Edit as necessary
  12. raw.c: \
  13. $(TCPEDIT_PLUGINS_DEPS) \
  14. %reldir%/raw.h
  15. # You probably don't want to touch anything below this line until the end of the plugin
  16. DLT_STUB_DEPS += %reldir%/raw_opts.def
  17. MOSTLYCLEANFILES += *~
  18. # END OF: dlt_raw