1
0
mirror of https://github.com/nmap/nmap.git synced 2026-01-08 15:39:05 +00:00

fix mswin32/Makefile so mswin32 zipfile properly includes nselib-bin directory. Thanks to Rob Nicholls for the report

This commit is contained in:
fyodor
2007-12-08 02:33:20 +00:00
parent 0e936c4fd3
commit b6873eddb3
2 changed files with 9 additions and 2 deletions

View File

@@ -1,4 +1,11 @@
# Nmap Changelog ($Id$); -*-text-*-
4.49RC5
o Fix mswin32/Makefile so that the new nselib-bin directory is
properly included in the Nmap win32 zipfile distribution. Thanks
to Rob Nicholls for reporting the problem.
4.49RC4
o David did a huge OS fingerprint integration marathon, going through

View File

@@ -5,7 +5,6 @@ export NMAP_NUM_VERSION := $(shell grep '^\#[ \t]*define[ \t]\+NMAP_NUM_VERSION'
COMMA_VERSION=$(shell echo $(NMAP_NUM_VERSION) | tr '.' ',')
LOGLOC=c:nmapbuild.log
NSE_FILES = scripts/script.db scripts/*.nse
NSE_LIB_FILES = nselib/*.lua nselib-bin/*.dll
winbuild:
# VCExpress.exe is devenv.com with the commercial Visual Studio suite instead of VC++ Express
@@ -25,7 +24,8 @@ winbuild:
mkdir nmap-$(NMAP_VERSION)/scripts
cd Release && cp -f $(NSE_FILES) ../nmap-$(NMAP_VERSION)/scripts/
mkdir nmap-$(NMAP_VERSION)/nselib
cd Release && cp -f $(NSE_LIB_FILES) ../nmap-$(NMAP_VERSION)/nselib/
cp -a Release/nselib nmap-$(NMAP_VERSION)
cp -a Release/nselib-bin nmap-$(NMAP_VERSION)
zip -r nmap-$(NMAP_VERSION)-win32.zip nmap-$(NMAP_VERSION)
cp winpcap/winpcap-nmap-*.exe nmap-$(NMAP_VERSION)
mkdir nmap-$(NMAP_VERSION)/zenmap