diff options
author | Guy Harris <guy@alum.mit.edu> | 2001-07-19 21:30:17 +0000 |
---|---|---|
committer | Guy Harris <guy@alum.mit.edu> | 2001-07-19 21:30:17 +0000 |
commit | 28ca6b4a93393a77444166a3234be6e1b666db76 (patch) | |
tree | 1c296e6e5588bb37baa063644fad8c5e48044ae3 /plugins/Makefile.nmake | |
parent | fc603eaf9a6a0c5e0247f6701235b9196c0ab323 (diff) | |
download | wireshark-28ca6b4a93393a77444166a3234be6e1b666db76.tar.gz wireshark-28ca6b4a93393a77444166a3234be6e1b666db76.tar.bz2 wireshark-28ca6b4a93393a77444166a3234be6e1b666db76.zip |
GIOP CosNaming support, from Frank Singleton.
svn path=/trunk/; revision=3740
Diffstat (limited to 'plugins/Makefile.nmake')
-rw-r--r-- | plugins/Makefile.nmake | 12 |
1 files changed, 10 insertions, 2 deletions
diff --git a/plugins/Makefile.nmake b/plugins/Makefile.nmake index dcc25ab063..4c7a29a9aa 100644 --- a/plugins/Makefile.nmake +++ b/plugins/Makefile.nmake @@ -1,5 +1,5 @@ # -# $Id: Makefile.nmake,v 1.9 2001/03/06 13:08:12 gram Exp $ +# $Id: Makefile.nmake,v 1.10 2001/07/19 21:30:16 guy Exp $ # include ..\config.nmake @@ -13,7 +13,7 @@ CFLAGS=/DHAVE_CONFIG_H /I.. /I../epan /I../wiretap /I. \ OBJECTS=plugin_api.obj -all: plugin_api.obj gryphon mgcp +all: plugin_api.obj gryphon mgcp giop gryphon:: cd gryphon @@ -25,10 +25,18 @@ mgcp:: $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake cd .. +giop:: + cd giop + $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake + cd .. + + clean: rm -f plugin_api.obj cd gryphon $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake clean cd ../mgcp $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake clean + cd ../giop + $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake clean cd .. |