mirror of
https://github.com/radareorg/radare2.git
synced 2024-11-26 22:50:48 +00:00
85e684d5b8
Co-authored-by: pancake <pancake@nopcode.org>
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 flag
|
|
LIBS3=parse io
|
|
LIBS4=fs asm bin
|
|
LIBS5=anal egg
|
|
LIBS6=debug
|
|
LIBS7=core
|
|
LIBS8=main
|
|
|
|
LIBS=$(LIBS0) $(LIBS1) $(LIBS2) $(LIBS3) $(LIBS4) $(LIBS5) $(LIBS6) $(LIBS7) $(LIBS8)
|
|
endif
|
|
|
|
.PHONY: $(LIBS)
|