From 4e737d4292008593d4a1c3c7c065ca68bae5972f Mon Sep 17 00:00:00 2001 From: shockrah Date: Mon, 17 May 2021 14:44:56 -0700 Subject: [PATCH] + Seperating slim & rtc builds in makefile --- json-api/Makefile | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/json-api/Makefile b/json-api/Makefile index 9ab722e..9b7d8a6 100644 --- a/json-api/Makefile +++ b/json-api/Makefile @@ -1,6 +1,9 @@ -default: +full: cargo build --release --features rtc +slim: + cargo build --release + dep: cargo update