Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/cr-marcstevens/sha1collisiondetection.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDan Shumow <shumow@gmail.com>2017-05-09 17:27:31 +0300
committerDan Shumow <shumow@gmail.com>2017-05-09 17:27:31 +0300
commitbfebf0a7bc8ce4c55c6463c283e6b4419a7ee322 (patch)
treef6a2167ccb75f4f63461e5312e418c5bb3832f46
parent26446e8c6eb2a5bd9ce9a16523337619f21ce42d (diff)
Fixes bug in Makefile where object library directory was not created properly.
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 1f4f0e9..df49583 100644
--- a/Makefile
+++ b/Makefile
@@ -254,7 +254,7 @@ $(LIB_OBJ_DIR)/%.lo $(LIB_OBJ_DIR)/%.o: $(LIB_DIR)/%.c $(LIB_DEP_DIR)/%.d $(H_DE
.PHONY: simd_test
simd_test:
- $(MKDIR) $(shell dirname $@)
+ $(MKDIR) $(LIB_OBJ_DIR)/simd
$(CC) $(CFLAGS) $(SIMDTESTFLAGS) -o $(LIB_OBJ_DIR)/simd/simd_test.lo -c $(LIB_DIR)/simd/simd_test.c
-include $(FS_DEP)