Makefile.am 988 B

123456789101112131415161718192021222324252627282930313233343536
  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
  7. manpages: tcpedit.1
  8. tcpedit.1: tcpedit_stub.def
  9. @AUTOGEN@ -T agman1.tpl --base-name tcpedit tcpedit_stub.def
  10. tcpedit.c: tcpedit_stub.h
  11. # Get AutoOpts search path
  12. #opts_list=`find plugins -type d -not -regex ".*\.svn.*" -not -regex ".*\.deps.*" -exec echo -n "-L {} " \;`
  13. tcpedit_stub.h: tcpedit_opts.def tcpedit_stub.def $(srcdir)/plugins/dlt_stub.def
  14. @AUTOGEN@ $(opts_list) tcpedit_stub.def
  15. AM_CFLAGS = -I.. -I../common -I../.. $(LIBOPTS_CFLAGS) $(LNAV_CFLAGS)
  16. noinst_HEADERS = tcpedit.h edit_packet.h portmap.h \
  17. tcpedit_stub.h parse_args.h dlt.h checksum.h tcpedit-int.h
  18. MOSTLYCLEANFILES = *~
  19. MAINTAINERCLEANFILES = Makefile.in tcpedit_stub.h tcpedit.1
  20. EXTRA_DIST = tcpedit_stub.def tcpedit_opts.def
  21. include $(srcdir)/plugins/Makefile.am