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