13 lines
418 B
Makefile
13 lines
418 B
Makefile
all: init_database import_csv_macro_table split_into_tables
|
|
|
|
init_database: init_database.mysql
|
|
sudo mysql < init_database.mysql
|
|
|
|
import_csv_macro_table: import_csv_macro_table.mysql
|
|
mysql -u efrei -pefrei -D bdd_project < import_csv_macro_table.mysql
|
|
|
|
split_into_tables: split_into_tables.mysql
|
|
mysql -u efrei -pefrei -D bdd_project < split_into_tables.mysql
|
|
|
|
clean:
|
|
echo 'DROP DATABASE bdd_project' | sudo mysql
|