mirror of
https://github.com/radareorg/radare2.git
synced 2025-02-03 20:22:38 +00:00
22 lines
412 B
Makefile
22 lines
412 B
Makefile
include ../../global.mk
|
|
|
|
NAME=r_asm
|
|
DEPS=r_lib r_util r_parse r_db
|
|
CFLAGS+=-DCORELIB -Iarch/include -Iarch -I../../shlr
|
|
|
|
include $(TOP)/libr/config.mk
|
|
|
|
.PHONY: all plugins
|
|
|
|
all: plugins
|
|
|
|
plugins: ${LIBSO} ${LIBAR}
|
|
@cd d && ${MAKE}
|
|
@cd p && ${MAKE} all
|
|
|
|
include ${STATIC_ASM_PLUGINS}
|
|
STATIC_OBJS=$(subst ..,p/..,$(subst asm_,p/asm_,$(STATIC_OBJ)))
|
|
OBJS=${STATIC_OBJS} asm.o code.o
|
|
|
|
include $(TOP)/libr/rules.mk
|