Skip to content
Snippets Groups Projects
Commit ea768ef1 authored by sof's avatar sof
Browse files

[project @ 1998-05-29 14:02:29 by sof]

New rule, dist-package-zip: package src dists up using zip
parent 9646846a
No related merge requests found
......@@ -600,6 +600,7 @@ REAL_SHELL=$(SHELL)
SIZE = size
STRIP = strip
TAR = @TarCmd@
ZIP = zip
#
# Under cygwin32, we have to deal with .exe suffixes
......
......@@ -741,9 +741,14 @@ dist-post::
dist-manifest ::
cd $(SRC_DIST_DIR); find . \( -type l -o -type f \) -exec ls -lLG {} \; | sed -e 's/\.\///' > /tmp/MANIFEST ; mv /tmp/MANIFEST MANIFEST
dist-package::
dist-package:: dist-package-tar-gz
dist-package-tar-gz ::
cd $(SRC_DIST_DIR); cd ..; $(TAR) chzf $(SRC_DIST_NAME).tar.gz $(SRC_DIST_NAME)
dist-package-zip ::
cd $(SRC_DIST_DIR); cd ..; $(ZIP) -r $(SRC_DIST_NAME).zip $(SRC_DIST_NAME)
#
# binary-dist creates a binary bundle, set BIN_DIST_NAME
# to package name and do `make binary-dist' (normally this
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment