+deb: build
+ifeq ($(findstring linux,$(target)),linux)
+ @$(eval filename := $(app_name)-$(target)-$(channel))
+ cargo deb --profile $(profile) --target $(target)
+ mv target/$(target)/debian/*.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)
+endif
+