Project

General

Profile

1 784 aaronmk
##### Vars/functions
2
3 244 aaronmk
# Make
4 247 aaronmk
SHELL := /bin/bash
5 625 aaronmk
pathParts = $(shell path="$(1)"; echo "$${path%%/*}" "$${path\#*/}")
6 739 aaronmk
topDir = $(word 1,$(pathParts))
7
subPath = $(word 2,$(pathParts))
8 625 aaronmk
subMake = $(MAKE) $(call subPath,$@) --directory=$(call topDir,$@)
9 244 aaronmk
10 245 aaronmk
# OS
11 247 aaronmk
os := $(shell uname)
12 245 aaronmk
forOs = $(patsubst %,%-$(filter Linux Darwin,$(os)),$(1))
13
14 241 aaronmk
# Terminal
15 247 aaronmk
esc := '['
16
reset := $(esc)'0m'
17
emph := $(esc)'7m '
18
endEmph := ' '$(reset)
19 245 aaronmk
20
# User interaction
21
22
confirm = $(shell read -p $(emph)"$(1) (y/n)"$(endEmph) REPLY; \
23
test "$REPLY" = y && echo t)
24
25
getPassword = $(shell read -s -p $(emph)"Enter your $(1) password:"$(endEmph) \
26
REPLY; echo >&2; echo -n "$REPLY")
27
28 247 aaronmk
wait := read -p $(emph)'Press ENTER to continue:'$(endEmph) REPLY
29 245 aaronmk
30 249 aaronmk
done = echo; echo $(emph)"Finished $@"$(endEmph); echo
31 235 aaronmk
32 335 aaronmk
# File editing
33
sudoAppend = echo $$'$(2)'|sudo tee -a $(1) >/dev/null
34
35 784 aaronmk
##### Environment
36
37 225 aaronmk
export PGOPTIONS = --client-min-messages=WARNING
38
39 784 aaronmk
##### General targets
40 225 aaronmk
41 414 aaronmk
all:
42 228 aaronmk
43 1260 aaronmk
.SUFFIXES: # turn off built-in suffix rules
44
.SECONDARY: # don't automatically delete intermediate files
45 1354 aaronmk
.DELETE_ON_ERROR: # delete target if recipe fails
46 225 aaronmk
47 383 aaronmk
_always:
48
.PHONY: _always
49 202 aaronmk
50 1274 aaronmk
remake: _always clean
51
	$(MAKE)
52
# re-run make so that cache of existing files is reset
53
54 1288 aaronmk
%/remake: _always
55
	$(MAKE) $(@D)/clean
56
	$(MAKE) $(@D)/
57
# re-run make so that cache of existing files is reset
58
59 402 aaronmk
define subdirTargets
60
$(subdir): _always
61
	+$$(subMake)
62 388 aaronmk
63 402 aaronmk
$(subdir)%: _always
64
	+$$(subMake)
65
endef
66
$(foreach subdir,$(wildcard */),$(eval $(subdirTargets)))
67 388 aaronmk
68 416 aaronmk
Makefile: ;
69
70 414 aaronmk
%: $(addsuffix %,$(dir $(shell echo */Makefile))) _always ;
71
72 784 aaronmk
##### Installation
73 241 aaronmk
74 411 aaronmk
install: _always core mysql inputs/install test
75 241 aaronmk
	@$(done)
76 202 aaronmk
77 418 aaronmk
uninstall: _always inputs/uninstall rm_mysql rm_core ;
78 241 aaronmk
79 418 aaronmk
reinstall: _always uninstall install ;
80 225 aaronmk
81 784 aaronmk
##### Core: VegBIEN DB and dependencies
82 202 aaronmk
83 383 aaronmk
core: _always $(call forOs,python postgres) postgres_user db
84 241 aaronmk
	@$(done)
85 235 aaronmk
86 418 aaronmk
rm_core: _always rm_db rm_postgres_user ;
87 241 aaronmk
88 418 aaronmk
reinstall_core: _always rm_core core ;
89 241 aaronmk
90 784 aaronmk
##### Python
91
92 383 aaronmk
python-Linux: _always
93 1255 aaronmk
	-sudo apt-get install python python-dev python-dateutil python-profiler\
