1
0

Makefile.am 927 B

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