Revision 7558
Added by Aaron Marcuse-Kubitza almost 12 years ago
common.Makefile | ||
---|---|---|
2 | 2 |
|
3 | 3 |
remote_host ?= vegbiendev |
4 | 4 |
remote_user ?= $(USER) |
5 |
remote_basepath ?= /home/bien/svn |
|
5 | 6 |
test ?= |
6 | 7 |
|
7 | 8 |
##### Vars/functions |
... | ... | |
81 | 82 |
rsync := $(rsync*) --exclude=".svn/" --exclude="*\#" --exclude=".DS_Store" |
82 | 83 |
local := ./ |
83 | 84 |
localDirName := $(notdir $(realpath $(local))) |
84 |
remote := $(remote_user)@$(remote_host):/home/bien/svn/$(localDirName)/
|
|
85 |
remote := $(remote_user)@$(remote_host):$(remote_basepath)/$(localDirName)/
|
|
85 | 86 |
|
86 | 87 |
# DB |
87 | 88 |
mkSchemaCmd = 'CREATE SCHEMA $(1);' |
Also available in: Unified diff
lib/common.Makefile: $(remote): Made remote basepath configurable in $(remote_basepath)