Makefile.am 832 B

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