mirror of
https://github.com/radareorg/radare2.git
synced 2025-02-03 20:22:38 +00:00
7a753ac0cb
* Some random syntax cleanups * Fixes some warnings in r_socket on w32
17 lines
217 B
Makefile
17 lines
217 B
Makefile
include ../config.mk
|
|
|
|
NAME=r_socket
|
|
#DEPS=r_util
|
|
OBJ=socket.o proc.o
|
|
|
|
# on solaris only
|
|
ifeq (${OSTYPE},solaris)
|
|
LDFLAGS+=-lsocket
|
|
endif
|
|
# windows
|
|
ifeq (${OSTYPE},windows)
|
|
LDFLAGS=-lwsock32
|
|
endif
|
|
|
|
include ../rules.mk
|