Skip to content

Commit

Permalink
added tracking for useful numbers generated by filter task
Browse files Browse the repository at this point in the history
  • Loading branch information
baileyb0t committed Jul 17, 2024
1 parent b5ef21c commit 69ee721
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions export/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -9,18 +9,23 @@
# ---- dependencies {{{
complaints := ../indicate/output/complaints.parquet
output := output/complaints.xlsx
useful := ../filter/output/useful.yml
# }}}

# ---- standard {{{
.PHONY: clean all

all: $(output)
all: $(output) output/useful.done

clean:
-rm -r output/*
# }}}

# ---- task-specific {{{
output/useful.done: $(useful)
-cd output && ln -s ../$(useful) .
touch $@

$(output): \
src/to_xlsx.py \
$(complaints)
Expand All @@ -30,4 +35,4 @@ $(output): \
--output=$@
# }}}

# done.
# done.

0 comments on commit 69ee721

Please sign in to comment.