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 python-dev libpq-dev
59
	-sudo apt-get install python-pip && sudo pip install psycopg2
60

    
61
postgres-Darwin: _not_file # TODO: implement this
62

    
63
postgres-: _not_file # other OSes
64

    
65
psqlOpts := --set ON_ERROR_STOP=1 --quiet
66
psqlAsAdmin := sudo -u postgres psql $(psqlOpts)
67
psqlAsBien := ./util/psql_vegbien $(psqlOpts)
68
bienPassword := $(shell cat util/bien_password)
69

    
70
postgres_user: _not_file
71
	-echo "CREATE USER bien PASSWORD '$(bienPassword)';"|$(psqlAsAdmin)
72
# ignore errors about user existing
73

    
74
rm_postgres_user: _not_file
75
	echo "DROP USER IF EXISTS bien;"|$(psqlAsAdmin)
76

    
77
#####
78

    
79
db: _not_file
80
	$(psqlAsAdmin) <../mappings/schemas/vegbien.sql
81

    
82
rm_db: _not_file
83
	echo "DROP DATABASE IF EXISTS vegbien;"|$(psqlAsAdmin)
84

    
85
reinstall_db: _not_file rm_db db
86

    
87
empty_db: _not_file
88
	$(psqlAsBien) <../mappings/schemas/vegbien_empty.sql
89

    
90
#####
91

    
92
mysql: _not_file $(call forOs,mysql) mysql_user
93
	@$(done)
94

    
95
rm_mysql: _not_file rm_mysql_user
96

    
97
mysql-Linux: _not_file
98
	@echo $(emph)"If asked for MySQL root password, enter $(bienPassword)"$(endEmph)
99
	@$(wait)
100
	-sudo apt-get install mysql-server mysql-client python-mysqldb
101

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

    
119
mysql-: _not_file # other OSes
120

    
121
mysqlAsRoot := mysql --user=root --password='$(bienPassword)'
122

    
123
mysql_user: _not_file
124
	-$($@_cmd)
125
# ignore errors about user existing
126
mysql_user_cmd = echo "CREATE USER 'bien'@'localhost' IDENTIFIED BY \
127
'$(bienPassword)';"|$(mysqlAsRoot)
128

    
129
rm_mysql_user: _not_file
130
	-echo "DROP USER 'bien'@'localhost';"|$(mysqlAsRoot)
131
# ignore errors about user not existing
132

    
133
#####
134

    
135
inputsDir := ../../inputs
136
inputs := $(wildcard $(inputsDir)/*/)
137

    
138
inputs: _not_file $(inputs:%=%!install)
139

    
140
$(inputsDir)/%/!install: _not_file
141
	-$(subMake)
142
# ignore errors in sub-makes
143

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

    
146
$(inputsDir)/%/!uninstall: _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)