mirror of
https://github.com/radareorg/radare2.git
synced 2025-02-10 16:23:08 +00:00
22 lines
335 B
Makefile
22 lines
335 B
Makefile
ifeq (${HAVE_LIB_SSL},1)
|
|
CFLAGS+=${SSL_CFLAGS}
|
|
LDFLAGS+=${SSL_LDFLAGS}
|
|
endif
|
|
|
|
# OSX 10.7 (lion)
|
|
ifeq (${OSTYPE},darwin)
|
|
LDFLAGS+=-lcrypto
|
|
endif
|
|
# on solaris only
|
|
ifeq (${OSTYPE},solaris)
|
|
LDFLAGS+=-lsocket
|
|
endif
|
|
ifeq (${OSTYPE},qnx)
|
|
LDFLAGS+=-lsocket
|
|
endif
|
|
# windows
|
|
ifeq (${OSTYPE},windows)
|
|
LDFLAGS+=-lwsock32
|
|
#LDFLAGS+=-lws2_32
|
|
endif
|