radare2/libr/socket/Makefile

14 lines
227 B
Makefile
Raw Normal View History

include ../config.mk
NAME=r_socket
OBJS=socket.o proc.o http.o http_server.o
OBJS+=rap_server.o run.o r2pipe.o
2014-05-06 02:07:26 +00:00
DEPS=r_util
2014-07-18 09:49:19 +00:00
ifneq (,$(findstring mingw32,${OSTYPE}))
LDFLAGS+=-lws2_32
endif
2012-10-03 14:32:32 +00:00
include deps.mk
include ../rules.mk