Project

General

Profile

1 3697 aaronmk
##### Configuration
2
3 7557 aaronmk
remote_user ?= $(USER)
4 7564 aaronmk
remote_host ?= jupiter
5
remote_basepath ?= /data/dev/aaronmk/bien
6 3697 aaronmk
test ?=
7
8
##### Vars/functions
9
10
# Make
11 3763 aaronmk
null :=
12
space := $(null) $(null)
13 5483 aaronmk
comma := ,
14 7046 aaronmk
and = $(if $(1),$(2))
15
or = $(1)$(2)
16
not = $(if $(1),,1)
17 8271 aaronmk
require_var = $(if $($(1)),,$(error requires var $$$(1)))
18 3697 aaronmk
pathParts = $(shell path="$(1)"; echo "$${path%%/*}" "$${path\#*/}")
19
topDir = $(word 1,$(pathParts))
20
subPath = $(word 2,$(pathParts))
21 7081 aaronmk
subMake = $(MAKE) $(call subPath,$@) --directory=$(call topDir,$@)
22 3697 aaronmk
# input.Makefile path is relative to subdir
23
24 3763 aaronmk
# Formatting
25 5452 aaronmk
sed = sed -$(if $(filter Darwin,$(os)),E,r)
26 3763 aaronmk
_2Space = $(subst _,$(space),$(1))
27
*2Space = $(call _2Space,$*)
28 7385 aaronmk
ucase = $(shell echo "$(1)"|tr "[a-z]" "[A-Z]")
29
ci = $(1) $(ucase)
30 3763 aaronmk
31 3792 aaronmk
# Filesystem
32 5913 aaronmk
wildcard/ = $(shell bash -c 'shopt -s nullglob; echo $(1)')
33 4136 aaronmk
    # needed because builtin $(wildcard) doesn't do / suffix correctly
34 4602 aaronmk
no/ = $(1:/=)# remove trailing /
35 4603 aaronmk
+w = $(wildcard $+)# existing items in $+
36 3794 aaronmk
CP := cp -p
37
cp = $(CP) $< $@
38 7381 aaronmk
mkdir = $(if $(wildcard $(1)),,mkdir -p $(1))
39 3792 aaronmk
40 6915 aaronmk
# File editing
41
sudoAppend = echo $$'$(2)'|sudo tee -a $(1) >/dev/null
42
43 5451 aaronmk
# System
44 5458 aaronmk
os := $(shell uname)
45 6965 aaronmk
isMac := $(filter Darwin,$(os))
46 5458 aaronmk
forOs = $(patsubst %,%-$(filter Linux Darwin,$(os)),$(1))
47 6966 aaronmk
dateFmt := %-Y-%-m-%-d %-H:%M:%S %Z
48
date = $(shell date +"$(dateFmt)")
49 6967 aaronmk
mtime = $(shell $(if $(isMac),stat -f %Sm -t "$(dateFmt)" $(1),date\
50
--reference=$(1) +"$(dateFmt)"))
51 5451 aaronmk
52 6915 aaronmk
# 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 6978 aaronmk
# Requires `SHELL := /bin/bash`
65 6915 aaronmk
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 5460 aaronmk
## SVN
70
71 4222 aaronmk
addFile = $(if $(wildcard $(1)),,touch $(1) && )svn add $(1)
72 3697 aaronmk
addDir = $(if $(wildcard $(1)/),svn add --depth=empty $(1),svn mkdir $(1))
73 5939 aaronmk
add* = $(if $(1),svn add --depth=empty $(1))
74 5460 aaronmk
75
# Revisions
76 5454 aaronmk
revision = $(shell svn info $(1)|$(sed) -n 's/^Last Changed Rev: (.*)$$/\1/p')
77 5455 aaronmk
rootRevision = $(call revision,$(root))
78 6927 aaronmk
version ?= r$(rootRevision)
79 3697 aaronmk
80
# rsync
81 7569 aaronmk
rsync* := "time" rsync$(if $(test), --dry-run) --archive --no-group --update \
82
--verbose --itemize-changes --progress
83 7728 aaronmk
rsync := $(rsync*) --exclude=".svn/" --exclude="*\#" --exclude=".DS_Store"\
84
--exclude=".lk*"
85 3697 aaronmk
local := ./
86 3700 aaronmk
localDirName := $(notdir $(realpath $(local)))
87 7558 aaronmk
remote := $(remote_user)@$(remote_host):$(remote_basepath)/$(localDirName)/
88 3697 aaronmk
89 6915 aaronmk
# DB
90
mkSchemaCmd = 'CREATE SCHEMA $(1);'
91
rmSchemaCmd = 'DROP SCHEMA IF EXISTS "$(1)" CASCADE;'
92
93 3697 aaronmk
##### General targets
94
95 3765 aaronmk
all: # must be first target in Makefile, so add an empty version here
96 3697 aaronmk
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 3765 aaronmk
104
clean: # make sure `make clean` always works
105 6929 aaronmk
106 7076 aaronmk
# Run with `make -s` to avoid echoing make commands
107 6929 aaronmk
version: _always
108
	echo $(version)
109 7559 aaronmk
110
##### Checksums
111
112
%.md5: %
113
	nice -n +5 md5sum $<|cut -d ' ' -f 1 >$@
114
115
# Run with `make -s` to avoid echoing make commands
116
%.md5/test: %.md5 % _always
117
	echo '$(shell cat $<)  $*'|nice -n +5 md5sum -$(if $(isMac),v)c /dev/stdin
118 8269 aaronmk
119
##### Compression
120
121 8767 aaronmk
define gunzip
122
gunzip <$< >$@
123
touch -r $@ $<
124
endef
125
126 8269 aaronmk
%:: %.gz
127 8767 aaronmk
	$(if $(wildcard $@),,$(gunzip))
128 8269 aaronmk
129 8767 aaronmk
define gzip
130
gzip <$< >$@
131
touch -r $@ $<
132
endef
133
134 8269 aaronmk
ifneq ($(filter %.gz,$(MAKECMDGOALS)),)
135
%.gz: %
136 8767 aaronmk
	$(if $(wildcard $@),,$(gzip))
137 8269 aaronmk
endif