aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile.nmake
diff options
context:
space:
mode:
authorGerald Combs <gerald@wireshark.org>2013-05-01 22:06:49 +0000
committerGerald Combs <gerald@wireshark.org>2013-05-01 22:06:49 +0000
commit4b4542045cbf8b4a5104c8deca0f9e9e566c98a8 (patch)
tree8c27328ad8af5938d1b7833fa6e6cf62e951160a /Makefile.nmake
parent6cbb955d00008336a200e39328d55cd6a586e643 (diff)
Install and uninstall our global profiles.
svn path=/trunk/; revision=49123
Diffstat (limited to 'Makefile.nmake')
-rw-r--r--Makefile.nmake5
1 files changed, 5 insertions, 0 deletions
diff --git a/Makefile.nmake b/Makefile.nmake
index f94f41f54b..989aaed749 100644
--- a/Makefile.nmake
+++ b/Makefile.nmake
@@ -1127,6 +1127,11 @@ install-generated-files:
cd plugins
$(MAKE) /$(MAKEFLAGS) -f Makefile.nmake install-plugins
cd ..
+ if not exist $(INSTALL_DIR)\profiles mkdir $(INSTALL_DIR)\profiles
+ if not exist $(INSTALL_DIR)\profiles\Bluetooth mkdir $(INSTALL_DIR)\profiles\Bluetooth
+ xcopy ".\profiles\Bluetooth\colorfilters" $(INSTALL_DIR)\profiles\Bluetooth /d
+ if not exist $(INSTALL_DIR)\profiles\Classic mkdir $(INSTALL_DIR)\profiles\Classic
+ xcopy ".\profiles\Classic\colorfilters" $(INSTALL_DIR)\profiles\Classic /d
# "install-all" will copy all files needed to run Wireshark/Tshark
# to the INSTALL_DIR, so you can run/debug Wireshark/Tshark from there.