Created
September 9, 2013 23:47
-
-
Save anonymous/6503068 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# quick income statement for specified (single-word) period | |
INCOMESTATEMENTACCTS=^income ^expenses ^draw | |
INCOMESTATEMENTOPTS=--cost --effective --depth 1 #--flat --drop 1 | |
income-statement-%: | |
@printf "\nincome statement for $*:\n" | |
$(HLEDGER) balance $(INCOMESTATEMENTACCTS) --period '$*' $(INCOMESTATEMENTOPTS) | |
# quick monthly income statements for this year | |
income-statements: | |
@for m in $(MONTHS); do \ | |
make income-statement-$(YEAR)-$$m; \ | |
done | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment