diff options
| author | Brian Anderson <banderson@mozilla.com> | 2014-03-21 19:20:44 -0700 |
|---|---|---|
| committer | Brian Anderson <banderson@mozilla.com> | 2014-03-24 14:29:18 -0700 |
| commit | 169f08dd59f287a65da5188ff453f38f4215250c (patch) | |
| tree | 18143b4f7f5a71cc33b2dd62c2864f29cbb4d689 | |
| parent | c2e5e62135ea97b7e4926038f52116fd591e6215 (diff) | |
| download | rust-169f08dd59f287a65da5188ff453f38f4215250c.tar.gz rust-169f08dd59f287a65da5188ff453f38f4215250c.zip | |
mk: Cleanup dist.mk yet more
| -rw-r--r-- | mk/dist.mk | 21 |
1 files changed, 11 insertions, 10 deletions
diff --git a/mk/dist.mk b/mk/dist.mk index 92e4f9bc241..801a843a917 100644 --- a/mk/dist.mk +++ b/mk/dist.mk @@ -24,6 +24,17 @@ PKG_NAME := $(CFG_PACKAGE_NAME) +# License suitable for displaying in a popup +LICENSE.txt: $(S)COPYRIGHT $(S)LICENSE-APACHE $(S)LICENSE-MIT + cat $^ > $@ + + +###################################################################### +# Source tarball +###################################################################### + +PKG_TAR = dist/$(PKG_NAME).tar.gz + PKG_GITMODULES := $(S)src/libuv $(S)src/llvm $(S)src/gyp $(S)src/compiler-rt PKG_FILES := \ $(S)COPYRIGHT \ @@ -52,16 +63,6 @@ PKG_FILES := \ UNROOTED_PKG_FILES := $(patsubst $(S)%,./%,$(PKG_FILES)) -LICENSE.txt: $(S)COPYRIGHT $(S)LICENSE-APACHE $(S)LICENSE-MIT - cat $^ > $@ - - -###################################################################### -# Source tarball -###################################################################### - -PKG_TAR = dist/$(PKG_NAME).tar.gz - $(PKG_TAR): $(PKG_FILES) @$(call E, making dist dir) $(Q)rm -Rf tmp/dist/$(PKG_NAME) |
