mirror of
https://github.com/radareorg/radare2.git
synced 2024-11-23 21:29:49 +00:00
adcefe78fe
- ./configure --with-compiler=mad --with-ostype=gnulinux * Fix various warnings reported by maemo toolchain
34 lines
557 B
Makefile
34 lines
557 B
Makefile
RELEASE=1
|
|
DESTDIR=
|
|
|
|
COMPILER?=gcc
|
|
#COMPILER=maemo
|
|
#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
|
|
|
|
PFX=${DESTDIR}${PREFIX}
|
|
|
|
LIBDIR=${PREFIX}/lib
|
|
|
|
-include config-user.mk
|
|
-include ../config-user.mk
|
|
-include ../../config-user.mk
|
|
-include ../../../config-user.mk
|
|
|
|
-include mk/${COMPILER}.mk
|
|
-include ../mk/${COMPILER}.mk
|
|
-include ../../mk/${COMPILER}.mk
|
|
-include ../../../mk/${COMPILER}.mk
|