summaryrefslogtreecommitdiff
path: root/config
diff options
context:
space:
mode:
authorNicolas "Pixel" Noble <pixel@nobis-crew.org>2011-01-27 00:04:27 +0100
committerNicolas "Pixel" Noble <pixel@nobis-crew.org>2011-01-27 00:04:27 +0100
commit30306a42972f6a414e8b23e7942fd77f74af80db (patch)
treeaf2e4d41c44af061e1e0b0069ec92e7107499e79 /config
parent369a614802c835510bf20ab2b2aa3ce35050c020 (diff)
Adding the osdebug mechanism into arch and FreeRTOS, essentially closing the circle of dependancy between all 3 libraries. Also, turning the debugging on by default.
Diffstat (limited to 'config')
-rw-r--r--config/general.mk5
1 files changed, 5 insertions, 0 deletions
diff --git a/config/general.mk b/config/general.mk
index cd50fdc..293db96 100644
--- a/config/general.mk
+++ b/config/general.mk
@@ -1,5 +1,10 @@
VERBOSE = false
+DEBUG = true
ifneq ($(VERBOSE),true)
MAKE_OPTS = --no-print-directory -s
endif
+
+ifeq ($(DEBUG),true)
+TARGET_CPPFLAGS += -DFULLDEBUG
+endif \ No newline at end of file