mirror of
https://github.com/radareorg/radare2.git
synced 2024-12-05 03:56:46 +00:00
22 lines
358 B
Makefile
22 lines
358 B
Makefile
|
ifeq ($(OSTYPE),auto)
|
||
|
OSTYPE=$(shell uname | tr 'A-Z' 'a-z')
|
||
|
endif
|
||
|
ifneq (,$(findstring cygwin,${OSTYPE}))
|
||
|
PIC_CFLAGS=
|
||
|
else
|
||
|
ifneq (,$(findstring mingw32,${OSTYPE}))
|
||
|
PIC_CFLAGS=
|
||
|
else
|
||
|
ifneq (,$(findstring mingw64,${OSTYPE}))
|
||
|
PIC_CFLAGS=
|
||
|
else
|
||
|
ifneq (,$(findstring msys,${OSTYPE}))
|
||
|
PIC_CFLAGS=
|
||
|
else
|
||
|
PIC_CFLAGS=-fPIC
|
||
|
endif
|
||
|
endif
|
||
|
endif
|
||
|
endif
|
||
|
|