Makefile.am 882 B

123456789101112131415161718192021222324252627282930313233
  1. # $Id:$
  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 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 += \
  9. %reldir%/en10mb.c \
  10. %reldir%/en10mb_api.c
  11. noinst_HEADERS += \
  12. %reldir%/en10mb.h \
  13. %reldir%/en10mb_api.h \
  14. %reldir%/en10mb_types.h \
  15. %reldir%/../../tcpedit_types.h
  16. EXTRA_DIST += %reldir%/en10mb_opts.def
  17. # dependencies for your plugin source code. Edit as necessary
  18. en10mb.c: \
  19. $(TCPEDIT_PLUGINS_DEPS) \
  20. %reldir%/en10mb.h \
  21. %reldir%/en10mb_api.h \
  22. %reldir%/en10mb_types.h
  23. # Note:
  24. # You probably don't want to touch anything below this line until the end of the plugin
  25. MOSTLYCLEANFILES += *~
  26. # END OF: dlt_en10mb