94 1375 aaronmk
python-pip pymetrics
95 284 aaronmk
96 383 aaronmk
python-Darwin: _always
97 284 aaronmk
	@echo $(emph)'Installing python-dateutil on Mac OS X:'$(endEmph)
98
	@echo 'Download it: http://labix.org/download/python-dateutil/python-dateutil-1.5.tar.gz'
99
	@echo 'Extract the archive'
100
	@echo 'Change to the directory of the extracted files'
101
	@echo 'Run python setup.py build'
102
	@echo 'Run sudo python setup.py install'
103
	@echo "Run python -c 'import dateutil'"
104
	@$(wait)
105
106 784 aaronmk
##### PostgreSQL
107
108 337 aaronmk
editPhppgadminApacheConf = echo $$'1\n,s/\# \(allow from all\)/\1/\nwq'|\
109 336 aaronmk
sudo ed --loose-exit-status --verbose /etc/phppgadmin/apache.conf
110 334 aaronmk
111
apacheConf := /etc/apache2/apache2.conf
112
apacheConfPhppgadminLine := Include /etc/phppgadmin/apache.conf
113
editApacheConfForPhppgadmin =\
114
$(if $(shell grep -F "$(apacheConfPhppgadminLine)" $(apacheConf)),,\
115
$(call sudoAppend,$(apacheConf),\n$(apacheConfPhppgadminLine)))
116
117 335 aaronmk
nonApacheOnPort80 = $(shell sudo lsof -i :80|tail -n +2|grep -v -F apache2)
118 336 aaronmk
editApachePortsConf = echo $$'1\n,s/\\b80\\b/8080/g\nwq'|\
119
sudo ed --loose-exit-status --verbose /etc/apache2/ports.conf
120 334 aaronmk
121 383 aaronmk
postgres-Linux: _always
122 329 aaronmk
	-sudo apt-get install postgresql libpq-dev phppgadmin
123 336 aaronmk
	$(editPhppgadminApacheConf)
124 334 aaronmk
	$(editApacheConfForPhppgadmin)
125 336 aaronmk
	$(if $(nonApacheOnPort80),$(editApachePortsConf))
126 334 aaronmk
	-sudo apache2ctl restart
127 284 aaronmk
	-sudo pip install psycopg2
128 334 aaronmk
# ignore errors if conf files already edited
129 235 aaronmk
130 383 aaronmk
postgres-Darwin: _always
131 254 aaronmk
	@echo $(emph)'Installing PostgreSQL on Mac OS X:'$(endEmph)
132
	@echo 'Download it using the topmost "Mac OS X" link at http://http://www.enterprisedb.com/products-services-training/pgdownload'
133
	@echo 'Open the disk image'
134
	@echo 'Run the installer in it'
135
	@$(wait)
136 235 aaronmk
137 418 aaronmk
postgres-: _always ; # other OSes
138 241 aaronmk
139 247 aaronmk
psqlOpts := --set ON_ERROR_STOP=1 --quiet
140 249 aaronmk
psqlAsAdmin := sudo -u postgres psql $(psqlOpts)
141 274 aaronmk
psqlAsBien := ./bin/psql_vegbien $(psqlOpts)
142 272 aaronmk
bienPassword := $(shell cat config/bien_password)
143 241 aaronmk
144 383 aaronmk
postgres_user: _always
145 249 aaronmk
	-echo "CREATE USER bien PASSWORD '$(bienPassword)';"|$(psqlAsAdmin)
146 364 aaronmk
# ignore errors if user exists
147 241 aaronmk
148 383 aaronmk
rm_postgres_user: _always
149 241 aaronmk
	echo "DROP USER IF EXISTS bien;"|$(psqlAsAdmin)
150
151 784 aaronmk
##### VegBIEN DB
152 241 aaronmk
153 389 aaronmk
db: _always schemas/vegbien.sql
154 383 aaronmk
	-$($@_create_cmd)
155 389 aaronmk
	$(psqlAsBien) <schemas/vegbien.sql
