Allow checkapis target to work in out-of-tree builds (s#../../#$(top_srcdir)).
[metze/wireshark/wip.git] / plugins / giop / Makefile.am
index b10949959e76ab1964b50feb89b3c9bbe440280c..8058fa59309f9479287538f7cc0e8af5511466cd 100644 (file)
@@ -1,15 +1,14 @@
 # Makefile.am
-# Automake file for Ethereal/GIOP subdissectors 
+# Automake file for Wireshark/GIOP subdissectors 
 #
-# $Id: Makefile.am,v 1.4 2003/09/05 07:44:45 jmayer Exp $
+# $Id$
 #
 # Copyright 2001, Ericsson Inc.
 # Frank Singleton <frank.singleton@ericsson.com>
 #
-# Ethereal - Network traffic analyzer
-# By Gerald Combs <gerald@ethereal.com>
+# Wireshark - Network traffic analyzer
+# By Gerald Combs <gerald@wireshark.org>
 # Copyright 1998 Gerald Combs
-#
 # 
 # This program is free software; you can redistribute it and/or
 # modify it under the terms of the GNU General Public License
@@ -30,12 +29,22 @@ INCLUDES = -I$(top_srcdir)
 
 plugindir = @plugindir@
 
-plugin_LTLIBRARIES = cosnaming.la coseventcomm.la
+plugin_LTLIBRARIES = cosnaming.la coseventcomm.la tango.la parlay.la
 cosnaming_la_SOURCES = packet-cosnaming.c moduleinfo.h
 cosnaming_la_LDFLAGS = -module -avoid-version
+cosnaming_la_LIBADD = @PLUGIN_LIBS@
 
 coseventcomm_la_SOURCES = packet-coseventcomm.c moduleinfo.h
 coseventcomm_la_LDFLAGS = -module -avoid-version
+coseventcomm_la_LIBADD = @PLUGIN_LIBS@
+
+tango_la_SOURCES = packet-tango.c moduleinfo.h
+tango_la_LDFLAGS = -module -avoid-version
+tango_la_LIBADD = @PLUGIN_LIBS@
+
+parlay_la_SOURCES = packet-parlay.c moduleinfo.h
+parlay_la_LDFLAGS = -module -avoid-version
+parlay_la_LIBADD = @PLUGIN_LIBS@
 
 # Libs must be cleared, or else libtool won't create a shared module.
 # If your module needs to be linked against any particular libraries,
@@ -45,7 +54,20 @@ LIBS =
 CLEANFILES = \
        cosnaming \
        coseventcomm \
+       tango \
+       parlay \
        *~
 
+MAINTAINERCLEANFILES = \
+       Makefile.in     \
+       plugin.c
+
 EXTRA_DIST = \
        Makefile.nmake
+
+checkapi:
+       $(PERL) $(top_srcdir)/tools/checkAPIs.pl -g abort -g termoutput \
+       packet-cosnaming.c \
+       packet-coseventcomm.c \
+       packet-tango.c \
+       packet-parlay.c