radare2/libr/parse/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

35 lines
634 B
Makefile

include ../config.mk
NAME=r_parse
R2DEPS=r_flag r_util r_syscall r_reg
# indirect dependencies
R2DEPS+=r_cons
LINK+=$(STOP)/tcc/libr_tcc.a
CFLAGS+=-I$(STOP)/tcc/
LINK+=$(STOP)/mpc/libmpc.a
CFLAGS+=-I$(STOP)/mpc/
include $(SHLR)/zip/deps.mk
foo:
@for TARGET in pre libr_parse.${EXT_SO} \
libr_parse.${EXT_AR} plugins bins ; do \
${MAKE} $$TARGET ; done
CFLAGS+=-DR2_PLUGIN_INCORE
-include ${STATIC_PARSE_PLUGINS}
STATIC_OBJS=$(subst ..,p/..,$(subst parse_,p/parse_,$(STATIC_OBJ)))
OBJS=parse.o filter.o code.o ctype.o ${STATIC_OBJS}
pre:
bins:
# @cd t && ${MAKE} all
plugins:
@cd p && ${MAKE} all
include ../rules.mk