From a1bc6ea99ac0ef2056b53b5eff2e6d33ee7e3eec Mon Sep 17 00:00:00 2001 From: rscnt Date: Mon, 8 Jun 2015 23:29:44 -0600 Subject: [PATCH] Makefile, added install_debian_packages task. install_debian_packages: Simply excutes apt-get update and installs the packages listed in ./requirements.debian.txt Signed-off-by: rscnt --- Makefile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Makefile b/Makefile index 3f566a0a..43d4bfd7 100644 --- a/Makefile +++ b/Makefile @@ -18,3 +18,6 @@ collectstatic: rsync_upload: rsync -avz -e "ssh -p $(SSH_PORT)" --exclude .git --exclude .ropeproject --exclude __pycache__ --exclude *.pyc --exclude *~ --exclude *.psd $(BASEDIR) $(SSH_USER)@$(SSH_HOST):$(SSH_TARGET_DIR) + +install_debian_packages: + apt-get update && cat $(BASEDIR)/requirements.debian.txt | xargs apt-get install -y --no-install-recommends