summaryrefslogtreecommitdiff
path: root/plugins/giop/Makefile.nmake
diff options
context:
space:
mode:
authorAnders Broman <anders.broman@ericsson.com>2005-06-09 17:25:40 +0000
committerAnders Broman <anders.broman@ericsson.com>2005-06-09 17:25:40 +0000
commita4479750303fc9d2df9722ef543dd0016311ca2e (patch)
treec5950ce112973d81e072cdbd35e90d7aa4f9f69e /plugins/giop/Makefile.nmake
parenta84b47e275a6d868be106a3f356108c4f197b859 (diff)
downloadwireshark-a4479750303fc9d2df9722ef543dd0016311ca2e.tar.gz
Add dissection of parlay
www.parlay.org svn path=/trunk/; revision=14597
Diffstat (limited to 'plugins/giop/Makefile.nmake')
-rw-r--r--plugins/giop/Makefile.nmake11
1 files changed, 8 insertions, 3 deletions
diff --git a/plugins/giop/Makefile.nmake b/plugins/giop/Makefile.nmake
index fb9d458524..622567f643 100644
--- a/plugins/giop/Makefile.nmake
+++ b/plugins/giop/Makefile.nmake
@@ -15,9 +15,9 @@ LDFLAGS = /NOLOGO /INCREMENTAL:no /MACHINE:I386 $(LOCAL_LDFLAGS)
LINK_PLUGIN_WITH=..\..\epan\libethereal.lib
CFLAGS=/DHAVE_WIN32_LIBETHEREAL_LIB /D_NEED_VAR_IMPORT_ $(CFLAGS)
-OBJECTS=packet-cosnaming.obj packet-coseventcomm.obj packet-tango.obj
+OBJECTS=packet-cosnaming.obj packet-coseventcomm.obj packet-tango.obj packet-parlay.obj
-all : cosnaming.dll coseventcomm.dll tango.dll
+all : cosnaming.dll coseventcomm.dll tango.dll parlay.dll
cosnaming.dll cosnaming.exp cosnaming.lib : packet-cosnaming.obj $(LINK_PLUGIN_WITH)
link -dll /out:cosnaming.dll $(LDFLAGS) packet-cosnaming.obj $(LINK_PLUGIN_WITH) \
@@ -31,12 +31,17 @@ tango.dll tango.exp coseventcomm.lib : packet-tango.obj $(LINK_PLUGIN_WITH)
link -dll /out:tango.dll $(LDFLAGS) packet-tango.obj $(LINK_PLUGIN_WITH) \
$(GLIB_LIBS)
+parlay.dll parlay.exp coseventcomm.lib : packet-parlay.obj $(LINK_PLUGIN_WITH)
+ link -dll /out:parlay.dll $(LDFLAGS) packet-parlay.obj $(LINK_PLUGIN_WITH) \
+ $(GLIB_LIBS)
+
!ENDIF
clean:
rm -f $(OBJECTS) cosnaming.dll cosnaming.exp cosnaming.lib \
coseventcomm.dll coseventcomm.exp coseventcomm.lib \
- tango.dll tango.exp tango.lib *.pdb
+ tango.dll tango.exp tango.lib \
+ parlay.dll parlay.exp parlay.lib *.pdb
distclean: clean