diff options
author | MITSUNARI Shigeo <herumi@nifty.com> | 2016-08-10 18:32:28 +0800 |
---|---|---|
committer | MITSUNARI Shigeo <herumi@nifty.com> | 2016-08-10 18:32:28 +0800 |
commit | bc8beb99461abb26cd7f07b5209b6e2ab6c12823 (patch) | |
tree | 8718eb036fcbc3ba74b4dd1c02aaf7bed74ad46e /Makefile | |
parent | 4e76cc6a94dcc8b5de913eed5a9a944ce74da647 (diff) | |
download | dexon-bls-bc8beb99461abb26cd7f07b5209b6e2ab6c12823.tar dexon-bls-bc8beb99461abb26cd7f07b5209b6e2ab6c12823.tar.gz dexon-bls-bc8beb99461abb26cd7f07b5209b6e2ab6c12823.tar.bz2 dexon-bls-bc8beb99461abb26cd7f07b5209b6e2ab6c12823.tar.lz dexon-bls-bc8beb99461abb26cd7f07b5209b6e2ab6c12823.tar.xz dexon-bls-bc8beb99461abb26cd7f07b5209b6e2ab6c12823.tar.zst dexon-bls-bc8beb99461abb26cd7f07b5209b6e2ab6c12823.zip |
add bls_smpl
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 6 |
1 files changed, 5 insertions, 1 deletions
@@ -5,9 +5,13 @@ EXE_DIR=bin SRC_SRC=bls.cpp TEST_SRC=bls_test.cpp -#SAMPLE_SRC= +SAMPLE_SRC=bls_smpl.cpp CFLAGS+=-I../mcl/include + +sample_test: $(EXE_DIR)/bls_smpl.exe + python bls_smpl.py + ################################################################## BLS_LIB=$(LIB_DIR)/libbls.a all: $(BLS_LIB) |