radare2/libr/libs.mk

18 lines
355 B
Makefile
Raw Permalink Normal View History

-include libs.custom.mk
ifeq ($(LIBS0),)
LIBS0=util
2023-06-09 22:06:53 +00:00
LIBS1=socket reg cons bp config crypto syscall
LIBS2=search flag esil io
LIBS3=arch fs # esil depends on reg and esil
LIBS4=asm anal magic
LIBS5=lang egg bin
2023-01-11 00:05:41 +00:00
LIBS6=debug
LIBS7=core
LIBS8=main
2023-01-11 00:05:41 +00:00
LIBS=$(LIBS0) $(LIBS1) $(LIBS2) $(LIBS3) $(LIBS4) $(LIBS5) $(LIBS6) $(LIBS7) $(LIBS8)
endif
.PHONY: $(LIBS)