diff --git a/python/Makefile b/python/Makefile index c8788d07d..a053976a1 100644 --- a/python/Makefile +++ b/python/Makefile @@ -165,9 +165,6 @@ ifeq ($(PLATFORM),emscripten) $(py_objs): SFLAGS := $(subst -Os,-O0,$(SFLAGS)) endif -# Icon dependency -python/port/mod/turtle/turtle.cpp: python/port/mod/turtle/turtle_icon.o - # QSTR generation generated_headers += $(addprefix python/port/genhdr/, qstrdefs.generated.h) @@ -182,6 +179,4 @@ $(py_objs) $(extmod_objs) $(port_objs): python/port/genhdr/qstrdefs.generated.h # List all objects needed -objs += $(extmod_objs) $(py_objs) $(port_objs) python/port/mod/turtle/turtle_icon.o - -app_images += python/port/mod/turtle/turtle_icon.png +objs += $(extmod_objs) $(py_objs) $(port_objs) \ No newline at end of file diff --git a/python/port/mod/turtle/turtle.cpp b/python/port/mod/turtle/turtle.cpp index a865eeb31..c242ec475 100644 --- a/python/port/mod/turtle/turtle.cpp +++ b/python/port/mod/turtle/turtle.cpp @@ -5,7 +5,6 @@ extern "C" { } #include "../../helpers.h" #include "../../port.h" -#include "turtle_icon.h" static constexpr KDCoordinate k_iconSize = 15; static constexpr KDCoordinate k_iconBodySize = 5; diff --git a/python/port/mod/turtle/turtle_icon.png b/python/port/mod/turtle/turtle_icon.png deleted file mode 100644 index f722be7f1..000000000 Binary files a/python/port/mod/turtle/turtle_icon.png and /dev/null differ