To create a dump of MySQL database
mysqldump -u root -p BANK > BANK.sql
To Import the Database:
mysql -u root -p BANK < BANK.sql
Note Always import database while working and after a fresh commit and Create A dump whenever changes are made in MySQL Database and then commit
make
This will auto compile the final file
If there is need to clean up the build use
make clean