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 423 aaronmk
remake: _always clean all ;
24
25 387 aaronmk
%:: %.make
26
	./$< >$@
27
28 785 aaronmk
##### VegBIEN DB
29 387 aaronmk
30
empty = $(SED) -n \
31
's/^CREATE TABLE ([0-9A-Za-z_]+) \($$/TRUNCATE \1 CASCADE;/p' <$< >$@
32
33
%_empty.sql: %.sql
34
	$(empty)
35 533 aaronmk
36 785 aaronmk
##### MySQL schema for ERD
37 533 aaronmk
38 809 aaronmk
repl = ../bin/repl
39 541 aaronmk
40 809 aaronmk
%.my.sql: %.sql ../lib/PostgreSQL-MySQL.csv filter_ERD.csv
41
	$(repl) <$(wordlist 1,2,$+)|$(repl) $(word 3,$+) >$@