radare2/libr/bin/Makefile

31 lines
798 B
Makefile
Raw Normal View History

2012-10-04 01:20:00 +02:00
include ../config.mk
2012-08-14 13:14:54 +02:00
include ../../global.mk
NAME=r_bin
2016-06-17 12:14:39 +02:00
DEPS=r_util r_io r_socket r_magic
2012-10-04 01:20:00 +02:00
.PHONY: pre
pre: $(LIBSO) $(LIBAR)
2013-12-22 03:24:12 +01:00
$(MAKE) -C p
2014-12-21 04:38:25 +01:00
$(MAKE) -C d
CFLAGS+=-DCORELIB -Iformat -Imangling
include ${STATIC_BIN_PLUGINS}
include ${STATIC_BIN_XTR_PLUGINS}
2012-08-14 13:14:54 +02:00
STATIC_OBJS=$(addprefix $(LTOP)/bin/p/, $(STATIC_OBJ))
OBJS=bin.o dbginfo.o bin_write.o demangle.o dwarf.o filter.o
OBJS+=mangling/cxx/cp-demangle.o ${STATIC_OBJS}
OBJS+=mangling/demangler.o
OBJS+=mangling/microsoft_demangle.o
OBJS+=mangling/objc.o mangling/cxx.o mangling/msvc.o
OBJS+=mangling/swift.o mangling/swift-sd.o
OBJS+=mangling/dlang.o
OBJS+=pdb/pdb_downloader.o pdb/omap.o pdb/stream_pe.o pdb/gdata.o
OBJS+=pdb/fpo.o pdb/dbi.o pdb/tpi.o pdb/stream_file.o pdb/pdb.o
2014-07-09 11:00:41 +02:00
LINK+=$(SHLR)/java/libr_java.a
2012-08-14 13:14:54 +02:00
include $(TOP)/libr/rules.mk