5 SQL_PASSWORD = bjIcRpru
7 DC_DIR = /projects/helm/library/dc/
10 mysql -h $(SQL_HOST) -u $(SQL_USER) --password=$(SQL_PASSWORD) $(SQL_DB)
15 @echo " make create_tables"
17 @echo " make drop_tables"
23 $(SQL_ENGINE) < $(SQL_DIR)/create_dc_tables.sql
26 find $(DC_DIR) -name "*.xml" -exec ./fill_db.pl {} \; | $(SQL_ENGINE)
29 $(SQL_ENGINE) < $(SQL_DIR)/drop_dc_tables.sql
31 .PHONY: all connect create_tables fill_db drop_tables