mirror of
https://github.com/radareorg/radare2.git
synced 2024-11-27 23:20:40 +00:00
4c834515da
* Honor regprofiles from arch via anal * Add some more plugins for the wasi builds
20 lines
476 B
Makefile
20 lines
476 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 p
|
|
|
|
include $(STATIC_ARCH_PLUGINS)
|
|
STATIC_OBJS=$(subst ..,p/..,$(subst arch_,p/arch_,$(STATIC_OBJ)))
|
|
OBJS=arch.o aconfig.o switchop.o archop.o archvalue.o archcond.o
|
|
OBJS+=${STATIC_OBJS}
|
|
OBJS+=encoder.o decoder.o
|
|
|
|
include ../rules.mk
|