Makefile.am 903 B

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