aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authoriamcheeseman <[email protected]>2026-05-24 17:00:30 -0400
committeriamcheeseman <[email protected]>2026-05-24 17:00:30 -0400
commit09d34f7b62f0bbf49b8c946b23c29cc51e7d67f9 (patch)
tree7e59d734447e923a6c4b0661c489d2aea65480d9 /Makefile
parent39a02a3bf2fe923d595e4f8df693a524c47291d5 (diff)
move `teensy/platform` -> `platform/`
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index c90d370..eadb7b0 100644
--- a/Makefile
+++ b/Makefile
@@ -3,8 +3,8 @@ include config.mk
Q?=@
SRC=$(wildcard **/*.c)
-SRC+=$(wildcard teensy/platform/${PLATFORM}/**/*.c)
-SRC+=$(wildcard teensy/platform/${PLATFORM}/*.c)
+SRC+=$(wildcard platform/${PLATFORM}/**/*.c)
+SRC+=$(wildcard platform/${PLATFORM}/*.c)
OBJ=$(SRC:%.c=.obj/%.o)
.PHONY: all echo run clean full-clean