We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7e07a64 commit f8df06eCopy full SHA for f8df06e
Makefile
@@ -5,7 +5,7 @@ IFLAGS = -I ./include
5
6
all: test_aead test_kat
7
8
-test/a.out: test/main.cpp include/*.hpp
+test/a.out: test/main.cpp include/*.hpp include/test/*.hpp
9
$(CXX) $(CXXFLAGS) $(OPTFLAGS) $(IFLAGS) $< -o $@
10
11
test_aead: test/a.out
@@ -23,7 +23,7 @@ format:
23
lib:
24
$(CXX) $(CXXFLAGS) $(OPTFLAGS) $(IFLAGS) -fPIC --shared wrapper/xoodyak.cpp -o wrapper/libxoodyak.so
25
26
-bench/a.out: bench/main.cpp include/*.hpp
+bench/a.out: bench/main.cpp include/*.hpp include/bench/*.hpp
27
# make sure you've google-benchmark globally installed;
28
# see https://github.com/google/benchmark/tree/60b16f1#installation
29
$(CXX) $(CXXFLAGS) $(OPTFLAGS) $(IFLAGS) $< -lbenchmark -o $@
0 commit comments