mirror of
https://github.com/radareorg/radare2.git
synced 2025-02-14 19:08:04 +00:00
![pancake](/assets/img/avatar_default.png)
- use hacky 'waitfordeps.sh' helper script - speed up the build process * Do not build libr2.so by default - Do not generate library archives (.a) - Fix build dependencies in vm/p/plugins.h * Added --with-nonpic - Enable the .a generation
15 lines
228 B
Makefile
15 lines
228 B
Makefile
CC=tcc
|
|
LINK=
|
|
ONELIB=0
|
|
CC_AR=ar -r ${LIBAR}
|
|
PIC_CFLAGS+=-fPIC
|
|
CC_LIB=${CC} -shared -o ${LIBSO}
|
|
CFLAGS_INCLUDE=-I
|
|
LDFLAGS_LINK=-l
|
|
LDFLAGS_LINKPATH=-L
|
|
CFLAGS_OPT0=-O0
|
|
CFLAGS_OPT1=-O1
|
|
CFLAGS_OPT2=-O2
|
|
CFLAGS_OPT3=-O3
|
|
CFLAGS_DEBUG=-g
|