mirror of
https://github.com/radareorg/radare2.git
synced 2025-02-12 17:48:33 +00:00
![pancake](/assets/img/avatar_default.png)
* Added 'at' command (not yet implemented at all) - Some refactoring in r_debug_trace code - Remove deprecated r_trace.h
19 lines
334 B
Makefile
19 lines
334 B
Makefile
include ../../libr/config.mk
|
|
|
|
.PHONY: all clean
|
|
|
|
CFLAGS+=-I../../libr/include
|
|
CFLAGS+=-DVERSION=\"${VERSION}\"
|
|
CFLAGS+=-DLIBDIR=\"${PREFIX}/lib\"
|
|
|
|
#LIBS=$(subst r_,-lr_,$(DEPS))
|
|
LIBS+=$(subst r_,-L../../libr/,$(DEPS))
|
|
|
|
all: ${BIN}
|
|
|
|
${BIN}: ${BIN}.o
|
|
${CC} -o ${BIN} ${LIBS} ${LDFLAGS} ${BIN}.o
|
|
|
|
clean:
|
|
rm -f ${BIN} ${BIN}.o ${BIN}.d
|