diff options
author | Simon Horman <horms@verge.net.au> | 2020-12-21 09:14:25 +0100 |
---|---|---|
committer | Simon Horman <horms@verge.net.au> | 2021-04-02 12:11:45 +0200 |
commit | 66d2b1a6ac4c9d006429bfe81c27b91700dfff66 (patch) | |
tree | 299b3d4c92009a950e70e15f912353d0fd671a9d | |
parent | 41b77edaceeabb5907eda95ff64ee8ec81551fe5 (diff) |
build: add dist make target
This provides a familiar alias for the existing tarball target.
The result is a tar.gz file.
Signed-off-by: Simon Horman <horms@verge.net.au>
-rw-r--r-- | Makefile.in | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/Makefile.in b/Makefile.in index a9c779f..dc7fb07 100644 --- a/Makefile.in +++ b/Makefile.in @@ -198,6 +198,8 @@ Makefile: Makefile.in config.status configure: configure.ac cd $(srcdir) && autoheader && autoconf && rm -rf autom4te.cache +dist: tarball + tarball: $(TARBALL.gz) $(TARBALL): $(SRCS) $(GENERATED_SRCS) @@ -397,4 +399,4 @@ uninstall: done .PHONY: echo install uninstall all targets uninstall-targets clean dist-clean distclean \ - maintainer-clean maintainerclean tarball rpm + maintainer-clean maintainerclean dist tarball rpm |