aboutsummaryrefslogtreecommitdiffstats
path: root/notes/Makefile
diff options
context:
space:
mode:
authorMartin Czygan <martin.czygan@gmail.com>2021-09-21 15:55:11 +0200
committerMartin Czygan <martin.czygan@gmail.com>2021-09-21 15:55:11 +0200
commit6a224c316869ba2651094ad47e1d92e102524f85 (patch)
treebe653c2eb632acdd3824ee31212a2bc7123c3bed /notes/Makefile
parent08a9242e2ed19aaec14d92fe174bee21bb4232eb (diff)
downloadfuzzycat-6a224c316869ba2651094ad47e1d92e102524f85.tar.gz
fuzzycat-6a224c316869ba2651094ad47e1d92e102524f85.zip
reorganize notes
Diffstat (limited to 'notes/Makefile')
-rw-r--r--notes/Makefile9
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)