radare2/shlr/java/Makefile
pancake 01a2b485e7 Implement 'drc' command with all the RRegCond magic
- Fix all debug register profiles
- Support for X86 and ARM
- Allow to check conditional instructions
2014-01-08 23:23:06 +01:00

20 lines
386 B
Makefile

include ../../config-user.mk
include ../../mk/${COMPILER}.mk
SHLR?=$(shell pwd)/..
#CFLAGS+=-g -ggdb -fPIC
CFLAGS+=-fPIC -g
CFLAGS+=-I../../libr/include
LDFLAGS+=-L../../libr/util
LDFLAGS+=-L../../libr/sdb
OBJS=code.o class.o ops.o
all: out
out: ${OBJS} main.o
${CC} ${LDFLAGS} ${CFLAGS} -I. ${OBJS} main.o \
-lr_util ${SHLR}/sdb/src/libsdb.a -o out
clean:
rm -f ${OBJS} a.out