1
|
##### Configuration
|
2
|
|
3
|
remote_user ?= $(USER)
|
4
|
remote_host ?= jupiter
|
5
|
remote_basepath ?= /data/dev/aaronmk/bien
|
6
|
test ?=
|
7
|
|
8
|
##### Vars/functions
|
9
|
|
10
|
# Make
|
11
|
null :=
|
12
|
space := $(null) $(null)
|
13
|
comma := ,
|
14
|
and = $(if $(1),$(2))
|
15
|
or = $(1)$(2)
|
16
|
not = $(if $(1),,1)
|
17
|
require_var = $(if $($(1)),,$(error requires var $$$(1)))
|
18
|
pathParts = $(shell path="$(1)"; echo "$${path%%/*}" "$${path\#*/}")
|
19
|
topDir = $(word 1,$(pathParts))
|
20
|
subPath = $(word 2,$(pathParts))
|
21
|
subMake = $(MAKE) $(call subPath,$@) --directory=$(call topDir,$@)
|
22
|
# input.Makefile path is relative to subdir
|
23
|
|
24
|
# Formatting
|
25
|
sed = sed -$(if $(filter Darwin,$(os)),E,r)
|
26
|
_2Space = $(subst _,$(space),$(1))
|
27
|
*2Space = $(call _2Space,$*)
|
28
|
ucase = $(shell echo "$(1)"|tr "[a-z]" "[A-Z]")
|
29
|
ci = $(1) $(ucase)
|
30
|
|
31
|
# Filesystem
|
32
|
wildcard/ = $(shell bash -c 'shopt -s nullglob; echo $(1)')
|
33
|
# needed because builtin $(wildcard) doesn't do / suffix correctly
|
34
|
no/ = $(1:/=)# remove trailing /
|
35
|
+w = $(wildcard $+)# existing items in $+
|
36
|
CP := cp -p
|
37
|
cp = $(CP) $< $@
|
38
|
mkdir = $(if $(wildcard $(1)),,mkdir -p $(1))
|
39
|
|
40
|
# File editing
|
41
|
sudoAppend = echo $$'$(2)'|sudo tee -a $(1) >/dev/null
|
42
|
|
43
|
# System
|
44
|
os := $(shell uname)
|
45
|
isMac := $(filter Darwin,$(os))
|
46
|
forOs = $(patsubst %,%-$(filter Linux Darwin,$(os)),$(1))
|
47
|
dateFmt := %-Y-%-m-%-d %-H:%M:%S %Z
|
48
|
date = $(shell date +"$(dateFmt)")
|
49
|
mtime = $(shell $(if $(isMac),stat -f %Sm -t "$(dateFmt)" $(1),date\
|
50
|
--reference=$(1) +"$(dateFmt)"))
|
51
|
|
52
|
# Terminal
|
53
|
esc := '['
|
54
|
reset := $(esc)'0m'
|
55
|
emph := $(esc)'7m '
|
56
|
endEmph := ' '$(reset)
|
57
|
|
58
|
# User interaction
|
59
|
|
60
|
done = echo; echo $(emph)"Finished $@"$(endEmph); echo
|
61
|
|
62
|
wait := read -p $(emph)'Press ENTER to continue:'$(endEmph) REPLY
|
63
|
|
64
|
# Requires `SHELL := /bin/bash`
|
65
|
confirm = $(if $(shell read -p $(emph)"$(1)"$(endEmph)$$'$(if\
|
66
|
$(2),\n$(2))\nContinue? (y/n) ' REPLY; test "$$REPLY" = y && echo t),,\
|
67
|
$(error Aborting))
|
68
|
|
69
|
## SVN
|
70
|
|
71
|
addFile = $(if $(wildcard $(1)),,touch $(1) && )svn add $(1)
|
72
|
addDir = $(if $(wildcard $(1)/),svn add --depth=empty $(1),svn mkdir $(1))
|
73
|
add* = $(if $(1),svn add --depth=empty $(1))
|
74
|
|
75
|
# Revisions
|
76
|
revision = $(shell svn info $(1)|$(sed) -n 's/^Last Changed Rev: (.*)$$/\1/p')
|
77
|
rootRevision = $(call revision,$(root))
|
78
|
version ?= r$(rootRevision)
|
79
|
|
80
|
# rsync
|
81
|
rsync* := "time" rsync$(if $(test), --dry-run) --archive --no-group --update \
|
82
|
--verbose --itemize-changes --progress
|
83
|
rsync := $(rsync*) --exclude=".svn/" --exclude="*\#" --exclude=".DS_Store"\
|
84
|
--exclude=".lk*"
|
85
|
local := ./
|
86
|
localDirName := $(notdir $(realpath $(local)))
|
87
|
remote := $(remote_user)@$(remote_host):$(remote_basepath)/$(localDirName)/
|
88
|
|
89
|
# DB
|
90
|
mkSchemaCmd = 'CREATE SCHEMA $(1);'
|
91
|
rmSchemaCmd = 'DROP SCHEMA IF EXISTS "$(1)" CASCADE;'
|
92
|
|
93
|
##### General targets
|
94
|
|
95
|
all: # must be first target in Makefile, so add an empty version here
|
96
|
|
97
|
.SUFFIXES: # turn off built-in suffix rules
|
98
|
.SECONDARY: # don't automatically delete intermediate files
|
99
|
.DELETE_ON_ERROR: # delete target if recipe fails
|
100
|
|
101
|
_always:
|
102
|
.PHONY: _always
|
103
|
|
104
|
clean: # make sure `make clean` always works
|
105
|
|
106
|
%/remake: _always
|
107
|
$(MAKE) $(@D)/clean
|
108
|
$(MAKE) $(@D)/
|
109
|
# re-run make so that cache of existing files is reset
|
110
|
|
111
|
%-remake: _always
|
112
|
rm -f $*
|
113
|
$(MAKE) $*
|
114
|
# re-run make so that cache of existing files is reset
|
115
|
|
116
|
%/reinstall: _always %/uninstall %/install ;
|
117
|
|
118
|
# Run with `make -s` to avoid echoing make commands
|
119
|
version: _always
|
120
|
echo $(version)
|
121
|
|
122
|
##### Checksums
|
123
|
|
124
|
%.md5: %
|
125
|
nice -n +5 md5sum $<|cut -d ' ' -f 1 >$@
|
126
|
|
127
|
# Run with `make -s` to avoid echoing make commands
|
128
|
%.md5/test: %.md5 % _always
|
129
|
echo '$(shell cat $<) $*'|nice -n +5 md5sum -$(if $(isMac),v)c /dev/stdin
|
130
|
|
131
|
##### Compression
|
132
|
|
133
|
define gunzip
|
134
|
gunzip <$< >$@
|
135
|
touch -r $< $@
|
136
|
endef
|
137
|
|
138
|
%:: %.gz
|
139
|
$(if $(wildcard $@),,$(gunzip))
|
140
|
|
141
|
define gzip
|
142
|
gzip <$< >$@
|
143
|
touch -r $< $@
|
144
|
endef
|
145
|
|
146
|
ifneq ($(filter %.gz,$(MAKECMDGOALS)),)
|
147
|
%.gz: %
|
148
|
$(if $(wildcard $@),,$(gzip))
|
149
|
endif
|