diff options
author | Przemyslaw Skibinski <inikep@gmail.com> | 2016-11-15 10:06:16 (GMT) |
---|---|---|
committer | Przemyslaw Skibinski <inikep@gmail.com> | 2016-11-15 10:06:16 (GMT) |
commit | f71340ce1d8daa9f13cf4f1ecf2a21f23e3790ff (patch) | |
tree | c96a24a0a9f4c6f6bb08a01f4e633475f7ffc121 /tests | |
parent | f3f59bef4f6aedb7f9b81f4f96a5eabae813bc8f (diff) | |
download | lz4-f71340ce1d8daa9f13cf4f1ecf2a21f23e3790ff.zip lz4-f71340ce1d8daa9f13cf4f1ecf2a21f23e3790ff.tar.gz lz4-f71340ce1d8daa9f13cf4f1ecf2a21f23e3790ff.tar.bz2 |
DLL dependencies moved to lib/dll/
Diffstat (limited to 'tests')
-rw-r--r-- | tests/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/Makefile b/tests/Makefile index a11cf9b..2132f85 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)/liblz4.dll.a + $(CC) $(FLAGS) $^ -o $@$(EXT) -DLZ4_DLL_IMPORT=1 $(LZ4DIR)/dll/liblz4.lib fuzzer : $(LZ4DIR)/lz4.o $(LZ4DIR)/lz4hc.o $(LZ4DIR)/xxhash.o fuzzer.c $(CC) $(FLAGS) $^ -o $@$(EXT) |