From 4a534449014a88dca89d59284cd2566cef806556 Mon Sep 17 00:00:00 2001 From: fyodor Date: Sun, 7 Jun 2009 04:25:48 +0000 Subject: [PATCH] Split the release build system from having one make distro rule to three separate ones: make prerelease; make release-tarballs; and make release-rpms --- Makefile.in | 15 ++++++++++++--- 1 file changed, 12 insertions(+), 3 deletions(-) diff --git a/Makefile.in b/Makefile.in index fd4b37867..e5e941eed 100644 --- a/Makefile.in +++ b/Makefile.in @@ -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: