summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Makefile14
1 files changed, 1 insertions, 13 deletions
diff --git a/Makefile b/Makefile
index 6df9d58..29a4c04 100644
--- a/Makefile
+++ b/Makefile
@@ -32,10 +32,6 @@ ifdef verbose
QUIET =
endif
-ifeq (${aspectc}, 1)
- CONFIG_aspectc = y
-endif
-
ifneq (${app_dir}, )
include src/app/${app_dir}/Makefile.inc
endif
@@ -264,18 +260,11 @@ ifeq (${timer_us}, 1)
COMMON_FLAGS += -DTIMER_US
endif
+# still used in makefiles
ifeq (${loop}, 1)
COMMON_FLAGS += -DCONFIG_loop
endif
-ifeq (${wakeup}, 1)
- COMMON_FLAGS += -DCONFIG_wakeup
-endif
-
-ifeq (${ostream}, 1)
- COMMON_FLAGS += -DCONFIG_ostream
-endif
-
ifeq (${trace_malloc}, 1)
CXX_TARGETS += src/lib/mpmalloc.cc
COMMON_FLAGS += -DMULTIPASS_TRACE_MALLOC
@@ -330,7 +319,6 @@ help: arch_help
@echo " i2c_pullup -- When using arch i2c driver: configure SDA/SCL pull-ups"
@echo " gpio: Use external pull-ups connected to two separate CPU pins. Pull-Ups are always enabled"
@echo " kout_nop -- Do not write output to stdout / serial console"
- @echo " ostream -- include C++ ostream standard library"
@echo " trace_malloc -- trace mpmalloc/mpcalloc/mprealloc calls on stdout"
@echo " stack_usage -- Generate .su files for stack usage estimation (-> make stack)"
@echo