1 |
244
|
aaronmk
|
# Make
|
2 |
247
|
aaronmk
|
SHELL := /bin/bash
|
3 |
259
|
aaronmk
|
subMake = $(if $(wildcard $(@D)/Makefile*),$(MAKE) $(@F) --directory=$(@D),)
|
4 |
244
|
aaronmk
|
|
5 |
245
|
aaronmk
|
# OS
|
6 |
247
|
aaronmk
|
os := $(shell uname)
|
7 |
245
|
aaronmk
|
forOs = $(patsubst %,%-$(filter Linux Darwin,$(os)),$(1))
|
8 |
|
|
|
9 |
241
|
aaronmk
|
# Terminal
|
10 |
247
|
aaronmk
|
esc := '['
|
11 |
|
|
reset := $(esc)'0m'
|
12 |
|
|
emph := $(esc)'7m '
|
13 |
|
|
endEmph := ' '$(reset)
|
14 |
245
|
aaronmk
|
|
15 |
|
|
# User interaction
|
16 |
|
|
|
17 |
|
|
confirm = $(shell read -p $(emph)"$(1) (y/n)"$(endEmph) REPLY; \
|
18 |
|
|
test "$REPLY" = y && echo t)
|
19 |
|
|
|
20 |
|
|
getPassword = $(shell read -s -p $(emph)"Enter your $(1) password:"$(endEmph) \
|
21 |
|
|
REPLY; echo >&2; echo -n "$REPLY")
|
22 |
|
|
|
23 |
247
|
aaronmk
|
wait := read -p $(emph)'Press ENTER to continue:'$(endEmph) REPLY
|
24 |
245
|
aaronmk
|
|
25 |
249
|
aaronmk
|
done = echo; echo $(emph)"Finished $@"$(endEmph); echo
|
26 |
235
|
aaronmk
|
|
27 |
241
|
aaronmk
|
# Env
|
28 |
225
|
aaronmk
|
export PGOPTIONS = --client-min-messages=WARNING
|
29 |
|
|
|
30 |
241
|
aaronmk
|
#####
|
31 |
225
|
aaronmk
|
|
32 |
235
|
aaronmk
|
all: _not_file install
|
33 |
228
|
aaronmk
|
|
34 |
225
|
aaronmk
|
.SUFFIXES:
|
35 |
|
|
|
36 |
235
|
aaronmk
|
_not_file:
|
37 |
|
|
.PHONY: _not_file
|
38 |
202
|
aaronmk
|
|
39 |
241
|
aaronmk
|
#####
|
40 |
|
|
|
41 |
245
|
aaronmk
|
install: _not_file core mysql inputs test
|
42 |
241
|
aaronmk
|
@$(done)
|
43 |
202
|
aaronmk
|
|
44 |
250
|
aaronmk
|
uninstall: _not_file rm_inputs rm_mysql rm_core
|
45 |
241
|
aaronmk
|
|
46 |
235
|
aaronmk
|
reinstall: _not_file uninstall install
|
47 |
225
|
aaronmk
|
|
48 |
241
|
aaronmk
|
#####
|
49 |
202
|
aaronmk
|
|
50 |
284
|
aaronmk
|
core: _not_file $(call forOs,python postgres) postgres_user db
|
51 |
241
|
aaronmk
|
@$(done)
|
52 |
235
|
aaronmk
|
|
53 |
241
|
aaronmk
|
rm_core: _not_file rm_db rm_postgres_user
|
54 |
|
|
|
55 |
|
|
reinstall_core: _not_file rm_core core
|
56 |
|
|
|
57 |
284
|
aaronmk
|
python-Linux: _not_file
|
58 |
|
|
-sudo apt-get install python-dev python-dateutil python-pip
|
59 |
|
|
|
60 |
|
|
python-Darwin: _not_file
|
61 |
|
|
@echo $(emph)'Installing python-dateutil on Mac OS X:'$(endEmph)
|
62 |
|
|
@echo 'Download it: http://labix.org/download/python-dateutil/python-dateutil-1.5.tar.gz'
|
63 |
|
|
@echo 'Extract the archive'
|
64 |
|
|
@echo 'Change to the directory of the extracted files'
|
65 |
|
|
@echo 'Run python setup.py build'
|
66 |
|
|
@echo 'Run sudo python setup.py install'
|
67 |
|
|
@echo "Run python -c 'import dateutil'"
|
68 |
|
|
@$(wait)
|
69 |
|
|
|
70 |
235
|
aaronmk
|
postgres-Linux: _not_file
|
71 |
284
|
aaronmk
|
-sudo apt-get install postgresql libpq-dev
|
72 |
|
|
-sudo pip install psycopg2
|
73 |
235
|
aaronmk
|
|
74 |
254
|
aaronmk
|
postgres-Darwin: _not_file
|
75 |
|
|
@echo $(emph)'Installing PostgreSQL on Mac OS X:'$(endEmph)
|
76 |
|
|
@echo 'Download it using the topmost "Mac OS X" link at http://http://www.enterprisedb.com/products-services-training/pgdownload'
|
77 |
|
|
@echo 'Open the disk image'
|
78 |
|
|
@echo 'Run the installer in it'
|
79 |
|
|
@$(wait)
|
80 |
235
|
aaronmk
|
|
81 |
241
|
aaronmk
|
postgres-: _not_file # other OSes
|
82 |
|
|
|
83 |
247
|
aaronmk
|
psqlOpts := --set ON_ERROR_STOP=1 --quiet
|
84 |
249
|
aaronmk
|
psqlAsAdmin := sudo -u postgres psql $(psqlOpts)
|
85 |
274
|
aaronmk
|
psqlAsBien := ./bin/psql_vegbien $(psqlOpts)
|
86 |
272
|
aaronmk
|
bienPassword := $(shell cat config/bien_password)
|
87 |
241
|
aaronmk
|
|
88 |
|
|
postgres_user: _not_file
|
89 |
249
|
aaronmk
|
-echo "CREATE USER bien PASSWORD '$(bienPassword)';"|$(psqlAsAdmin)
|
90 |
241
|
aaronmk
|
# ignore errors about user existing
|
91 |
|
|
|
92 |
|
|
rm_postgres_user: _not_file
|
93 |
|
|
echo "DROP USER IF EXISTS bien;"|$(psqlAsAdmin)
|
94 |
|
|
|
95 |
|
|
#####
|
96 |
|
|
|
97 |
|
|
db: _not_file
|
98 |
275
|
aaronmk
|
$(psqlAsAdmin) <mappings/schemas/vegbien.sql
|
99 |
241
|
aaronmk
|
|
100 |
|
|
rm_db: _not_file
|
101 |
|
|
echo "DROP DATABASE IF EXISTS vegbien;"|$(psqlAsAdmin)
|
102 |
|
|
|
103 |
|
|
reinstall_db: _not_file rm_db db
|
104 |
|
|
|
105 |
|
|
empty_db: _not_file
|
106 |
275
|
aaronmk
|
$(psqlAsBien) <mappings/schemas/vegbien_empty.sql
|
107 |
241
|
aaronmk
|
|
108 |
|
|
#####
|
109 |
|
|
|
110 |
245
|
aaronmk
|
mysql: _not_file $(call forOs,mysql) mysql_user
|
111 |
241
|
aaronmk
|
@$(done)
|
112 |
|
|
|
113 |
245
|
aaronmk
|
rm_mysql: _not_file rm_mysql_user
|
114 |
241
|
aaronmk
|
|
115 |
235
|
aaronmk
|
mysql-Linux: _not_file
|
116 |
244
|
aaronmk
|
@echo $(emph)"If asked for MySQL root password, enter $(bienPassword)"$(endEmph)
|
117 |
238
|
aaronmk
|
@$(wait)
|
118 |
237
|
aaronmk
|
-sudo apt-get install mysql-server mysql-client python-mysqldb
|
119 |
235
|
aaronmk
|
|
120 |
|
|
mysql-Darwin: _not_file
|
121 |
244
|
aaronmk
|
@echo $(emph)'Installing MySQLdb Python driver on Mac OS X 10.7 (may work on other versions):'$(endEmph)
|
122 |
235
|
aaronmk
|
@echo 'Download it using "latest version" link at http://sourceforge.net/projects/mysql-python/files/'
|
123 |
|
|
@echo 'Extract the archive'
|
124 |
|
|
@echo '(From http://www.rustyrazorblade.com/2011/11/installing-mysqldb-on-macos-lion/:)'
|
125 |
284
|
aaronmk
|
@echo 'Run ln -s /usr/local/mysql/lib/libmysqlclient.18.dylib /usr/lib/libmysqlclient.18.dylib'
|
126 |
|
|
@echo 'Run ln -s /usr/local/mysql/lib /usr/local/mysql/lib/mysql'
|
127 |
235
|
aaronmk
|
@echo '(From http://blog.infoentropy.com/MySQL-python_EnvironmentError_mysql_config_not_found:)'
|
128 |
|
|
@echo 'Edit site.cfg and change the line like "mysql_config = " to "mysql_config = /usr/local/mysql/bin/mysql_config"'
|
129 |
|
|
@echo '(From http://www.mangoorange.com/2008/08/01/installing-python-mysqldb-122-on-mac-os-x/:)'
|
130 |
|
|
@echo 'Change to the directory of the extracted files'
|
131 |
284
|
aaronmk
|
@echo 'Run python setup.py clean'
|
132 |
|
|
@echo 'Run python setup.py build'
|
133 |
235
|
aaronmk
|
@echo 'Run sudo python setup.py install'
|
134 |
|
|
@echo "Run python -c 'import MySQLdb'"
|
135 |
238
|
aaronmk
|
@$(wait)
|
136 |
235
|
aaronmk
|
|
137 |
241
|
aaronmk
|
mysql-: _not_file # other OSes
|
138 |
235
|
aaronmk
|
|
139 |
247
|
aaronmk
|
mysqlAsRoot := mysql --user=root --password='$(bienPassword)'
|
140 |
235
|
aaronmk
|
|
141 |
241
|
aaronmk
|
mysql_user: _not_file
|
142 |
|
|
-$($@_cmd)
|
143 |
|
|
# ignore errors about user existing
|
144 |
244
|
aaronmk
|
mysql_user_cmd = echo "CREATE USER 'bien'@'localhost' IDENTIFIED BY \
|
145 |
245
|
aaronmk
|
'$(bienPassword)';"|$(mysqlAsRoot)
|
146 |
202
|
aaronmk
|
|
147 |
241
|
aaronmk
|
rm_mysql_user: _not_file
|
148 |
245
|
aaronmk
|
-echo "DROP USER 'bien'@'localhost';"|$(mysqlAsRoot)
|
149 |
241
|
aaronmk
|
# ignore errors about user not existing
|
150 |
202
|
aaronmk
|
|
151 |
241
|
aaronmk
|
#####
|
152 |
202
|
aaronmk
|
|
153 |
268
|
aaronmk
|
inputs := $(wildcard inputs/*/)
|
154 |
245
|
aaronmk
|
|
155 |
259
|
aaronmk
|
inputs: _not_file $(inputs:%=%install)
|
156 |
250
|
aaronmk
|
|
157 |
259
|
aaronmk
|
rm_inputs: _not_file $(inputs:%=%uninstall)
|
158 |
250
|
aaronmk
|
|
159 |
268
|
aaronmk
|
inputs/%: _not_file
|
160 |
250
|
aaronmk
|
-$(subMake)
|
161 |
|
|
# ignore errors in sub-makes
|
162 |
|
|
|
163 |
245
|
aaronmk
|
#####
|
164 |
|
|
|
165 |
241
|
aaronmk
|
test: _not_file test-map
|
166 |
|
|
@$(done)
|
167 |
202
|
aaronmk
|
|
168 |
235
|
aaronmk
|
test-%: _not_file
|
169 |
176
|
aaronmk
|
./test/$(*F)
|