blob: 58b277e6423e6eead02121799537fb292efab5b6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
VERBOSE = false
DEBUG = true
USE_FLOATINGPOINT = true
ifneq ($(VERBOSE),true)
MAKE_OPTS = --no-print-directory -s
endif
ifeq ($(DEBUG),true)
TARGET_CPPFLAGS += -DFULLDEBUG
endif
|