X-Git-Url: https://git.r.bdr.sh/rbdr/blog/blobdiff_plain/2c1be76d7a889dd222ab78029d7453308f61e772..7a481daf21549889ac60914918ef8ace4f5a4b08:/Makefile diff --git a/Makefile b/Makefile index 8130a1c..1e43795 100644 --- a/Makefile +++ b/Makefile @@ -15,7 +15,9 @@ build: prepare cargo build --profile $(profile) --target $(target) release: rpm tar - rsync -avz $(app_name)-$(target)-$(channel).tar.gz deploy@conchos.unlimited.pizza:/srv/http/build.r.bdr.sh/$(app_name) + @$(eval filename := $(app_name)-$(target)-$(channel)) + rsync -avz $(filename).tar.gz deploy@conchos.unlimited.pizza:/srv/http/build.r.bdr.sh/$(app_name) + rsync -avz $(filename).rpm deploy@conchos.unlimited.pizza:/srv/http/build.r.bdr.sh/$(app_name) $(architectures): ifneq ($(channel),) @@ -25,9 +27,11 @@ else endif rpm: build + cargo generate-rpm --profile $(profile) --target $(target) tar: build - tar -czvf $(app_name)-$(target)-$(channel).tar.gz -C target/$(target)/$(profile)/ $(app_name) + @$(eval filename := $(app_name)-$(target)-$(channel)) + tar -czvf $(filename).tar.gz -C target/$(target)/$(profile)/ $(app_name) package: $(architectures)