Project

General

Profile

1
# Make
2
SHELL := /bin/bash
3
subMake = $(if $(wildcard $(@D)/Makefile*),$(MAKE) $(@F) --directory=$(@D),)
4

    
5
# OS
6
os := $(shell uname)
7
forOs = $(patsubst %,%-$(filter Linux Darwin,$(os)),$(1))
8

    
9
# Terminal
10
esc := '['
11
reset := $(esc)'0m'
12
emph := $(esc)'7m '
13
endEmph := ' '$(reset)
14

    
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
wait := read -p $(emph)'Press ENTER to continue:'$(endEmph) REPLY
24

    
25
done = echo; echo $(emph)"Finished $@"$(endEmph); echo
26

    
27
# Env
28
export PGOPTIONS = --client-min-messages=WARNING
29

    
30
#####
31

    
32
all: _not_file install
33

    
34
.SUFFIXES:
35

    
36
_not_file:
37
.PHONY: _not_file
38

    
39
#####
40

    
41
install: _not_file core mysql inputs test
42
	@$(done)
43

    
44
uninstall: _not_file rm_inputs rm_mysql rm_core
45

    
46
reinstall: _not_file uninstall install
47

    
48
#####
49

    
50
core: _not_file $(call forOs,postgres) postgres_user db
51
	@$(done)
52

    
53
rm_core: _not_file rm_db rm_postgres_user
54

    
55
reinstall_core: _not_file rm_core core
56

    
57
postgres-Linux: _not_file
58
	-sudo apt-get install postgresql python-dev libpq-dev
59
	-sudo apt-get install python-pip && sudo pip install psycopg2
60

    
61
postgres-Darwin: _not_file
62
	@echo $(emph)'Installing PostgreSQL on Mac OS X:'$(endEmph)
63
	@echo 'Download it using the topmost "Mac OS X" link at http://http://www.enterprisedb.com/products-services-training/pgdownload'
64
	@echo 'Open the disk image'
65
	@echo 'Run the installer in it'
66
	@$(wait)
67

    
68
postgres-: _not_file # other OSes
69

    
70
psqlOpts := --set ON_ERROR_STOP=1 --quiet
71
psqlAsAdmin := sudo -u postgres psql $(psqlOpts)
72
psqlAsBien := ./util/psql_vegbien $(psqlOpts)
73
bienPassword := $(shell cat util/bien_password)
74

    
75
postgres_user: _not_file
76
	-echo "CREATE USER bien PASSWORD '$(bienPassword)';"|$(psqlAsAdmin)
77
# ignore errors about user existing
78

    
79
rm_postgres_user: _not_file
80
	echo "DROP USER IF EXISTS bien;"|$(psqlAsAdmin)
81

    
82
#####
83

    
84
db: _not_file
85
	$(psqlAsAdmin) <../mappings/schemas/vegbien.sql
86

    
87
rm_db: _not_file
88
	echo "DROP DATABASE IF EXISTS vegbien;"|$(psqlAsAdmin)
89

    
90
reinstall_db: _not_file rm_db db
91

    
92
empty_db: _not_file
93
	$(psqlAsBien) <../mappings/schemas/vegbien_empty.sql
94

    
95
#####
96

    
97
mysql: _not_file $(call forOs,mysql) mysql_user
98
	@$(done)
99

    
100
rm_mysql: _not_file rm_mysql_user
101

    
102
mysql-Linux: _not_file
103
	@echo $(emph)"If asked for MySQL root password, enter $(bienPassword)"$(endEmph)
104
	@$(wait)
105
	-sudo apt-get install mysql-server mysql-client python-mysqldb
106

    
107
mysql-Darwin: _not_file
108
	@echo $(emph)'Installing MySQLdb Python driver on Mac OS X 10.7 (may work on other versions):'$(endEmph)
109
	@echo 'Download it using "latest version" link at http://sourceforge.net/projects/mysql-python/files/'
110
	@echo 'Extract the archive'
111
	@echo '(From http://www.rustyrazorblade.com/2011/11/installing-mysqldb-on-macos-lion/:)'
112
	@echo 'Run sudo ln -s /usr/local/mysql/lib/libmysqlclient.18.dylib /usr/lib/libmysqlclient.18.dylib'
113
	@echo 'Run sudo ln -s /usr/local/mysql/lib /usr/local/mysql/lib/mysql'
114
	@echo '(From http://blog.infoentropy.com/MySQL-python_EnvironmentError_mysql_config_not_found:)'
115
	@echo 'Edit site.cfg and change the line like "mysql_config = " to "mysql_config = /usr/local/mysql/bin/mysql_config"'
116
	@echo '(From http://www.mangoorange.com/2008/08/01/installing-python-mysqldb-122-on-mac-os-x/:)'
117
	@echo 'Change to the directory of the extracted files'
118
	@echo 'Run sudo python setup.py clean'
119
	@echo 'Run sudo python setup.py build'
120
	@echo 'Run sudo python setup.py install'
121
	@echo "Run python -c 'import MySQLdb'"
122
	@$(wait)
123

    
124
mysql-: _not_file # other OSes
125

    
126
mysqlAsRoot := mysql --user=root --password='$(bienPassword)'
127

    
128
mysql_user: _not_file
129
	-$($@_cmd)
130
# ignore errors about user existing
131
mysql_user_cmd = echo "CREATE USER 'bien'@'localhost' IDENTIFIED BY \
132
'$(bienPassword)';"|$(mysqlAsRoot)
133

    
134
rm_mysql_user: _not_file
135
	-echo "DROP USER 'bien'@'localhost';"|$(mysqlAsRoot)
136
# ignore errors about user not existing
137

    
138
#####
139

    
140
inputs := $(wildcard inputs/*/)
141

    
142
inputs: _not_file $(inputs:%=%install)
143

    
144
rm_inputs: _not_file $(inputs:%=%uninstall)
145

    
146
inputs/%: _not_file
147
	-$(subMake)
148
# ignore errors in sub-makes
149

    
150
#####
151

    
152
test: _not_file test-map
153
	@$(done)
154

    
155
test-%: _not_file
156
	./test/$(*F)
(1-1/3)