mirror of
https://github.com/rust-lang/rust.git
synced 2024-10-31 22:41:50 +00:00
113 lines
3.3 KiB
Makefile
113 lines
3.3 KiB
Makefile
######################################################################
|
|
# Distribution
|
|
######################################################################
|
|
|
|
PKG_NAME := rust
|
|
PKG_DIR = $(PKG_NAME)-$(CFG_RELEASE)
|
|
PKG_TAR = $(PKG_DIR).tar.gz
|
|
|
|
ifdef CFG_ISCC
|
|
PKG_ISS = $(wildcard $(S)src/etc/pkg/*.iss)
|
|
PKG_ICO = $(S)src/etc/pkg/rust-logo.ico
|
|
PKG_EXE = $(PKG_DIR)-install.exe
|
|
endif
|
|
|
|
PKG_GITMODULES := $(S)src/libuv $(S)src/llvm
|
|
|
|
PKG_FILES := \
|
|
$(S)LICENSE.txt $(S)README.md \
|
|
$(S)configure $(S)Makefile.in \
|
|
$(S)man \
|
|
$(S)doc \
|
|
$(addprefix $(S)src/, \
|
|
README.txt \
|
|
cargo \
|
|
rustc \
|
|
compiletest \
|
|
etc \
|
|
fuzzer \
|
|
libcore \
|
|
libsyntax \
|
|
libstd \
|
|
rt \
|
|
rustdoc \
|
|
rustllvm \
|
|
snapshots.txt \
|
|
test) \
|
|
$(PKG_GITMODULES) \
|
|
$(filter-out Makefile config.stamp config.mk, \
|
|
$(MKFILE_DEPS))
|
|
|
|
UNROOTED_PKG_FILES := $(patsubst $(S)%,./%,$(PKG_FILES))
|
|
|
|
ifdef CFG_ISCC
|
|
LICENSE.txt: $(S)LICENSE.txt
|
|
cp $< $@
|
|
|
|
%.iss: $(S)src/etc/pkg/%.iss
|
|
cp $< $@
|
|
|
|
%.ico: $(S)src/etc/pkg/%.ico
|
|
cp $< $@
|
|
|
|
$(PKG_EXE): rust.iss modpath.iss LICENSE.txt rust-logo.ico \
|
|
$(PKG_FILES) all rustc-stage3
|
|
@$(call E, ISCC: $@)
|
|
$(Q)"$(CFG_ISCC)" $<
|
|
endif
|
|
|
|
|
|
$(PKG_TAR): $(PKG_FILES)
|
|
@$(call E, making dist dir)
|
|
$(Q)rm -Rf dist
|
|
$(Q)mkdir -p dist/$(PKG_DIR)
|
|
$(Q)tar \
|
|
-C $(S) \
|
|
--exclude-vcs \
|
|
--exclude=*~ \
|
|
--exclude=*/llvm/test/*/*.ll \
|
|
--exclude=*/llvm/test/*/*.td \
|
|
--exclude=*/llvm/test/*/*.s \
|
|
--exclude=*/llvm/test/*/*/*.ll \
|
|
--exclude=*/llvm/test/*/*/*.td \
|
|
--exclude=*/llvm/test/*/*/*.s \
|
|
-c $(UNROOTED_PKG_FILES) | tar -x -C dist/$(PKG_DIR)
|
|
$(Q)tar -czf $(PKG_TAR) -C dist $(PKG_DIR)
|
|
$(Q)rm -Rf dist
|
|
|
|
.PHONY: dist distcheck
|
|
|
|
ifdef CFG_WINDOWSY
|
|
|
|
dist: $(PKG_EXE)
|
|
|
|
distcheck: dist
|
|
@echo
|
|
@echo -----------------------------------------------
|
|
@echo $(PKG_EXE) ready for distribution
|
|
@echo -----------------------------------------------
|
|
|
|
else
|
|
|
|
dist: $(PKG_TAR)
|
|
|
|
distcheck: $(PKG_TAR)
|
|
$(Q)rm -Rf dist
|
|
$(Q)mkdir -p dist
|
|
@$(call E, unpacking $(PKG_TAR) in dist/$(PKG_DIR))
|
|
$(Q)cd dist && tar -xzf ../$(PKG_TAR)
|
|
@$(call E, configuring in dist/$(PKG_DIR)-build)
|
|
$(Q)mkdir -p dist/$(PKG_DIR)-build
|
|
$(Q)cd dist/$(PKG_DIR)-build && ../$(PKG_DIR)/configure
|
|
@$(call E, making 'check' in dist/$(PKG_DIR)-build)
|
|
$(Q)+make -C dist/$(PKG_DIR)-build check
|
|
@$(call E, making 'clean' in dist/$(PKG_DIR)-build)
|
|
$(Q)+make -C dist/$(PKG_DIR)-build clean
|
|
$(Q)rm -Rf dist
|
|
@echo
|
|
@echo -----------------------------------------------
|
|
@echo $(PKG_TAR) ready for distribution
|
|
@echo -----------------------------------------------
|
|
|
|
endif
|