summary refs log tree commit diff
path: root/Makefile
diff options
context:
space:
mode:
authorMatt Arnold <matt@thegnuguru.org>2023-01-04 23:15:26 -0500
committerMatt Arnold <matt@thegnuguru.org>2023-01-04 23:15:26 -0500
commit40fdfd29b720f73330df039579ccdef5fb6b6d27 (patch)
treeb68f8846e434bb12c872517f34b679a7b3313d2b /Makefile
parent231dca7a940eff16d2bd9415ed57f0466ae8f3dd (diff)
Dockerless build
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