diff options
author | Daniel Friesel <derf@finalrewind.org> | 2017-12-08 15:07:52 +0100 |
---|---|---|
committer | Daniel Friesel <derf@finalrewind.org> | 2017-12-08 15:07:52 +0100 |
commit | dcf84169ae75b11c1656d45dbc6c626d93da6a10 (patch) | |
tree | d78ad84e6aba1f5f13037e40141013f3a3061d54 /Makefile | |
parent | 56f2d90751f1c1b2db925da215a14721cf18d483 (diff) |
Add output support (broken on esp8266)
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1,11 +1,11 @@ default: build/system.elf INCLUDES = -Iinclude -COMMON_FLAGS = -g -Os -Wall -Wextra -unused +COMMON_FLAGS = -g -Os -Wall -Wextra -unused -fno-rtti CFLAGS = -std=c99 CXXFLAGS = -std=c++14 -TARGETS = src/os/main.cc +TARGETS = src/os/main.cc src/os/object/cpp_helpers.cc src/os/object/outputstream.cc ifeq (${arduino}, 1) COMMON_FLAGS += -DWITH_LOOP |