diff options
author | Yann Collet <Cyan4973@users.noreply.github.com> | 2018-11-17 08:52:56 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-11-17 08:52:56 (GMT) |
commit | c910db3a41eb654182f1af86dbe4ecd89d53b58c (patch) | |
tree | 7bfbac9c42a1b6c248b2a909943f1e35f7ecaaba | |
parent | 6686e7597cdf28149a78dcde1efbd91e2323a495 (diff) | |
parent | 31ce8b56e5da76887ad2670d4dfe621aff39b688 (diff) | |
download | lz4-c910db3a41eb654182f1af86dbe4ecd89d53b58c.zip lz4-c910db3a41eb654182f1af86dbe4ecd89d53b58c.tar.gz lz4-c910db3a41eb654182f1af86dbe4ecd89d53b58c.tar.bz2 |
Merge pull request #603 from vtorri/dev
Use / instead of \ when accessing files in the dll subdirectory.
-rw-r--r-- | lib/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/Makefile b/lib/Makefile index d7c8cb4..f7bd439 100644 --- a/lib/Makefile +++ b/lib/Makefile @@ -103,8 +103,8 @@ $(LIBLZ4): $(SRCFILES) ifeq ($(BUILD_SHARED),yes) # can be disabled on command line @echo compiling dynamic library $(LIBVER) ifneq (,$(filter Windows%,$(OS))) - $(Q)$(CC) $(FLAGS) -DLZ4_DLL_EXPORT=1 -shared $^ -o dll\$@.dll - dlltool -D dll\liblz4.dll -d dll\liblz4.def -l dll\liblz4.lib + $(Q)$(CC) $(FLAGS) -DLZ4_DLL_EXPORT=1 -shared $^ -o dll/$@.dll + dlltool -D dll/liblz4.dll -d dll/liblz4.def -l dll/liblz4.lib else $(Q)$(CC) $(FLAGS) -shared $^ -fPIC -fvisibility=hidden $(SONAME_FLAGS) -o $@ @echo creating versioned links |