mirror of
https://github.com/radareorg/radare2.git
synced 2024-11-24 05:40:10 +00:00
17 lines
311 B
Makefile
17 lines
311 B
Makefile
include ../config.mk
|
|
|
|
NAME=r_arch
|
|
R2DEPS+=r_util
|
|
|
|
CFLAGS+=-DR2_PLUGIN_INCORE
|
|
|
|
.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 api.o decoder.o ${STATIC_OBJS}
|
|
|
|
include ../rules.mk
|