mirror of
https://github.com/radareorg/radare2.git
synced 2025-01-11 00:06:19 +00:00
0ba897f5c9
* Add network support for WinDbg/KD (KDNET) ##debug * Add iob_net io_backend plugin for shlr/winkd * Add Windows 10 (May 2019 Update) build 18362 profile * Add r_hash_do_hmac_sha256 function to r_hash * Change r_socket_connect to bind source port for UDP connection
18 lines
325 B
Makefile
18 lines
325 B
Makefile
-include libs.custom.mk
|
|
|
|
ifeq ($(LIBS0),)
|
|
LIBS0=util
|
|
LIBS1=socket hash reg cons magic bp search config
|
|
LIBS2=syscall lang crypto io flag
|
|
LIBS3=fs parse bin
|
|
LIBS4=asm
|
|
LIBS5=anal egg
|
|
LIBS6=debug
|
|
LIBS7=core
|
|
LIBS8=main
|
|
|
|
LIBS=$(LIBS0) $(LIBS1) $(LIBS2) $(LIBS3) $(LIBS4) $(LIBS5) $(LIBS6) $(LIBS7) $(LIBS8)
|
|
endif
|
|
|
|
.PHONY: $(LIBS)
|