radare2/libr/egg/Makefile

25 lines
408 B
Makefile
Raw Normal View History

2012-10-04 01:20:00 +02:00
include ../config.mk
NAME=r_egg
DEPS=r_asm r_syscall r_util r_parse r_reg
2016-10-27 01:02:26 +02:00
DEPS+=r_flag r_cons
2017-02-02 12:31:47 +01:00
OBJS=egg.o egg_lang.o
OBJS+=emit_x86.o
OBJS+=emit_arm.o
OBJS+=emit_x64.o
OBJS+=emit_trace.o
OBJS+=egg_Cfile.o
2012-10-04 01:20:00 +02:00
all: ${LIBSO} ${LIBAR}
P=p/
include ${STATIC_EGG_PLUGINS}
2017-05-10 15:32:34 +02:00
include $(STOP)/java/deps.mk
2017-02-02 12:31:47 +01:00
ifneq (${STATIC_OBJ},)
2012-10-04 01:20:00 +02:00
OBJS+=$(subst ..,${P}..,$(subst egg_,${P}egg_,$(STATIC_OBJ)))
2017-02-02 12:31:47 +01:00
endif
include ../rules.mk