From 028ab7fcfb7778861d0851bca307572b5cb33599 Mon Sep 17 00:00:00 2001 From: James Vasile Date: Tue, 5 Feb 2013 15:10:13 -0500 Subject: [PATCH] combine build and vendor dirs --- Makefile | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/Makefile b/Makefile index 72d916965..05a2269aa 100644 --- a/Makefile +++ b/Makefile @@ -1,6 +1,6 @@ #SHELL := /bin/bash MAKE=make -BUILD_DIR = build +BUILD_DIR = vendor #TODO: add install target @@ -21,10 +21,13 @@ predepend: touch predepend $(BUILD_DIR)/exmachina: build - git clone git://github.com/tomgalloway/exmachina $(BUILD_DIR)/exmachina + test -d $(BUILD_DIR)/exmachina || git clone git://github.com/tomgalloway/exmachina $(BUILD_DIR)/exmachina + cd $(BUILD_DIR)/exmachina; git pull $(BUILD_DIR)/bjsonrpc: build - git clone git://github.com/deavid/bjsonrpc.git $(BUILD_DIR)/bjsonrpc + test -d $(BUILD_DIR)/bjsonrpc || git clone git://github.com/deavid/bjsonrpc.git $(BUILD_DIR)/bjsonrpc + cd $(BUILD_DIR)/bjsonrpc; git pull + dbs: data/users.sqlite3