From 3e0f58a368ead40d9cd47bdd48efdcb89aad1d0c Mon Sep 17 00:00:00 2001 From: wes Date: Thu, 23 Jun 2016 23:29:03 -0400 Subject: [PATCH] add SRV_ROOT parameter to makefile, so that static resources go to different places --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 29387bd..9e7fa8d 100644 --- a/Makefile +++ b/Makefile @@ -20,5 +20,5 @@ install: $(MAKE); rm -rf /srv/http/build/; cp -rT ./build /srv/http/build/; - cp -rT ./build/scripts/ /srv/http/mgoal/scripts/; - cp -rT ./build/styles/ /srv/http/mgoal/styles/; + cp -rT ./build/scripts/ $(SRV_ROOT)/scripts/; + cp -rT ./build/styles/ $(SRV_ROOT)/styles/;