mirror of
https://github.com/radareorg/radare2.git
synced 2025-02-15 03:38:27 +00:00
![pancake](/assets/img/avatar_default.png)
with .dll and .exe for w32 * Do not build libr.${LIB_AR} by default (problematic in some platforms) * Lot of more fixes for building on w32 - Yeah i got the first build done! - Check radare.org/get/radare2-w32* - So many things are still broken for windows - Fixes some recursive and missing dependencies - LINK and LDFLAGS must be after $OBJ
16 lines
204 B
Makefile
16 lines
204 B
Makefile
include ../config.mk
|
|
|
|
NAME=r_socket
|
|
OBJ=socket.o proc.o
|
|
|
|
# on solaris only
|
|
ifeq (${OSTYPE},solaris)
|
|
LDFLAGS+=-lsocket
|
|
endif
|
|
# windows
|
|
ifeq (${OSTYPE},windows)
|
|
LDFLAGS=-lwsock32
|
|
endif
|
|
|
|
include ../rules.mk
|