forked from IETF-Hackathon/pqc-certificates
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile
More file actions
31 lines (24 loc) · 693 Bytes
/
Makefile
File metadata and controls
31 lines (24 loc) · 693 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
# Makefile
#
# PQC Certificates Tests
MAKEFILE := $(abspath $(lastword $(MAKEFILE_LIST)))
CURR_PATH := $(dir $(MAKEFILE))
# DIRS :=
# $(CURR_PATH)/providers/oqs \
# $(CURR_PATH)/providers/entrust \
# $(CURR_PATH)/providers/kris \
# $(CURR_PATH)/providers/carl_redhound \
# $(CURR_PATH)/providers/openca
DIRS := $(CURR_PATH)/providers/*
.PHONY: help
help:
@echo ; \
echo "USAGE: make [ all, unzip, verify, cross_verify ] " ; \
echo && exit 1
all: unzip generate verify cross_verify
@echo "All Done"
unzip generate verify cross_verify clean distclean:
@for dir in $(DIRS) ; do \
cd=$(notdir $(shell pwd)) ; \
result=`cd $$dir && make $@` ; \
done