1
0
mirror of https://github.com/nmap/nmap.git synced 2025-12-28 18:39:03 +00:00

Split the release build system from having one make distro rule to three separate ones: make prerelease; make release-tarballs; and make release-rpms

This commit is contained in:
fyodor
2009-06-07 04:25:48 +00:00
parent 1fb2a75809
commit 4a53444901

View File

@@ -129,9 +129,18 @@ static:
debug:
$(MAKE) DBGFLAGS="-O0 -g -pg -ftest-coverage -fprofile-arcs"
# Make the Nmap tarball
distro:
cd $(NMAPDEVDIR) && $(MAKE) distro
# CALL THIS FROM ONE COMPUTER AND CHECK IN RESULTS BEFORE DOING ANYONE
# DOES A MAKE RELEASE
prerelease:
cd $(NMAPDEVDIR) && $(MAKE) prerelease
# Make just the Nmap tarballs
release-tarballs:
cd $(NMAPDEVDIR) && $(MAKE) release-tarballs
# Make the tarballs and RPMs (which are built from tarball)
release-rpms:
cd $(NMAPDEVDIR) && $(MAKE) release-rpms
# Update the web site
web: