diff options
author | Martin Czygan <martin.czygan@gmail.com> | 2021-09-21 15:55:11 +0200 |
---|---|---|
committer | Martin Czygan <martin.czygan@gmail.com> | 2021-09-21 15:55:11 +0200 |
commit | 6a224c316869ba2651094ad47e1d92e102524f85 (patch) | |
tree | be653c2eb632acdd3824ee31212a2bc7123c3bed /notes/Makefile | |
parent | 08a9242e2ed19aaec14d92fe174bee21bb4232eb (diff) | |
download | fuzzycat-6a224c316869ba2651094ad47e1d92e102524f85.tar.gz fuzzycat-6a224c316869ba2651094ad47e1d92e102524f85.zip |
reorganize notes
Diffstat (limited to 'notes/Makefile')
-rw-r--r-- | notes/Makefile | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/notes/Makefile b/notes/Makefile index 3a7dcaf..b4996f9 100644 --- a/notes/Makefile +++ b/notes/Makefile @@ -1,6 +1,11 @@ -steps.png: steps.dot +TARGETS = workflow_schema.png + +.PHONY: all +all: $(TARGETS) + +%.png: %.dot dot -Tpng $^ > $@ .PHONY: clean clean: - rm -rf steps.png + rm -rf $(TARGETS) |