radare2/libr/egg/Makefile
pancake 019792d7ec Initial import of apia, the api analysis tool for r2
cd sys/apia ; make

checkout the directory out/ when finished, helps to identify unused
apis, unnecessary libraries linked, bad api usages, renamings, ...
2017-12-18 00:41:52 +01:00

24 lines
390 B
Makefile

include ../config.mk
NAME=r_egg
DEPS=r_asm r_syscall r_util r_parse r_reg
DEPS+=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
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