mirror of
https://github.com/radareorg/radare2.git
synced 2025-01-08 14:20:19 +00:00
01a2b485e7
- Fix all debug register profiles - Support for X86 and ARM - Allow to check conditional instructions
20 lines
386 B
Makefile
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
|