summaryrefslogtreecommitdiffstats
path: root/Makefile.inc
blob: c09ba62a51432615f752c6938c20b167fd1f73eb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
TARGET_OS ?= $(shell uname)
ifeq ($(TARGET_OS),)
  TARGET_OS ?= $(OS)
endif

ifneq (,$(filter Windows%,$(TARGET_OS)))
LIBLZ4 = liblz4-$(LIBVER_MAJOR)
LIBLZ4_EXP = liblz4.lib
WINBASED   = yes
else
LIBLZ4_EXP = liblz4.dll.a
  ifneq (,$(filter MINGW%,$(TARGET_OS)))
LIBLZ4     = liblz4
WINBASED   = yes
  else
    ifneq (,$(filter MSYS%,$(TARGET_OS)))
LIBLZ4     = msys-lz4-$(LIBVER_MAJOR)
WINBASED   = yes
    else
      ifneq (,$(filter CYGWIN%,$(TARGET_OS)))
LIBLZ4     = cyglz4-$(LIBVER_MAJOR)
WINBASED   = yes
      else
LIBLZ4     = liblz4.$(SHARED_EXT_VER)
WINBASED   = no
EXT        =
      endif
    endif
  endif
endif

ifeq ($(WINBASED),yes)
EXT        = .exe
endif

#determine if dev/nul based on host environment
ifneq (,$(filter MINGW%,$(shell uname)))
VOID := /dev/null
else
  ifneq (,$(filter MSYS%,$(shell uname)))
VOID := /dev/null
  else
    ifneq (,$(filter CYGWIN%,$(shell uname)))
VOID := /dev/null
    else
      ifneq (,$(filter Windows%,$(OS)))
VOID := nul
      else
VOID  := /dev/null
      endif
    endif
  endif
endif

ifneq (,$(filter Linux Darwin GNU/kFreeBSD GNU OpenBSD FreeBSD NetBSD DragonFly SunOS Haiku MidnightBSD MINGW% CYGWIN% MSYS%,$(shell uname)))
POSIX_ENV = Yes
else
POSIX_ENV = No
endif