diff options
author | MITSUNARI Shigeo <herumi@nifty.com> | 2018-05-08 10:10:24 +0800 |
---|---|---|
committer | MITSUNARI Shigeo <herumi@nifty.com> | 2018-05-08 10:10:24 +0800 |
commit | 3731172fc87e1b598a15352c4eef35f0a878cc51 (patch) | |
tree | d5671ac10ac7f5fe45a0d4382f150f3822ad93f9 /Makefile | |
parent | 2cb79ec588676444ad0d6e04e6660442640f32e9 (diff) | |
download | dexon-bls-3731172fc87e1b598a15352c4eef35f0a878cc51.tar dexon-bls-3731172fc87e1b598a15352c4eef35f0a878cc51.tar.gz dexon-bls-3731172fc87e1b598a15352c4eef35f0a878cc51.tar.bz2 dexon-bls-3731172fc87e1b598a15352c4eef35f0a878cc51.tar.lz dexon-bls-3731172fc87e1b598a15352c4eef35f0a878cc51.tar.xz dexon-bls-3731172fc87e1b598a15352c4eef35f0a878cc51.tar.zst dexon-bls-3731172fc87e1b598a15352c4eef35f0a878cc51.zip |
remove bls_tool.cpp
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -7,7 +7,7 @@ LDFLAGS += -lpthread SRC_SRC=bls.cpp bls_c.cpp TEST_SRC=bls_test.cpp bls_c384_test.cpp -SAMPLE_SRC=bls_smpl.cpp bls_tool.cpp +SAMPLE_SRC=bls_smpl.cpp CFLAGS+=-I../mcl/include UNIT?=6 @@ -103,6 +103,8 @@ ALL_SRC=$(SRC_SRC) $(TEST_SRC) $(SAMPLE_SRC) DEPEND_FILE=$(addprefix $(OBJ_DIR)/, $(ALL_SRC:.cpp=.d)) -include $(DEPEND_FILE) +.PHONY: test bls-wasm + # don't remove these files automatically .SECONDARY: $(addprefix $(OBJ_DIR)/, $(ALL_SRC:.cpp=.o)) |