From c7752db2ac60e30e33b2c40799c080fc05efcd52 Mon Sep 17 00:00:00 2001 From: heck Date: Tue, 10 Sep 2024 00:15:12 +0200 Subject: [PATCH] remove leftovers --- .gitmodules | 6 ------ Blink/Makefile | 22 ---------------------- 2 files changed, 28 deletions(-) delete mode 100644 .gitmodules delete mode 100644 Blink/Makefile diff --git a/.gitmodules b/.gitmodules deleted file mode 100644 index ace0e16..0000000 --- a/.gitmodules +++ /dev/null @@ -1,6 +0,0 @@ -[submodule "libs/libDaisy"] - path = libs/libDaisy - url = https://gitea.heck.live/heck/heck_libDaisy -[submodule "libs/DaisySP"] - path = libs/DaisySP - url = https://gitea.heck.live/heck/heck_DaisySP diff --git a/Blink/Makefile b/Blink/Makefile deleted file mode 100644 index abe30bf..0000000 --- a/Blink/Makefile +++ /dev/null @@ -1,22 +0,0 @@ -# Project Name -TARGET = Blink - -# Configure for debugging -# common configurations: -# use DEBUG = 1 and OPT = -Og for debugging -# or DEBUG = 0 and OPT = -O3 for performance -DEBUG = 0 -OPT = -O3 - -# Sources -CPP_SOURCES = main.cpp - -LIBDAISY_DIR = ../libs/libDaisy -DAISYSP_DIR = ../libs/DaisySP - -# (optional) Includes FatFS source files within project. -#USE_FATFS = 1 - -# Core location, and generic Makefile. -SYSTEM_FILES_DIR = $(LIBDAISY_DIR)/core -include $(SYSTEM_FILES_DIR)/Makefile