mirror of
https://github.com/radareorg/radare2.git
synced 2024-11-28 23:50:40 +00:00
8579a5b41f
- Propagate @VERSION@ from ACR - All *2 apps are now supporting a -V flag to show the version * Fix .dr* command in r_core debugger - dr now supports [regtype] [bitsize] arguments - Check dr? for help * Added some 8, 16 bit registers to the dbg.ptrace backend - Just for testing :) * Check build of the whole source tree - test programs are now in ${prefix}/bin/libr-test * Fix lot of warnings and bugs * Simplify some code * Some rapification * Fix segfault in r_reg related to unallocated arenas - New function r_reg_type_by_name() resolves string->id * Fix help of rax2
25 lines
343 B
Makefile
25 lines
343 B
Makefile
RELEASE=1
|
|
DESTDIR=
|
|
OSTYPE?=gnulinux
|
|
|
|
COMPILER?=gcc
|
|
#COMPILER=mingw32-gcc
|
|
#tcc
|
|
|
|
# verbose error messages everywhere
|
|
STATIC_DEBUG=0
|
|
# getenv("LIBR_RTDEBUG");
|
|
RUNTIME_DEBUG?=1
|
|
|
|
ifeq (${RELEASE},1)
|
|
PREFIX=/usr/local
|
|
else
|
|
PREFIX=${PWD}/prefix
|
|
VERSION=`date '+%Y%m%d'`
|
|
endif
|
|
|
|
LIBDIR=${PREFIX}/lib
|
|
|
|
-include config-user.mk
|
|
-include ../config-user.mk
|