aboutsummaryrefslogtreecommitdiffstats
path: root/packaging
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2002-01-04 21:20:20 +0000
committerGuy Harris <guy@alum.mit.edu>2002-01-04 21:20:20 +0000
commitcb489a92bb07d38ab037d72515e20c15374c9b69 (patch)
tree20dcca62b78863e35432738f100569e669ec11cf /packaging
parent8ee4e324f5757ecc20061ca875f3e218925dc0da (diff)
From Hamish Moffatt:
Additional Windows Makefile dependencies, so more stuff gets built as needed. Additional stuff cleaned up by "make clean" (well, "nmake -f makefile.nmake clean", anyway) Make PDB_FILE be "vc*.pdb", so it referes to the PDB files either for VC++ 5.0 or VC++ 6.0. svn path=/trunk/; revision=4481
Diffstat (limited to 'packaging')
-rw-r--r--packaging/nsis/Makefile.nmake14
1 files changed, 12 insertions, 2 deletions
diff --git a/packaging/nsis/Makefile.nmake b/packaging/nsis/Makefile.nmake
index 01d61838b0..d88bde2c27 100644
--- a/packaging/nsis/Makefile.nmake
+++ b/packaging/nsis/Makefile.nmake
@@ -1,5 +1,5 @@
#
-# $Id: Makefile.nmake,v 1.9 2001/12/19 19:16:12 guy Exp $
+# $Id: Makefile.nmake,v 1.10 2002/01/04 21:20:20 guy Exp $
#
#
# NSIS is a free packager/installer/uninstaller program for Win32.
@@ -27,7 +27,6 @@ PLUGINS=../../plugins/mgcp/mgcp.dll \
DELIVERABLES=$(EXE) $(DLL) $(DOC) $(GPL) $(PLUGINS)
-
ethereal-setup.exe : ethereal.nsi $(DELIVERABLES)
$(MAKENSIS) ethereal.nsi
@@ -38,3 +37,14 @@ ethereal.nsi : ethereal.nsi.in
clean:
rm -f ethereal.nsi ethereal-setup.exe
+
+$(DOC):
+ cd ../../doc
+ $(MAKE) -f makefile.nmake
+ cd ../packaging/nsis
+
+$(EXE) $(DLL):
+ cd ../..
+ $(MAKE) -f makefile.nmake
+ cd packaging/nsis
+