Makefile.am 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. # $Id: Makefile.am 1630 2007-02-03 04:23:14Z aturner $
  2. #SUBDIRS = plugins
  3. noinst_LIBRARIES = libtcpedit.a
  4. BUILT_SOURCES = tcpedit_stub.h
  5. libtcpedit_a_SOURCES = tcpedit.c parse_args.c edit_packet.c \
  6. portmap.c dlt.c checksum.c incremental_checksum.c \
  7. tcpedit_api.c fuzzing.c rewrite_sequence.c
  8. manpages: tcpedit.1
  9. tcpedit.1: tcpedit_stub.def
  10. @AUTOGEN@ -T agman1.tpl --base-name tcpedit $<
  11. tcpedit.c: tcpedit_stub.h
  12. # Get AutoOpts search path
  13. #opts_list=`find plugins -type d -not -regex ".*\.svn.*" -not -regex ".*\.deps.*" -exec echo -n "-L {} " \;`
  14. tcpedit_stub.h: tcpedit_stub.def tcpedit_opts.def plugins/dlt_stub.def
  15. @AUTOGEN@ $(opts_list) $<
  16. AM_CFLAGS = -I$(srcdir). -I$(srcdir)/.. -I$(srcdir)/../common -I$(srcdir)/../.. @LDNETINC@ $(LIBOPTS_CFLAGS) $(LNAV_CFLAGS)
  17. noinst_HEADERS = tcpedit.h edit_packet.h portmap.h \
  18. tcpedit_stub.h parse_args.h dlt.h checksum.h \
  19. incremental_checksum.h tcpedit_api.h \
  20. tcpedit_types.h plugins.h plugins_api.h \
  21. plugins_types.h fuzzing.h rewrite_sequence.h
  22. MOSTLYCLEANFILES = *~
  23. MAINTAINERCLEANFILES = Makefile.in tcpedit_stub.h tcpedit.1
  24. EXTRA_DIST = tcpedit_stub.def tcpedit_opts.def
  25. include plugins/Makefile.am