mirror of
https://github.com/aclindsa/moneygo.git
synced 2024-10-31 16:00:05 -04:00
10 lines
227 B
Makefile
10 lines
227 B
Makefile
|
all: security_templates.go
|
||
|
|
||
|
security_templates.go: cusip_list.csv scripts/gen_security_list.py
|
||
|
./scripts/gen_security_list.py > security_templates.go
|
||
|
|
||
|
cusip_list.csv:
|
||
|
./scripts/gen_cusip_csv.sh > cusip_list.csv
|
||
|
|
||
|
.PHONY = all
|