Preliminary sound

This commit is contained in:
Edith Boles
2026-03-05 22:36:58 -08:00
parent 3b8e70c524
commit 4cfa24e4a6
12 changed files with 96409 additions and 13 deletions

View File

@@ -2,7 +2,7 @@
API := x11
CFLAGS := -MD -Wall -g -lm -pthread -I ./inc/
CFLAGS := -MD -Wall -g -lm -lpthread -ldl -I ./inc/
ifeq ($(API), arm)
CC := arm-cortexa9_neon-linux-gnueabihf-gcc
@@ -12,7 +12,7 @@ else
CFLAGS := $(CFLAGS) -lX11
endif
TARGETS := pm3-lvgl cvend
TARGETS := pm3-lvgl cvend audio_test
EXES := $(patsubst %,bin/%,$(TARGETS))
SRCS := $(shell find src inc -type f -iname '*.c')
OBJS := $(patsubst src/%.c,obj/%.o,$(patsubst inc/%.c,obj/lib/%.o,$(SRCS)))