Project

General

Profile

1
##### Configuration
2

    
3
src_server ?= vegbiendev
4
src_user ?= $(USER)
5
test ?=
6

    
7
##### Vars/functions
8

    
9
# Make
10
null :=
11
space := $(null) $(null)
12
comma := ,
13
pathParts = $(shell path="$(1)"; echo "$${path%%/*}" "$${path\#*/}")
14
topDir = $(word 1,$(pathParts))
15
subPath = $(word 2,$(pathParts))
16
subMake = $(MAKE) $(call subPath,$@) --directory=$(call topDir,$@) \
17
--makefile=../input.Makefile
18
# input.Makefile path is relative to subdir
19

    
20
# Formatting
21
sed = sed -$(if $(filter Darwin,$(os)),E,r)
22
_2Space = $(subst _,$(space),$(1))
23
*2Space = $(call _2Space,$*)
24

    
25
# Filesystem
26
wildcard/ = $(shell bash -c 'shopt -s nullglob; echo $(1)')
27
    # needed because builtin $(wildcard) doesn't do / suffix correctly
28
no/ = $(1:/=)# remove trailing /
29
+w = $(wildcard $+)# existing items in $+
30
CP := cp -p
31
cp = $(CP) $< $@
32

    
33
# File editing
34
sudoAppend = echo $$'$(2)'|sudo tee -a $(1) >/dev/null
35

    
36
# System
37
os := $(shell uname)
38
isMac := $(filter Darwin,$(os))
39
forOs = $(patsubst %,%-$(filter Linux Darwin,$(os)),$(1))
40
dateFmt := %-Y-%-m-%-d %-H:%M:%S %Z
41
date = $(shell date +"$(dateFmt)")
42
mtime = $(shell $(if $(isMac),stat -f %Sm -t "$(dateFmt)" $(1),date\
43
--reference=$(1) +"$(dateFmt)"))
44

    
45
# Terminal
46
esc := '['
47
reset := $(esc)'0m'
48
emph := $(esc)'7m '
49
endEmph := ' '$(reset)
50

    
51
# User interaction
52

    
53
done = echo; echo $(emph)"Finished $@"$(endEmph); echo
54

    
55
wait := read -p $(emph)'Press ENTER to continue:'$(endEmph) REPLY
56

    
57
confirm = $(if $(shell read -p $(emph)"$(1)"$(endEmph)$$'$(if\
58
$(2),\n$(2))\nContinue? (y/n) ' REPLY; test "$$REPLY" = y && echo t),,\
59
$(error Aborting))
60

    
61
## SVN
62

    
63
addFile = $(if $(wildcard $(1)),,touch $(1) && )svn add $(1)
64
addDir = $(if $(wildcard $(1)/),svn add --depth=empty $(1),svn mkdir $(1))
65
add* = $(if $(1),svn add --depth=empty $(1))
66

    
67
# Revisions
68
revision = $(shell svn info $(1)|$(sed) -n 's/^Last Changed Rev: (.*)$$/\1/p')
69
rootRevision = $(call revision,$(root))
70
version ?= r$(rootRevision)
71

    
72
# rsync
73
rsync* := "time" rsync$(if $(test), --dry-run) --archive --update --verbose\
74
--itemize-changes --progress
75
rsync := $(rsync*) --exclude=".svn/" --exclude="*\#" --exclude=".DS_Store"
76
local := ./
77
localDirName := $(notdir $(realpath $(local)))
78
remote := $(src_user)@$(src_server):/home/bien/svn/$(localDirName)/
79

    
80
# DB
81
mkSchemaCmd = 'CREATE SCHEMA $(1);'
82
rmSchemaCmd = 'DROP SCHEMA IF EXISTS "$(1)" CASCADE;'
83

    
84
##### General targets
85

    
86
all: # must be first target in Makefile, so add an empty version here
87

    
88
.SUFFIXES: # turn off built-in suffix rules
89
.SECONDARY: # don't automatically delete intermediate files
90
.DELETE_ON_ERROR: # delete target if recipe fails
91

    
92
_always:
93
.PHONY: _always
94

    
95
clean: # make sure `make clean` always works
96

    
97
# Usage: `make {--silent|-s} version` (don't echo make commands)
98
version: _always
99
	echo $(version)
(9-9/47)