summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorDaniel Friesel <derf@finalrewind.org>2021-12-21 21:05:04 +0100
committerDaniel Friesel <derf@finalrewind.org>2021-12-21 21:05:04 +0100
commit4cd3ce53b396b7daa46fb9e1ba333f687af0eb2a (patch)
treeb6b72a0a6b6e4e8b7f5cc62d6740206e73ba41a4 /Makefile
parentfba865b20ca49565b932bdedfa10b40ec244db7c (diff)
Makefile: remove legacy aspectc, ostream, wakeup flags
Diffstat (limited to 'Makefile')
-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