aboutsummaryrefslogtreecommitdiffstats
path: root/packaging/makefile.nmake
diff options
context:
space:
mode:
authorGraeme Lunt <graeme.lunt@smhs.co.uk>2008-01-04 14:07:47 +0000
committerGraeme Lunt <graeme.lunt@smhs.co.uk>2008-01-04 14:07:47 +0000
commit906d66181e688f7c4ee08a77d667221bda1e1c1a (patch)
treed2d06d74a993cfaa86c6fc68f2381ada2a7e728a /packaging/makefile.nmake
parent73fee653de767e0f8ae9637b54ac8d56c7fbb720 (diff)
A script to generate a generic manifest file from the nsis/wireshark.nsi.
The U3 and portableapps packaging will use this generic manifest to package the correct set of components. Thus all three packages will be kept in sync. svn path=/trunk/; revision=24011
Diffstat (limited to 'packaging/makefile.nmake')
-rw-r--r--packaging/makefile.nmake17
1 files changed, 17 insertions, 0 deletions
diff --git a/packaging/makefile.nmake b/packaging/makefile.nmake
new file mode 100644
index 0000000000..a988f3c183
--- /dev/null
+++ b/packaging/makefile.nmake
@@ -0,0 +1,17 @@
+#
+# $Id$
+#
+
+include ../config.nmake
+include <win32.mak>
+
+wireshark.manifest: nsis/wireshark.nsi ws-manifest.pl
+ $(PERL) ws-manifest.pl nsis/wireshark.nsi > $@
+
+clean:
+ rm -rf wireshark.manifest
+
+distclean: clean
+
+maintainer-clean: distclean
+