From 9477bf2b6cce08f648b1d9b3c37a2bf697854e70 Mon Sep 17 00:00:00 2001 From: Physick <96335032+DegustatorPonos@users.noreply.github.com> Date: Fri, 2 Jan 2026 22:41:25 +0500 Subject: Not working version --- src/Makefile | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 src/Makefile (limited to 'src/Makefile') diff --git a/src/Makefile b/src/Makefile new file mode 100644 index 0000000..a32c435 --- /dev/null +++ b/src/Makefile @@ -0,0 +1,19 @@ +PROJECT = blink-led +BUILD_DIR = bin + +SHARED_DIR = ../lib +CFILES = main.c +CFILES += ili9341.c +CFILES += spi_sw.c + +# TODO - you will need to edit these two lines! +DEVICE=stm32f103c8 + +# You shouldn't have to edit anything below here. +VPATH += $(SHARED_DIR) +INCLUDES += $(patsubst %,-I%, . $(SHARED_DIR)) +OPENCM3_DIR=../libopencm3 + +include $(OPENCM3_DIR)/mk/genlink-config.mk +include ../rules.mk +include $(OPENCM3_DIR)/mk/genlink-rules.mk -- cgit v1.3