A modern Music Player Daemon based on Rockbox open source high quality audio player
libadwaita audio rust zig deno mpris rockbox mpd

Apparently make doesn't like inline comments

Change-Id: If604af9713cf95dafbeb1a601219ca1b3a8964fa

+2 -1
+2 -1
firmware/asm/asm.make
··· 10 10 # Collect dummy C files in firmware/asm 11 11 ASM_DUMMY_SRC := $(notdir $(call preprocess, $(FIRMDIR)/asm/SOURCES)) 12 12 13 - ASM_ARCH := $(subst arch_,,$(ARCH)) # strip arch_ prefix from $(ARCH) 14 13 # Get the corresponding real source files under firmware/asm/$ARCH (C or ASM) 14 + # strip arch_ prefix from $(ARCH) 15 + ASM_ARCH := $(subst arch_,,$(ARCH)) 15 16 ASM_C_SRC := $(addprefix $(FIRMDIR)/asm/$(ASM_ARCH)/,$(ASM_DUMMY_SRC)) 16 17 ASM_S_SRC := $(ASM_C_SRC:.c=.S) 17 18