aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/Makefile.nmake
diff options
context:
space:
mode:
authorguy <guy@f5534014-38df-0310-8fa8-9805f1628bb7>2002-07-12 22:52:43 +0000
committerguy <guy@f5534014-38df-0310-8fa8-9805f1628bb7>2002-07-12 22:52:43 +0000
commit261b69fb147785a3418885668fa31e42f3df0836 (patch)
treeeadbf839094b44e673f74473d5ba252222011f2e /plugins/Makefile.nmake
parent78a622583e669cda9792cebe70437a70e5c01c6a (diff)
From Anand V. Narwani:
DOCSIS support, including support for "Ethernet" captures where the raw frame is a DOCSIS frame rather than an Ethernet frame (some Cisco cable-modem head-end gear can send out a trace of all traffic on an Ethernet, but what it sends are the raw bytes of DOCSIS frames, not Ethernet frames) Get rid of second AUTHORS entry for Devin Heitmueller, merging its item into the older entry. Clean up the order of some lists of plugin items. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@5861 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'plugins/Makefile.nmake')
-rw-r--r--plugins/Makefile.nmake34
1 files changed, 20 insertions, 14 deletions
diff --git a/plugins/Makefile.nmake b/plugins/Makefile.nmake
index cc6042b7fe..b695b6df93 100644
--- a/plugins/Makefile.nmake
+++ b/plugins/Makefile.nmake
@@ -1,5 +1,5 @@
#
-# $Id: Makefile.nmake,v 1.13 2002/02/27 09:42:44 guy Exp $
+# $Id: Makefile.nmake,v 1.14 2002/07/12 22:52:39 guy Exp $
#
include ..\config.nmake
@@ -13,7 +13,17 @@ CFLAGS=/DHAVE_CONFIG_H /I.. /I../wiretap /I. \
OBJECTS=plugin_api.obj
-all: plugin_api.obj gryphon mgcp giop
+all: plugin_api.obj docsis giop gryphon mgcp
+
+docsis::
+ cd docsis
+ $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake
+ cd ..
+
+giop::
+ cd giop
+ $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake
+ cd ..
gryphon::
cd gryphon
@@ -21,22 +31,18 @@ gryphon::
cd ..
mgcp::
- cd mgcp
- $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake
- cd ..
-
-giop::
- cd giop
- $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake
- cd ..
-
+ cd mgcp
+ $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake
+ cd ..
clean:
rm -f plugin_api.obj $(PDB_FILE)
- cd gryphon
- $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake clean
- cd ../mgcp
+ cd docsis
$(MAKE) /$(MAKEFLAGS) -f Makefile.nmake clean
cd ../giop
$(MAKE) /$(MAKEFLAGS) -f Makefile.nmake clean
+ cd ../gryphon
+ $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake clean
+ cd ../mgcp
+ $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake clean
cd ..