Adding in curl and openssl repos

This commit is contained in:
2025-08-14 12:09:30 -04:00
parent af2117b574
commit 0ace93e303
21174 changed files with 3607720 additions and 2 deletions

View File

@@ -0,0 +1,26 @@
GRAPHS=cipher.dot digest.dot kdf.dot mac.dot pkey.dot rand.dot
IMAGES=
all: png txt
png: $(subst .dot,.png,$(GRAPHS))
txt: $(subst .dot,.txt,$(GRAPHS))
@echo
@echo Remember to check and manually fix the mistakes before merging
@echo into the man pages.
@echo
# for the dot program:
# sudo apt install graphviz
%.png: %.dot
dot -Tpng -O $<
@mv $<.png $@
# for the graph-easy program:
# sudo apt install cpanminus
# sudo cpanm Graph::Easy
%.txt: %.dot
graph-easy --from=dot --as_ascii < $< > $@
clean:
rm -f $(wildcard *.png) $(wildcard *.txt)