Project

General

Profile

1 785 aaronmk
##### Vars/functions
2
3 387 aaronmk
# OS
4
os = $(shell uname)
5
6
SED = sed -$(if $(filter Darwin,$(os)),E,r)
7
8 785 aaronmk
##### General targets
9 387 aaronmk
10 692 aaronmk
all = vegbien.sql vegbien_empty.sql vegbien.my.sql
11 387 aaronmk
12 418 aaronmk
all: _always $(all) ;
13 387 aaronmk
14 1260 aaronmk
.SUFFIXES: # turn off built-in suffix rules
15
.SECONDARY: # don't automatically delete intermediate files
16 387 aaronmk
17
_always:
18
.PHONY: _always
19
20
clean: _always
21
	$(RM) $(all)
22
23
%:: %.make
24
	./$< >$@
25
26 785 aaronmk
##### VegBIEN DB
27 387 aaronmk
28
empty = $(SED) -n \
29
's/^CREATE TABLE ([0-9A-Za-z_]+) \($$/TRUNCATE \1 CASCADE;/p' <$< >$@
30
31
%_empty.sql: %.sql
32
	$(empty)
33 533 aaronmk
34 785 aaronmk
##### MySQL schema for ERD
35 533 aaronmk
36 809 aaronmk
repl = ../bin/repl
37 541 aaronmk
38 809 aaronmk
%.my.sql: %.sql ../lib/PostgreSQL-MySQL.csv filter_ERD.csv
39
	$(repl) <$(wordlist 1,2,$+)|$(repl) $(word 3,$+) >$@