a portable and fast pairing-based cryptography library
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
include ../common.mk
|
|
|
|
TARGET=$(TEST_FILE)
|
|
LIBS=
|
|
|
|
SRC=bench.cpp ecdh.cpp random.cpp vote.cpp
|
|
|
|
all: $(TARGET)
|
|
|
|
#test: $(TARGET)
|
|
# @$(SAMPLE_TEST)
|
|
|
|
$(OBJDIR):
|
|
@$(MKDIR) $(OBJDIR)
|
|
|
|
clean:
|
|
$(CLEAN)
|
|
|
|
$(LIBS):
|
|
$(MAKE) -C ../src
|
|
|
|
-include $(DEPEND_FILE)
|
|
|
|
|