156 364 aaronmk
# ignore errors if database exists
157 383 aaronmk
db_create_cmd = echo "CREATE DATABASE vegbien OWNER bien ENCODING 'UTF8' \
158 381 aaronmk
TEMPLATE template1;"|$(psqlAsAdmin)
159 241 aaronmk
160 383 aaronmk
rm_db: _always
161 241 aaronmk
	echo "DROP DATABASE IF EXISTS vegbien;"|$(psqlAsAdmin)
162
163 418 aaronmk
reinstall_db: _always rm_db db ;
164 241 aaronmk
165 389 aaronmk
empty_db: _always schemas/vegbien_empty.sql
166
	$(psqlAsBien) <schemas/vegbien_empty.sql
167 241 aaronmk
168 784 aaronmk
##### MySQL
169 241 aaronmk
170 383 aaronmk
mysql: _always $(call forOs,mysql) mysql_user
171 241 aaronmk
	@$(done)
172
173 418 aaronmk
rm_mysql: _always rm_mysql_user ;
174 241 aaronmk
175 383 aaronmk
mysql-Linux: _always
176 244 aaronmk
	@echo $(emph)"If asked for MySQL root password, enter $(bienPassword)"$(endEmph)
177 238 aaronmk
	@$(wait)
178 237 aaronmk
	-sudo apt-get install mysql-server mysql-client python-mysqldb
179 235 aaronmk
180 383 aaronmk
mysql-Darwin: _always
181 244 aaronmk
	@echo $(emph)'Installing MySQLdb Python driver on Mac OS X 10.7 (may work on other versions):'$(endEmph)
182 235 aaronmk
	@echo 'Download it using "latest version" link at http://sourceforge.net/projects/mysql-python/files/'
183
	@echo 'Extract the archive'
184
	@echo '(From http://www.rustyrazorblade.com/2011/11/installing-mysqldb-on-macos-lion/:)'
185 284 aaronmk
	@echo 'Run ln -s /usr/local/mysql/lib/libmysqlclient.18.dylib /usr/lib/libmysqlclient.18.dylib'
186
	@echo 'Run ln -s /usr/local/mysql/lib /usr/local/mysql/lib/mysql'
187 235 aaronmk
	@echo '(From http://blog.infoentropy.com/MySQL-python_EnvironmentError_mysql_config_not_found:)'
188
	@echo 'Edit site.cfg and change the line like "mysql_config = " to "mysql_config = /usr/local/mysql/bin/mysql_config"'
189
	@echo '(From http://www.mangoorange.com/2008/08/01/installing-python-mysqldb-122-on-mac-os-x/:)'
190
	@echo 'Change to the directory of the extracted files'
191 284 aaronmk
	@echo 'Run python setup.py clean'
192
	@echo 'Run python setup.py build'
193 235 aaronmk
	@echo 'Run sudo python setup.py install'
194
	@echo "Run python -c 'import MySQLdb'"
195 238 aaronmk
	@$(wait)
196 235 aaronmk
197 383 aaronmk
mysql-: _always # other OSes
198 235 aaronmk
199 247 aaronmk
mysqlAsRoot := mysql --user=root --password='$(bienPassword)'
200 235 aaronmk
201 383 aaronmk
mysql_user: _always
202 241 aaronmk
	-$($@_cmd)
203 364 aaronmk
# ignore errors if user exists
204 244 aaronmk
mysql_user_cmd = echo "CREATE USER 'bien'@'localhost' IDENTIFIED BY \
205 245 aaronmk
'$(bienPassword)';"|$(mysqlAsRoot)
206 202 aaronmk
207 383 aaronmk
rm_mysql_user: _always
208 245 aaronmk
	-echo "DROP USER 'bien'@'localhost';"|$(mysqlAsRoot)
209 364 aaronmk
# ignore errors if user exists
210 202 aaronmk
211 784 aaronmk
##### Datasources
212 202 aaronmk
213 418 aaronmk
inputs: _always inputs/all ;
214 245 aaronmk
215 418 aaronmk
import: _always inputs/import ;
216 250 aaronmk
217 1458 aaronmk
verify: _always inputs/verify
218 1241 aaronmk
	@$(done)
219 386 aaronmk
220 1458 aaronmk
test: _always inputs/test
221 397 aaronmk
	@$(done)
222 1458 aaronmk
223
##### Testing
224
225
test-all: _always remake test
226
	@$(done)