diff options
author | Guy Harris <guy@alum.mit.edu> | 2003-10-14 01:18:11 +0000 |
---|---|---|
committer | Guy Harris <guy@alum.mit.edu> | 2003-10-14 01:18:11 +0000 |
commit | 4fa26855a48bb846df9306a59be09d8a3cc12ab4 (patch) | |
tree | af0326eba9086700fc6f7e9e0c4bbba75f7eac35 /plugins/Makefile.nmake | |
parent | a5287eb7d215aad35c74fe61b9b93bf9fb2c5591 (diff) | |
download | wireshark-4fa26855a48bb846df9306a59be09d8a3cc12ab4.tar.gz wireshark-4fa26855a48bb846df9306a59be09d8a3cc12ab4.tar.bz2 wireshark-4fa26855a48bb846df9306a59be09d8a3cc12ab4.zip |
From Erwin Rol: ACN support.
svn path=/trunk/; revision=8686
Diffstat (limited to 'plugins/Makefile.nmake')
-rw-r--r-- | plugins/Makefile.nmake | 13 |
1 files changed, 10 insertions, 3 deletions
diff --git a/plugins/Makefile.nmake b/plugins/Makefile.nmake index 1d48209e2f..4b7caa91cc 100644 --- a/plugins/Makefile.nmake +++ b/plugins/Makefile.nmake @@ -1,5 +1,5 @@ # -# $Id: Makefile.nmake,v 1.25 2003/10/10 21:31:49 guy Exp $ +# $Id: Makefile.nmake,v 1.26 2003/10/14 01:18:10 guy Exp $ # include ..\config.nmake @@ -11,7 +11,7 @@ CFLAGS=/DHAVE_CONFIG_H /I.. /I../wiretap /I. $(GLIB_CFLAGS) \ OBJECTS=plugin_api.obj -all: $(OBJECTS) artnet docsis giop gryphon lwres megaco mgcp pcli rtnet +all: $(OBJECTS) acn artnet docsis giop gryphon lwres megaco mgcp pcli rtnet Xplugin_api.c: plugin_gen.py plugin_api_list.c @echo **** Plugin api may be out of date, please generate new files: @@ -24,6 +24,11 @@ xyzzy: plugin_gen.py plugin_api_list.c gcc -aux-info xyzzy -DHAVE_CONFIG_H $(GCC_GLIB_CFLAGS) -I.. -c plugin_api_list.c $(PYTHON) plugin_gen.py xyzzy +acn:: + cd acn + $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake + cd .. + artnet:: cd artnet $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake @@ -71,7 +76,9 @@ rtnet:: clean: rm -f plugin_api.obj $(PDB_FILE) - cd artnet + cd acn + $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake clean + cd ../artnet $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake clean cd ../docsis $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake clean |