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

  • 7d38e6c
  • /
  • 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:d84fcd634f6ff63f6b8e34e005c30d6e7a7000e6
directory badge Iframe embedding
swh:1:dir:7d38e6c403fa7a4bcc085710a678b7b4bfe30fa2
Makefile
#
# To run the demos when linked with a shared library (default):
#
#    LD_LIBRARY_PATH=../.. ./EVP_PKEY_EC_keygen
#    LD_LIBRARY_PATH=../.. ./EVP_PKEY_RSA_keygen
#    LD_LIBRARY_PATH=../.. ./EVP_PKEY_DSA_keygen
#    LD_LIBRARY_PATH=../.. ./EVP_PKEY_DSA_paramgen
#    LD_LIBRARY_PATH=../.. ./EVP_PKEY_DSA_paramvalidate
#    LD_LIBRARY_PATH=../.. ./EVP_PKEY_DSA_paramfromdata

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

TESTS=EVP_PKEY_EC_keygen EVP_PKEY_RSA_keygen EVP_PKEY_DSA_keygen \
EVP_PKEY_DSA_paramgen EVP_PKEY_DSA_paramvalidate EVP_PKEY_DSA_paramfromdata

all: $(TESTS)

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

EVP_PKEY_EC_keygen: EVP_PKEY_EC_keygen.o

EVP_PKEY_RSA_keygen: EVP_PKEY_RSA_keygen.o

EVP_PKEY_DSA_keygen: EVP_PKEY_DSA_keygen.o

EVP_PKEY_DSA_paramgen: EVP_PKEY_DSA_paramgen.o

EVP_PKEY_DSA_paramvalidate: EVP_PKEY_DSA_paramvalidate.o

EVP_PKEY_DSA_paramfromdata: EVP_PKEY_DSA_paramfromdata.o

clean:
	$(RM) *.o $(TESTS)

.PHONY: test
test: all
	@echo "\nPKEY tests:"
	@set -e; for tst in $(TESTS); do \
		echo "\n"$$tst; \
		LD_LIBRARY_PATH=../.. ./$$tst; \
	done

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

back to top