Makefile.am 857 B

123456789101112131415161718192021222324252627282930
  1. # $Id:$
  2. # START OF: dlt_linuxsll
  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%/linuxsll.c
  9. noinst_HEADERS += \
  10. %reldir%/linuxsll.h \
  11. %reldir%/linuxsll_types.h
  12. EXTRA_DIST += %reldir%/linuxsll_opts.def
  13. # dependencies for your plugin source code. Edit as necessary
  14. linuxsll.c: \
  15. $(TCPEDIT_PLUGINS_DEPS) \
  16. %reldir%/../../tcpedit_api.h \
  17. %reldir%/linuxsll.h \
  18. %reldir%/linuxsll_types.h
  19. # You probably don't want to touch anything below this line until the end of the plugin
  20. DLT_STUB_DEPS += %reldir%/linuxsll_opts.def
  21. MOSTLYCLEANFILES += *~
  22. # END OF: dlt_linuxsll