Makefile.am 764 B

123456789101112131415161718192021222324252627
  1. # $Id$
  2. # START OF: dlt_radiotap
  3. # Note, if you add any files to your plugin, you will need to edit dlt_radiotap/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%/radiotap.c
  9. noinst_HEADERS += %reldir%/radiotap.h
  10. EXTRA_DIST += %reldir%/radiotap_opts.def
  11. # dependencies for your plugin source code. Edit as necessary
  12. radiotap.c: \
  13. $(TCPEDIT_PLUGINS_DEPS) \
  14. %reldir%/radiotap.h
  15. # You probably don't want to touch anything below this line until the end of the plugin
  16. DLT_STUB_DEPS += %reldir%/radiotap_opts.def
  17. MOSTLYCLEANFILES += *~
  18. # END OF: dlt_radiotap