mirror of
https://github.com/radareorg/radare2.git
synced 2025-01-09 23:11:41 +00:00
24 lines
488 B
Makefile
24 lines
488 B
Makefile
include ../config.mk
|
|
include ../../global.mk
|
|
|
|
NAME=r_bin
|
|
DEPS=r_util r_db r_io
|
|
|
|
.PHONY: pre
|
|
|
|
pre: $(LIBSO) $(LIBAR)
|
|
$(MAKE) -C p
|
|
|
|
CFLAGS+=-DCORELIB -Iformat -Imangling
|
|
|
|
include ${STATIC_BIN_PLUGINS}
|
|
include ${STATIC_BIN_XTR_PLUGINS}
|
|
|
|
STATIC_OBJS=$(addprefix $(LTOP)/bin/p/, $(STATIC_OBJ))
|
|
OBJS=bin.o dbginfo.o bin_write.o demangle.o dwarf.o
|
|
OBJS+=mangling/cxx/cp-demangle.o ${STATIC_OBJS}
|
|
OBJS+=mangling/objc.o mangling/cxx.o
|
|
LINK+=$(SHLR)/java/libr_java.a
|
|
|
|
include $(TOP)/libr/rules.mk
|