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

  • 462f6be
  • /
  • demos
  • /
  • digest
  • /
  • 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:0bfb6dd5f04470038f9796728f2552ea1660c1bf
directory badge Iframe embedding
swh:1:dir:ecd1c1f3c273b615cbd2c0ed2bd8c8ca6f59ca63
Makefile
#
# To run the demos when linked with a shared library (default):
#
#    LD_LIBRARY_PATH=../.. ./EVP_MD_demo

CFLAGS = -I../../include -g -Wall
LDFLAGS = -L../..
LDLIBS = -lcrypto

all: EVP_MD_demo EVP_MD_stdin EVP_MD_xof BIO_f_md

%.o: %.c
	$(CC) $(CFLAGS) -c $<

EVP_MD_demo: EVP_MD_demo.o
EVP_MD_stdin: EVP_MD_stdin.o
EVP_MD_xof: EVP_MD_xof.o
BIO_f_md: BIO_f_md.o

test: ;

clean:
	$(RM) *.o EVP_MD_demo EVP_MD_stdin EVP_MD_xof BIO_f_md

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

back to top