summaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorPrzemyslaw Skibinski <inikep@gmail.com>2016-11-16 07:59:18 (GMT)
committerPrzemyslaw Skibinski <inikep@gmail.com>2016-11-16 07:59:18 (GMT)
commit2e10aab20f17adfffb2379e828124be12c774779 (patch)
tree3a0ea44e93d92ba5523b0d5d23ef392cd236859b /tests
parent4235e5e25f79828e6192eb17fac7a24992aed07d (diff)
downloadlz4-2e10aab20f17adfffb2379e828124be12c774779.zip
lz4-2e10aab20f17adfffb2379e828124be12c774779.tar.gz
lz4-2e10aab20f17adfffb2379e828124be12c774779.tar.bz2
MinGW doesn't require the import library at all
Diffstat (limited to 'tests')
-rw-r--r--tests/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/Makefile b/tests/Makefile
index 2132f85..4e96769 100644
--- a/tests/Makefile
+++ b/tests/Makefile
@@ -94,7 +94,7 @@ fullbench-lib: fullbench.c $(LZ4DIR)/xxhash.c
fullbench-dll: fullbench.c $(LZ4DIR)/xxhash.c
$(MAKE) -C $(LZ4DIR) liblz4
- $(CC) $(FLAGS) $^ -o $@$(EXT) -DLZ4_DLL_IMPORT=1 $(LZ4DIR)/dll/liblz4.lib
+ $(CC) $(FLAGS) $^ -o $@$(EXT) -DLZ4_DLL_IMPORT=1 $(LZ4DIR)/dll/liblz4.dll
fuzzer : $(LZ4DIR)/lz4.o $(LZ4DIR)/lz4hc.o $(LZ4DIR)/xxhash.o fuzzer.c
$(CC) $(FLAGS) $^ -o $@$(EXT)