rust/mk/dist.mk

81 lines
2.6 KiB
Makefile
Raw Normal View History

2011-05-02 04:18:52 +08:00
######################################################################
# Distribution
######################################################################
PKG_NAME := rust
PKG_DIR = $(PKG_NAME)-$(CFG_RELEASE)
2011-05-02 04:18:52 +08:00
PKG_TAR = $(PKG_DIR).tar.gz
ifdef CFG_MAKENSIS
PKG_NSI = $(S)src/etc/pkg/rust.nsi
PKG_EXE = $(PKG_DIR)-install.exe
endif
PKG_GITMODULES := $(S)src/libuv $(S)src/llvm
2011-10-06 08:41:01 +08:00
2012-01-19 09:25:54 +08:00
PKG_FILES := \
$(S)LICENSE.txt $(S)README.txt \
2011-05-02 04:18:52 +08:00
$(S)configure $(S)Makefile.in \
2012-01-19 09:25:54 +08:00
$(S)doc \
2011-05-02 04:18:52 +08:00
$(addprefix $(S)src/, \
README.txt \
2012-01-11 06:34:53 +08:00
cargo \
comp \
compiletest \
etc \
fuzzer \
libcore \
libstd \
rt \
rustdoc \
rustllvm \
snapshots.txt \
test) \
$(PKG_GITMODULES) \
2012-01-19 09:25:54 +08:00
$(filter-out Makefile config.mk, $(MKFILE_DEPS))
2011-05-02 04:18:52 +08:00
2012-01-19 09:25:54 +08:00
UNROOTED_PKG_FILES := $(patsubst $(S)%,./%,$(PKG_FILES))
lic.txt: $(S)LICENSE.txt
@$(call E, crlf: $@)
2011-10-08 03:06:17 +08:00
@$(Q)perl -pe 's@\r\n|\n@\r\n@go' <$< >$@
2011-10-08 03:06:17 +08:00
$(PKG_EXE): $(PKG_NSI) $(PKG_FILES) $(DOCS) $(SREQ3$(CFG_HOST_TRIPLE)) lic.txt
@$(call E, makensis: $@)
$(Q)makensis -NOCD -V1 "-XOutFile $@" "-XLicenseData lic.txt" $<
$(Q)rm -f lic.txt
2011-05-02 04:18:52 +08:00
$(PKG_TAR): $(PKG_FILES)
2011-05-02 04:18:52 +08:00
@$(call E, making dist dir)
$(Q)rm -Rf dist
$(Q)mkdir -p dist/$(PKG_DIR)
2012-01-19 09:25:54 +08:00
$(Q)tar -C $(S) -c $(UNROOTED_PKG_FILES) | tar -x -C dist/$(PKG_DIR)
2011-05-02 04:18:52 +08:00
$(Q)tar -czf $(PKG_TAR) -C dist $(PKG_DIR)
$(Q)rm -Rf dist
.PHONY: dist nsis-dist distcheck
dist: $(PKG_TAR) $(PKG_EXE)
nsis-dist: $(PKG_EXE)
2011-05-02 04:18:52 +08:00
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)
2012-01-11 06:34:53 +08:00
$(Q)+make -C dist/$(PKG_DIR)-build check
2011-05-02 04:18:52 +08:00
@$(call E, making 'clean' in dist/$(PKG_DIR)-build)
2012-01-11 06:34:53 +08:00
$(Q)+make -C dist/$(PKG_DIR)-build clean
2011-05-02 04:18:52 +08:00
$(Q)rm -Rf dist
@echo
@echo -----------------------------------------------
@echo $(PKG_TAR) ready for distribution
@echo -----------------------------------------------