Merge pull request #504 from terrelln/thread-pool

[zstdmt] Add thread pool
This commit is contained in:
Yann Collet
2016-12-30 15:31:49 +01:00
committed by GitHub
9 changed files with 322 additions and 15 deletions
+5 -5
View File
@@ -156,15 +156,15 @@ else
INSTALL ?= install
endif
ifneq (,$(filter $(shell uname),OpenBSD FreeBSD NetBSD DragonFly SunOS))
PREFIX ?= /usr
else
PREFIX ?= /usr/local
endif
DESTDIR ?=
BINDIR ?= $(PREFIX)/bin
ifneq (,$(filter $(shell uname),OpenBSD FreeBSD NetBSD DragonFly SunOS))
MANDIR ?= $(PREFIX)/man/man1
else
MANDIR ?= $(PREFIX)/share/man/man1
endif
INSTALL_PROGRAM ?= $(INSTALL) -m 755
INSTALL_SCRIPT ?= $(INSTALL) -m 755