blob: 5395158eae64b30a54514279bda8d456c4c0b0ed (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
implementations = $(dir \
$(shell find crypto_aead -name Makefile) \
)
delegated = clean test traces
.PHONY: $(delegated)
$(delegated)::
for i in $(implementations); \
do \
make -C $$i $@; \
done
# To generate complete traces, apply this patch before running "make traces":
# $ git apply traces.patch
# To update this patch, add print statements, then run
# $ git diff src > traces.patch
traces::
@ echo "Collecting traces"
@ ./collect-traces.sh
|