From cf4bed6620da837d5134ec679b4fd5d02c7ffc5d Mon Sep 17 00:00:00 2001 From: Keagan McClelland Date: Mon, 4 Oct 2021 14:29:00 -0600 Subject: [PATCH] add build scripts to embassy src --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 0a1609076..9f0db606a 100644 --- a/Makefile +++ b/Makefile @@ -1,6 +1,6 @@ EMBASSY_BINS := appmgr/target/aarch64-unknown-linux-gnu/release/embassyd appmgr/target/aarch64-unknown-linux-gnu/release/embassy-init appmgr/target/aarch64-unknown-linux-gnu/release/embassy-cli appmgr/target/aarch64-unknown-linux-gnu/release/embassy-sdk EMBASSY_UIS := ui/www setup-wizard/www diagnostic-ui/www -EMBASSY_SRC := ubuntu.img product_key.txt $(EMBASSY_BINS) appmgr/embassyd.service appmgr/embassy-init.service $(EMBASSY_UIS) build/initialization.sh build/initialization.service +EMBASSY_SRC := ubuntu.img product_key.txt $(EMBASSY_BINS) appmgr/embassyd.service appmgr/embassy-init.service $(EMBASSY_UIS) $(shell find build) APPMGR_SRC := $(shell find appmgr/src) appmgr/Cargo.toml appmgr/Cargo.lock UI_SRC := $(shell find ui/src)