mirror of
https://github.com/radareorg/radare2.git
synced 2024-11-24 05:40:10 +00:00
20 lines
512 B
Makefile
20 lines
512 B
Makefile
include ../config.mk
|
|
|
|
NAME=r_arch
|
|
R2DEPS+=r_util r_reg
|
|
|
|
CFLAGS+=-DR2_PLUGIN_INCORE
|
|
CFLAGS:=-I.. -I$(LTOP)/asm/arch/include -DR2_PLUGIN_INCORE -Iarch -I$(TOP)/shlr $(CFLAGS)
|
|
|
|
.PHONY: pre
|
|
pre: libr_arch.$(EXT_SO) libr_arch.$(EXT_AR)
|
|
$(MAKE) -C ../asm/arch/arm/v35arm64
|
|
$(MAKE) -C p
|
|
|
|
include $(STATIC_ARCH_PLUGINS)
|
|
STATIC_OBJS=$(subst ..,p/..,$(subst arch_,p/arch_,$(STATIC_OBJ)))
|
|
OBJS=arch.o arch_config.o arch_switch.o arch_op.o arch_value.o arch_cond.o arch_session.o
|
|
OBJS+=${STATIC_OBJS}
|
|
|
|
include ../rules.mk
|