aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/Makefile.nmake
diff options
context:
space:
mode:
authorguy <guy@f5534014-38df-0310-8fa8-9805f1628bb7>2003-04-21 21:28:39 +0000
committerguy <guy@f5534014-38df-0310-8fa8-9805f1628bb7>2003-04-21 21:28:39 +0000
commit6a52278e81a27869894b77a6e037e4dcc065b16f (patch)
treec5af9f5a59aa14cf12026e7f17ebb35bba11c221 /plugins/Makefile.nmake
parentd34a3c5e582ecde9e5ddba45ff2d20e0771c45eb (diff)
From Erwin Rol: ArtNET support.
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@7518 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'plugins/Makefile.nmake')
-rw-r--r--plugins/Makefile.nmake13
1 files changed, 10 insertions, 3 deletions
diff --git a/plugins/Makefile.nmake b/plugins/Makefile.nmake
index a6184a1975..25665e1d7a 100644
--- a/plugins/Makefile.nmake
+++ b/plugins/Makefile.nmake
@@ -1,5 +1,5 @@
#
-# $Id: Makefile.nmake,v 1.16 2003/01/14 23:53:38 guy Exp $
+# $Id: Makefile.nmake,v 1.17 2003/04/21 21:28:37 guy Exp $
#
include ..\config.nmake
@@ -13,7 +13,12 @@ CFLAGS=/DHAVE_CONFIG_H /I.. /I../wiretap /I. \
OBJECTS=plugin_api.obj
-all: plugin_api.obj docsis giop gryphon megaco mgcp pcli
+all: plugin_api.obj artnet docsis giop gryphon megaco mgcp pcli
+
+artnet::
+ cd artnet
+ $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake
+ cd ..
docsis::
cd docsis
@@ -47,7 +52,9 @@ pcli::
clean:
rm -f plugin_api.obj $(PDB_FILE)
- cd docsis
+ cd artnet
+ $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake clean
+ cd ../docsis
$(MAKE) /$(MAKEFLAGS) -f Makefile.nmake clean
cd ../giop
$(MAKE) /$(MAKEFLAGS) -f Makefile.nmake clean