radare2/libr/egg/Makefile
Anton Kochkov ffe743ef39
Fix #4056 - rename DEPS to R2DEPS ##build (#17020)
* Rename DEPS to R2DEPS
* Cleanup of sys/build.sh
2020-06-12 10:49:28 +08:00

25 lines
412 B
Makefile

include ../config.mk
NAME=r_egg
R2DEPS=r_asm r_syscall r_util r_parse r_reg
R2DEPS+=r_flag r_cons
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
all: ${LIBSO} ${LIBAR}
P=p/
include ${STATIC_EGG_PLUGINS}
include $(STOP)/java/deps.mk
ifneq (${STATIC_OBJ},)
OBJS+=$(subst ..,${P}..,$(subst egg_,${P}egg_,$(STATIC_OBJ)))
endif
include ../rules.mk