changed the "devel" setup targets to use "builds/<system>/devel"
as the build directory. This is used to specify a specific "ftoption.h" that toggles all traces and logging on. Hence, the default build doesn't need the traces
This commit is contained in:
parent
38d979ceb4
commit
38cb5af01f
|
@ -25,7 +25,7 @@ endif
|
||||||
DELETE := rm -f
|
DELETE := rm -f
|
||||||
SEP := /
|
SEP := /
|
||||||
HOSTSEP := $(SEP)
|
HOSTSEP := $(SEP)
|
||||||
BUILD := $(TOP)/builds/unix
|
BUILD := $(TOP)/builds/unix/devel
|
||||||
PLATFORM := unixdev # do not set it to "unix", or libtool will trick you..
|
PLATFORM := unixdev # do not set it to "unix", or libtool will trick you..
|
||||||
CC := gcc
|
CC := gcc
|
||||||
|
|
||||||
|
|
|
@ -25,7 +25,7 @@ endif
|
||||||
DELETE := del
|
DELETE := del
|
||||||
SEP := /
|
SEP := /
|
||||||
HOSTSEP := $(strip \ )
|
HOSTSEP := $(strip \ )
|
||||||
BUILD := $(TOP)/builds/win32
|
BUILD := $(TOP)/builds/win32/devel
|
||||||
PLATFORM := win32
|
PLATFORM := win32
|
||||||
CC := gcc
|
CC := gcc
|
||||||
|
|
||||||
|
|
|
@ -199,8 +199,8 @@
|
||||||
/* */
|
/* */
|
||||||
/* Don't define any of these macros to compile in `release' mode! */
|
/* Don't define any of these macros to compile in `release' mode! */
|
||||||
/* */
|
/* */
|
||||||
#define FT_DEBUG_LEVEL_ERROR
|
#undef FT_DEBUG_LEVEL_ERROR
|
||||||
#define FT_DEBUG_LEVEL_TRACE
|
#undef FT_DEBUG_LEVEL_TRACE
|
||||||
|
|
||||||
|
|
||||||
/*************************************************************************/
|
/*************************************************************************/
|
||||||
|
|
Loading…
Reference in New Issue