mirror of
https://github.com/radareorg/radare2.git
synced 2024-12-14 08:49:50 +00:00
21 lines
367 B
Makefile
21 lines
367 B
Makefile
include ../config.mk
|
|
|
|
NAME=r_egg
|
|
DEPS=r_asm r_syscall r_util r_parse r_reg r_anal
|
|
DEPS+=r_flags r_cons
|
|
LINK+=$(SHLR)/java/libr_java.a
|
|
|
|
OBJS=egg.o lang.o
|
|
OBJS+=emit_x86.o
|
|
OBJS+=emit_arm.o
|
|
OBJS+=emit_x64.o
|
|
OBJS+=emit_trace.o
|
|
|
|
all: ${LIBSO} ${LIBAR}
|
|
|
|
P=p/
|
|
include ${STATIC_EGG_PLUGINS}
|
|
OBJS+=$(subst ..,${P}..,$(subst egg_,${P}egg_,$(STATIC_OBJ)))
|
|
|
|
include ../rules.mk
|