Makefile.am 950 B

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