X-Git-Url: https://git.r.bdr.sh/rbdr/blog/blobdiff_plain/6b85c7c48036d37c134c99c3950383e72e6bb4a2..94b6e2ec638d11ac2048ad3a3cce13e0b990bd87:/Makefile diff --git a/Makefile b/Makefile index 2591bc7..eba1bda 100644 --- a/Makefile +++ b/Makefile @@ -14,7 +14,7 @@ prepare: build: prepare cargo build --profile $(profile) --target $(target) -release: rpm tar +release: rpm tar dab @$(eval filename := $(app_name)-$(target)-$(channel)) $(architectures): @@ -24,6 +24,14 @@ else $(MAKE) -e target=$@ build endif +deb: build + @$(eval filename := $(app_name)-$(target)-$(channel)) + cargo deb --profile $(profile) --target $(target) + mv target/$(target)/deb/*.deb $(filename).deb + sha256sum $(filename).deb > $(filename).deb.sha256 + rsync -avz $(filename).deb deploy@conchos.unlimited.pizza:/srv/http/build.r.bdr.sh/$(app_name) + rsync -avz $(filename).deb.sha256 deploy@conchos.unlimited.pizza:/srv/http/build.r.bdr.sh/$(app_name) + rpm: build @$(eval filename := $(app_name)-$(target)-$(channel)) cargo generate-rpm --profile $(profile) --target $(target)