Use "make nsi" instead of "make dist" to be consistent with MinGW build


git-svn-id: svn+ssh://svn.code.sf.net/p/libjpeg-turbo/code/trunk@182 632fc199-4ca6-4c93-a231-07263d6284db
diff --git a/BUILDING.txt b/BUILDING.txt
index 1515518..13c6a0c 100644
--- a/BUILDING.txt
+++ b/BUILDING.txt
@@ -319,7 +319,7 @@
   libjpeg-turbo SDK.  This requires the Nullsoft Install System
   (http://nsis.sourceforge.net/.)  makensis.exe should be in your PATH.
 
-make -f win/Makefile dist
+make -f win/Makefile nsi
 
   This creates a Win32 installer for the Visual C++ version of the
   libjpeg-turbo SDK.  This requires the Nullsoft Install System
diff --git a/win/Makefile b/win/Makefile
index 6bf95d4..80aad01 100755
--- a/win/Makefile
+++ b/win/Makefile
@@ -230,13 +230,13 @@
 
 
 ifeq ($(WIN64), yes)
-dist: all
+nsi: all
 	$(RM) $(ODIR)/libjpeg-turbo64.exe
 	makensis -nocd -DVERSION=$(VERSION) -DAPPNAME=libjpeg-turbo64 \
 		-DWLIBDIR=windows64 -DWSRCDIR=. -DWBLDDIR=windows64 -DWHDRDIR=win \
 		-DPLATFORM="Visual C++ 64-bit" release/libjpeg-turbo.nsi
 else
-dist: all
+nsi: all
 	$(RM) $(ODIR)/libjpeg-turbo.exe
 	makensis -nocd -DVERSION=$(VERSION) -DAPPNAME=libjpeg-turbo \
 		-DWLIBDIR=windows -DWSRCDIR=. -DWBLDDIR=windows -DWHDRDIR=win \