summary refs log tree commit diff
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile10
1 files changed, 9 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 1f3b4a5..c6be5c8 100644
--- a/Makefile
+++ b/Makefile
@@ -2,10 +2,18 @@ build: sign
 	docker build --no-cache . -t deepblue
 sign:
 	./sign.sh
-up: sign build
+up: sign 
 	docker run --net customnetwork --ip 172.42.0.2 -d deepblue --name blueproxy
 clean:
 	rm -fv intercept*
+	rm -rfv app
+nodocker:
+	mkdir -pv app/src
+	cp appbuild.sh app/src
+	cp intercept.* app
+	cd app/src
+	export appRoot=` realpath ../app`
+	./appbuild.sh
 
 all: sign build up