mirror of
https://github.com/radareorg/radare2.git
synced 2024-12-21 04:38:25 +00:00
0d95b7f469
* Adding node testsuite to appveyor * Removed -g on mingw * Set correct mingw32 compiler * Disabled Mingw32 build
23 lines
436 B
Makefile
23 lines
436 B
Makefile
ifeq (${_INCLUDE_MK_GCC_},)
|
|
_INCLUDE_MK_GCC_=1
|
|
CC=mingw32-gcc-5.3.0
|
|
RANLIB=mingw32-gcc-ranlib
|
|
OSTYPE=windows
|
|
ONELIB=0
|
|
LINK=-shared
|
|
CC_AR=mingw32-gcc-ar ${LIBAR}
|
|
PICFLAGS=
|
|
#CFLAGS+=${PICFLAGS} -MD -D__WINDOWS__=1
|
|
CFLAGS+=${PICFLAGS} -D__WINDOWS__=1
|
|
CC_LIB=${CC} -shared -o
|
|
CFLAGS_INCLUDE=-I
|
|
LDFLAGS+=-static-libgcc
|
|
LDFLAGS_LINK=-l
|
|
LDFLAGS_LINKPATH=-L
|
|
CFLAGS_OPT0=-O0
|
|
CFLAGS_OPT1=-O1
|
|
CFLAGS_OPT2=-O2
|
|
CFLAGS_OPT3=-O3
|
|
CFLAGS_DEBUG=-g
|
|
endif
|