aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorMITSUNARI Shigeo <herumi@nifty.com>2018-05-08 10:10:24 +0800
committerMITSUNARI Shigeo <herumi@nifty.com>2018-05-08 10:10:24 +0800
commit3731172fc87e1b598a15352c4eef35f0a878cc51 (patch)
treed5671ac10ac7f5fe45a0d4382f150f3822ad93f9 /Makefile
parent2cb79ec588676444ad0d6e04e6660442640f32e9 (diff)
downloaddexon-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--Makefile4
1 files changed, 3 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 33f261b..d387d67 100644
--- a/Makefile
+++ b/Makefile
@@ -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))