mirror of
https://github.com/radareorg/radare2.git
synced 2024-11-23 13:19:54 +00:00
17 lines
309 B
Makefile
17 lines
309 B
Makefile
-include libs.custom.mk
|
|
|
|
ifeq ($(LIBS0),)
|
|
LIBS0=util
|
|
LIBS1=socket reg cons magic bp config crypto
|
|
LIBS2=syscall search flag arch esil io
|
|
LIBS3=asm fs anal
|
|
LIBS4=lang bin
|
|
LIBS5=debug egg
|
|
LIBS6=core
|
|
LIBS7=main
|
|
|
|
LIBS=$(LIBS0) $(LIBS1) $(LIBS2) $(LIBS3) $(LIBS4) $(LIBS5) $(LIBS6) $(LIBS7)
|
|
endif
|
|
|
|
.PHONY: $(LIBS)
|