From f6a9f4c0d54c353795fdc5baed8e533b85308c9c Mon Sep 17 00:00:00 2001 From: James Vasile Date: Tue, 5 Feb 2013 16:08:17 -0500 Subject: [PATCH] add cherrypy3 to Makefile, clean up some git --- Makefile | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/Makefile b/Makefile index 377f00531..58ec6c71a 100644 --- a/Makefile +++ b/Makefile @@ -17,16 +17,16 @@ build: mkdir -p $(BUILD_DIR) predepend: - sudo sh -c "apt-get install augeas-tools python-bjsonrpc python-augeas python-simplejson pandoc python-cheetah" + sudo sh -c "apt-get install augeas-tools python-bjsonrpc python-augeas python-simplejson pandoc python-cheetah python-cherrypy3" touch predepend $(BUILD_DIR)/exmachina: build - test -d $(BUILD_DIR)/exmachina || git clone git://github.com/tomgalloway/exmachina $(BUILD_DIR)/exmachina - cd $(BUILD_DIR)/exmachina; git pull + test -d $@ || git clone git://github.com/tomgalloway/exmachina $@ + cd $@; git pull $(BUILD_DIR)/bjsonrpc: build - test -d $(BUILD_DIR)/bjsonrpc || git clone git://github.com/deavid/bjsonrpc.git $(BUILD_DIR)/bjsonrpc - cd $(BUILD_DIR)/bjsonrpc; git pull + test -d $@ || git clone git://github.com/deavid/bjsonrpc.git $@ + cd $@; git pull $(BUILD_DIR)/withsqlite: build test -d $@ || git clone git://github.com/jvasile/withsqlite.git $@