stuff
This commit is contained in:
parent
bc92231240
commit
b8225c639e
11904 changed files with 1472749 additions and 133 deletions
25
finance/operation_saylor_3/accounting/Makefile
Normal file
25
finance/operation_saylor_3/accounting/Makefile
Normal file
|
|
@ -0,0 +1,25 @@
|
|||
REAL_BEANCOUNT_FILE ?= main.beancount
|
||||
COMPARISON_BEANCOUNT_FILE ?= scenario_main.beancount
|
||||
BEANCOUNT_FILE ?= $(REAL_BEANCOUNT_FILE)
|
||||
FAVA_HOST ?= 127.0.0.1
|
||||
FAVA_PORT ?= 5000
|
||||
|
||||
.PHONY: check check-real check-comparison fava fava-real fava-comparison
|
||||
|
||||
check:
|
||||
.venv/bin/bean-check $(BEANCOUNT_FILE)
|
||||
|
||||
check-real:
|
||||
.venv/bin/bean-check $(REAL_BEANCOUNT_FILE)
|
||||
|
||||
check-comparison:
|
||||
.venv/bin/bean-check $(COMPARISON_BEANCOUNT_FILE)
|
||||
|
||||
fava:
|
||||
.venv/bin/fava --host $(FAVA_HOST) --port $(FAVA_PORT) $(BEANCOUNT_FILE)
|
||||
|
||||
fava-real:
|
||||
.venv/bin/fava --host $(FAVA_HOST) --port $(FAVA_PORT) $(REAL_BEANCOUNT_FILE)
|
||||
|
||||
fava-comparison:
|
||||
.venv/bin/fava --host $(FAVA_HOST) --port $(FAVA_PORT) $(COMPARISON_BEANCOUNT_FILE)
|
||||
Loading…
Add table
Add a link
Reference in a new issue