radare2/libr/egg/Makefile

21 lines
367 B
Makefile
Raw Normal View History

2012-10-04 01:20:00 +02:00
include ../config.mk
NAME=r_egg
2016-06-17 12:14:39 +02:00
DEPS=r_asm r_syscall r_util r_parse r_reg r_anal
2016-06-06 17:30:07 +02:00
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
2012-10-04 01:20:00 +02:00
all: ${LIBSO} ${LIBAR}
P=p/
include ${STATIC_EGG_PLUGINS}
2012-10-04 01:20:00 +02:00
OBJS+=$(subst ..,${P}..,$(subst egg_,${P}egg_,$(STATIC_OBJ)))
include ../rules.mk