Skip to main content
  • Home
  • login
  • Browse the archive

    swh mirror partner logo
swh logo
SoftwareHeritage
Software
Heritage
Mirror
Features
  • Search

  • Downloads

  • Save code now

  • Add forge now

  • Help

  • 16a9fb2
  • /
  • life-cycles
  • /
  • Makefile
Raw File
Permalinks

To reference or cite the objects present in the Software Heritage archive, permalinks based on SoftWare Hash IDentifiers (SWHIDs) must be used.
Select below a type of object currently browsed in order to display its associated SWHID and permalink.

  • content
  • directory
content badge Iframe embedding
swh:1:cnt:4c12558e63df4b2fdf9f724d2f4ed4bfa0c64578
directory badge Iframe embedding
swh:1:dir:33825973d539a4812bf875550e419a8a59e6841b
Makefile
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)

ENEA — Copyright (C), ENEA. License: GNU AGPLv3+.
Legal notes  ::  JavaScript license information ::  Web API

back to top